Skip to main content

Posts

Showing posts with the label libemu
sctest, tool in libemu I recently just tested out sctest, a tool to process shellcode provided in libemu . The usage is as follows:   sctest -gS -s 10000 -v -G test.dot  Basically there are several steps prior to that (which I need a friend to help me out!). Say, I have a file called hexdump.txt; Try with 10, 000 steps: $ sctest -Ss 10000 -g < hexdump.txt verbose = 0 success  offset = 0x00000005   stepcount 10000   Try with 100, 000 steps we got this:   $ sctest -Ss 100000 -gv < hexdump.txt   verbose = 1 success  offset = 0x00000005   stepcount 100000 HMODULE LoadLibraryA ( LPCTSTR lpFileName = 0x0012fe80 => = "ws2_32"; ) = 0x71a10000; int WSAStartup ( WORD wVersionRequested = 2; LPWSADATA lpWSAData = 1244276; ) = 0; SOCKET WSASocket ( int af = 2; int type = 1; int protocol = 0; LPWSAPROTOCOL_INFO lpProto...