Zeus Trojan Source Code

      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 »

ARP Poisoning source code

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 »

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 »

C – Encode Databuffer To Base64

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 »

C – Sending HTTP POST request

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 »

older posts »