├── .gitignore ├── LICENSE ├── Layer-4 ├── ACK │ ├── ack │ └── instructions.txt ├── CHARGEN │ ├── chargen.c │ └── instructions.txt ├── DNS-AMP │ ├── dns-amp.c │ └── instructions.txt ├── DrDoS │ ├── drdos.pl │ └── instructions.txt ├── Fragmentation-Script │ ├── frag │ └── instructions.txt ├── Haven │ ├── haven │ └── instructions.txt ├── NTP-Pl │ ├── instructions.txt │ └── ntp-pl.pl ├── NTP-Py │ ├── instructions.txt │ └── ntp-py.py ├── SNMP-C │ ├── instructions.txt │ └── snmp-c.c ├── SNMP-PY │ ├── instructions.txt │ └── snmp-py.py ├── Spoofed-UDP │ ├── instructions.txt │ └── sudp.c └── TCP-Advanced-ESSYN │ ├── instructions.txt │ └── tcp.c ├── Layer-7 ├── 007-GoldenEye │ ├── goldeneye.py │ └── instructions.txt ├── ARME-Apache │ ├── arme.c │ └── instructions.txt ├── GHP-Get_Head_Post │ ├── ghp.c │ └── instructions.txt ├── Hulk │ ├── hulk.py │ └── instructions.txt ├── Pyloris │ ├── httploris.py │ ├── instructions.txt │ ├── libloris.py │ ├── pyloris.py │ ├── scriptloris_deflate.py │ ├── scriptloris_ftp.py │ ├── scriptloris_http.py │ ├── scriptloris_httpbasic.py │ ├── scriptloris_imaps.py │ ├── scriptloris_sfspoof.py │ ├── socks.py │ └── tor_switcher.py ├── R.U.D.Y │ ├── instructions.txt │ └── rudy.c ├── Rand │ ├── instructions.txt │ └── rand.pl ├── SlowLoris │ ├── instructions.txt │ └── slowloris.c └── XML-RPC-Pingback-C │ ├── instructions.txt │ └── xml └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Layer-4/ACK/ack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/ACK/ack -------------------------------------------------------------------------------- /Layer-4/ACK/instructions.txt: -------------------------------------------------------------------------------- 1 | ./ack 127.0.0.1 3600 2 | -------------------------------------------------------------------------------- /Layer-4/CHARGEN/chargen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/CHARGEN/chargen.c -------------------------------------------------------------------------------- /Layer-4/CHARGEN/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/CHARGEN/instructions.txt -------------------------------------------------------------------------------- /Layer-4/DNS-AMP/dns-amp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/DNS-AMP/dns-amp.c -------------------------------------------------------------------------------- /Layer-4/DNS-AMP/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/DNS-AMP/instructions.txt -------------------------------------------------------------------------------- /Layer-4/DrDoS/drdos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/DrDoS/drdos.pl -------------------------------------------------------------------------------- /Layer-4/DrDoS/instructions.txt: -------------------------------------------------------------------------------- 1 | perl drdos.pl 127.0.0.1 80 servers.txt 5 tcp 10 3600 2 | -------------------------------------------------------------------------------- /Layer-4/Fragmentation-Script/frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/Fragmentation-Script/frag -------------------------------------------------------------------------------- /Layer-4/Fragmentation-Script/instructions.txt: -------------------------------------------------------------------------------- 1 | ./fragmentation 192.168.0.1 2 | -------------------------------------------------------------------------------- /Layer-4/Haven/haven: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/Haven/haven -------------------------------------------------------------------------------- /Layer-4/Haven/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/Haven/instructions.txt -------------------------------------------------------------------------------- /Layer-4/NTP-Pl/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/NTP-Pl/instructions.txt -------------------------------------------------------------------------------- /Layer-4/NTP-Pl/ntp-pl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/NTP-Pl/ntp-pl.pl -------------------------------------------------------------------------------- /Layer-4/NTP-Py/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/NTP-Py/instructions.txt -------------------------------------------------------------------------------- /Layer-4/NTP-Py/ntp-py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/NTP-Py/ntp-py.py -------------------------------------------------------------------------------- /Layer-4/SNMP-C/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/SNMP-C/instructions.txt -------------------------------------------------------------------------------- /Layer-4/SNMP-C/snmp-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/SNMP-C/snmp-c.c -------------------------------------------------------------------------------- /Layer-4/SNMP-PY/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/SNMP-PY/instructions.txt -------------------------------------------------------------------------------- /Layer-4/SNMP-PY/snmp-py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/SNMP-PY/snmp-py.py -------------------------------------------------------------------------------- /Layer-4/Spoofed-UDP/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/Spoofed-UDP/instructions.txt -------------------------------------------------------------------------------- /Layer-4/Spoofed-UDP/sudp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/Spoofed-UDP/sudp.c -------------------------------------------------------------------------------- /Layer-4/TCP-Advanced-ESSYN/instructions.txt: -------------------------------------------------------------------------------- 1 | ./tcp 127.0.0.1 80 2 -1 3600 2 | -------------------------------------------------------------------------------- /Layer-4/TCP-Advanced-ESSYN/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-4/TCP-Advanced-ESSYN/tcp.c -------------------------------------------------------------------------------- /Layer-7/007-GoldenEye/goldeneye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/007-GoldenEye/goldeneye.py -------------------------------------------------------------------------------- /Layer-7/007-GoldenEye/instructions.txt: -------------------------------------------------------------------------------- 1 | python goldeneye.py http://example.com 2 | -------------------------------------------------------------------------------- /Layer-7/ARME-Apache/arme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/ARME-Apache/arme.c -------------------------------------------------------------------------------- /Layer-7/ARME-Apache/instructions.txt: -------------------------------------------------------------------------------- 1 | ./arme http://example.com 5000 proxies.txt 3600 0 2 | -------------------------------------------------------------------------------- /Layer-7/GHP-Get_Head_Post/ghp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/GHP-Get_Head_Post/ghp.c -------------------------------------------------------------------------------- /Layer-7/GHP-Get_Head_Post/instructions.txt: -------------------------------------------------------------------------------- 1 | ./ghp http://example.com GET 5000 proxies.txt 3600 0 %random% 2 | -------------------------------------------------------------------------------- /Layer-7/Hulk/hulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Hulk/hulk.py -------------------------------------------------------------------------------- /Layer-7/Hulk/instructions.txt: -------------------------------------------------------------------------------- 1 | python hulk.py http://example.com 2 | -------------------------------------------------------------------------------- /Layer-7/Pyloris/httploris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/httploris.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/instructions.txt -------------------------------------------------------------------------------- /Layer-7/Pyloris/libloris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/libloris.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/pyloris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/pyloris.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_deflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/scriptloris_deflate.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/scriptloris_ftp.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/scriptloris_http.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_httpbasic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/scriptloris_httpbasic.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_imaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/scriptloris_imaps.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_sfspoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/scriptloris_sfspoof.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/socks.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/tor_switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Pyloris/tor_switcher.py -------------------------------------------------------------------------------- /Layer-7/R.U.D.Y/instructions.txt: -------------------------------------------------------------------------------- 1 | ./rudy http://example.com 1 5000 proxies.txt 3600 0 %random% 2 | -------------------------------------------------------------------------------- /Layer-7/R.U.D.Y/rudy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/R.U.D.Y/rudy.c -------------------------------------------------------------------------------- /Layer-7/Rand/instructions.txt: -------------------------------------------------------------------------------- 1 | perl rand.pl http://example.com 3600 2 | -------------------------------------------------------------------------------- /Layer-7/Rand/rand.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/Rand/rand.pl -------------------------------------------------------------------------------- /Layer-7/SlowLoris/instructions.txt: -------------------------------------------------------------------------------- 1 | ./slowloris http://example.com 5000 proxies.txt 3600 0 2 | -------------------------------------------------------------------------------- /Layer-7/SlowLoris/slowloris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/SlowLoris/slowloris.c -------------------------------------------------------------------------------- /Layer-7/XML-RPC-Pingback-C/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/XML-RPC-Pingback-C/instructions.txt -------------------------------------------------------------------------------- /Layer-7/XML-RPC-Pingback-C/xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/Layer-7/XML-RPC-Pingback-C/xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PraneethKarnena/DDoS-Scripts/HEAD/README.md --------------------------------------------------------------------------------