まぁまぁ使いやすいかなぁ。
Linu/UNIX用のTCP/IPベースのバックドアツール「Trixd00r」。
trixd00r is an advanced and invisible userland backdoor based on TCP/IP for UNIX systems. It consists of a server and a client. The server sits and waits for magic
packets using a sniffer. If a magic packet arrives, it will bind a shell over TCP or UDP
on the given port or connecting back to the client again over TCP or UDP. The client
is used to send magic packets to trigger the server and get a shell.
http://www.nullsecurity.net/backdoor.html
使ってみた。
今回はTCPのSYNパケットでUDPバインドモードになり接続を待つバックドアを設置し、バックドアから制御奪取させた。
検証した環境は以下のとおり。
サーバ側:CentOS 5.4, Trixd00rd 0.0.1
クライアント側:Backtrack 5, Trixd00r 0.0.1
オプションは以下のとおり。
[root@loc trixd00r-0.0.1]# ./trixd00rd -H
+------------------------------------------+
| trixd00rd - http://www.nullsecurity.net/ |
+------------------------------------------+
usage:
trixd00rd -i [options]
options:
-i - interface to use
-t - magic packet type - ? to list all (default TCP SYN)
-p
- magic payload string to trigger shell (default opensesame)
-s - shell mode - ? to list all (default TCP bind port)
-b
- port for shell (default 31337)
-a - allow only this host to talk to trixd00rd (default ANY)
-c - connect back host
-z
- magic payload string to quit trixd00rd (default byebye)
-d - daemonize trixd00rd and put in background
-n - send no welcome and bye banner
-x - use ssl (only available in priv8 version!)
-v - verbose mode (default quiet)
-V - show trixd00rd version
-H - show help and usage
[root@loc trixd00r-0.0.1]#
[root@loc trixd00r-0.0.1]# ./trixd00rd -i eth0 -t ?
+------------------------------------------+
| trixd00rd - http://www.nullsecurity.net/ |
+------------------------------------------+
[+] available protocol and packet types
--- 0 [TCP SYN packet]
--- 1 [TCP ACK packet]
--- 2 [TCP RST packet]
--- 3 [TCP PSH packet]
--- 4 [TCP URG packet]
--- 5 [TCP FIN packet]
--- 6 [UDP datagram]
[root@loc trixd00r-0.0.1]#
[root@loc trixd00r-0.0.1]# ./trixd00rd -i eth0 -t 0 -s ?
+------------------------------------------+
| trixd00rd - http://www.nullsecurity.net/ |
+------------------------------------------+
[+] available shell modes
--- 0 [TCP bind port]
--- 1 [TCP connect back]
--- 2 [UDP bind port]
--- 3 [UDP connect back]
[root@loc trixd00r-0.0.1]#
以上。