Download files to the victim machine

Simple Local Web Servers

Command Description
python -m SimpleHTTPServer 80 Run a basic http server, great for serving up shells etc
python3 -m http.server Run a basic Python3 http server, great for serving up shells etc
ruby -rwebrick -e "WEBrick::HTTPServer.new (:Port => 80, :DocumentRoot => Dir.pwd).start" php -S 0.0.0.0:80
php -S 0.0.0.0:80 Run a basic PHP http server ****

Updog

Link: https://github.com/sc0tfree/updog

Updog is a replacement for Python's SimpleHTTPServer. It allows uploading and downloading via HTTP/S, can set ad hoc SSL certificates and use http basic auth.

Install using pip:

pip3 install updog

Usage

updog [-d DIRECTORY] [-p PORT] [--password PASSWORD] [--ssl]

SMTP Server

Link: https://github.com/hackerscrolls/simplesmtp

Usage: go run simplesmtp.go -save -i 0.0.0.0 -p 25

Windows

curl

Since Win10 1809 there is a build in curl

C:\\Users\\IEUser>curl.exe 
curl: try 'curl --help' for more information 
C:\\Users\\IEUser>curl.exe google.com/robots.txt 
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> 
<html><head> 
<title>301 Moved Permanently</title> 
</head><body> 
<h1>Moved Permanently</h1> 
<p>The document has moved <a href="<http://www.google.com/robots.txt>">here</a>.</p> 
<hr> 
</body></html> 
C:\\Users\\IEUser>