posted in Bot sources, C, RAT sources on Feb 22nd, 2013
Bot name Zeus Trojan Author – Written in C++ Description Zeus is a Trojan horse that steals banking information by Man-in-the-browser keystroke logging and Form Grabbing. It is spread mainly through drive-by downloads and phishing schemes. The various Zeus’ botnets are estimated to include millions of compromised [...]
read full post »
posted in C, Tools & sources on Feb 16th, 2013
I added new source codes to Github. Basic sniffer ARP Ping ARP Poison I packed everything into a Visual Studio (2010) Solutions. Download, open, compile and test it. Any feedback is welcome. More code will follow soon. Missing parts are the packet forwarder and a combination of poisoning and forwarding.
read full post »
posted in C, Tools & sources on Jan 6th, 2013
Tool name : RunAsAdmin Description : RunAsAdmin is a tool to run a particular portion of the code under the elevated administrator privileges. If the user is an Administrator and has elevated privileges it will directly jump to the block where the elevated admin privileges are required. If the user is an administrator but [...]
read full post »
posted in C on Dec 30th, 2012
1 2 3 4 5 6 7 8 9 10 11 12 13 14 BOOL ToBase64(BYTE *pInput, int pInputLen, BYTE **pOutput, DWORD *pOutputLen) { BOOL lRetVal = FALSE; DWORD lBufSize = 0; if (CryptBinaryToStringA(pInput, pInputLen, CRYPT_STRING_BASE64, NULL, &lBufSize) && lBufSize > 0) if ((*pOutput = (BYTE *) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, lBufSize+1)) != NULL) if (CryptBinaryToStringA(pInput, [...]
read full post »
posted in C on Dec 26th, 2012
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [...]
read full post »