Update ddos.py

This commit is contained in:
go-outside-helper 2024-03-14 17:26:36 +01:00 committed by GitHub
parent 5a05f428df
commit e4c470eab0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
__author__ = "bt3" __author__ = "Mia Stein"
import threading import threading
import socket import socket
@ -63,4 +63,4 @@ if __name__ == '__main__':
op = raw_input("Select the flood attack type: 1) syn, 2) tcp, 3)udp, 4) icmp ") op = raw_input("Select the flood attack type: 1) syn, 2) tcp, 3)udp, 4) icmp ")
count = raw_input("Select the count: ") count = raw_input("Select the count: ")
ip = getIP(domainName) ip = getIP(domainName)
option(int(count), op, ip, port) option(int(count), op, ip, port)