├── BOT KILLERS ├── BusyBOT killer │ ├── killer.c │ └── killer.h ├── CUSTOM (Works on any Mirai sources) │ ├── Instructions.txt │ └── botkiller ├── FBI bot Killer │ ├── killer.c │ └── killer.h └── Private bot Killer (leaked) │ ├── killer.c │ └── killer.h ├── EXPLOITS ├── 0.py ├── AVTECH │ ├── avtec-listmaker.py │ └── avtech.py ├── B-LINK │ ├── ip.txt │ ├── lb.py │ ├── readme.txt │ └── shodan_search.py ├── baicells.py └── mirai 50k.zip ├── Layer-4 ├── ACK │ └── instructions.txt ├── CHARGEN │ ├── chargen.c │ └── instructions.txt ├── DNS-AMP │ ├── dns-amp.c │ └── instructions.txt ├── Haven │ ├── haven │ └── instructions.txt ├── NTP-Pl │ ├── instructions.txt │ └── ntp-pl.pl ├── NTP-Py │ ├── instructions.txt │ └── ntp-py.py ├── OVH BYPASS │ ├── instructions.txt │ └── ovh ├── SNMP-C │ ├── instructions.txt │ └── snmp-c.c ├── SNMP-PY │ ├── instructions.txt │ └── snmp-py.py ├── SYN (OVH, Game Servers, Home, etc.) │ ├── lol.png │ ├── synp │ └── usage.txt └── TCP BYPASS (spoofed) │ ├── instructions.txt │ └── tcpbypass ├── Layer-7 ├── 007-GoldenEye │ ├── goldeneye.py │ └── instructions.txt ├── ARME-Apache │ ├── arme.c │ └── instructions.txt ├── BROWSER METHOD │ ├── browser.js │ ├── flooder.js │ └── usage.txt ├── CF bypass NEW │ ├── image-3(1).png │ ├── j-script.js │ └── usage.txt ├── GHP-Get_Head_Post │ ├── ghp.c │ └── instructions.txt ├── HTTP-MIX (CF, JS, DDG, etc) │ ├── httpm │ ├── image (3).png │ └── usage.txt ├── Hulk │ └── instructions.txt ├── JS-BYPASS │ ├── README.txt │ ├── bypasses │ │ ├── aes.js │ │ ├── bfcrypt.js │ │ ├── blazingfast.js │ │ ├── browser_engine.js │ │ ├── cloudflare.js │ │ ├── ddosguard.js │ │ ├── index.js │ │ ├── ovh.js │ │ ├── pipeguard.js │ │ ├── privacypass.js │ │ ├── stormwall.js │ │ └── sucuri.js │ ├── client.js │ ├── flood.js │ ├── method.js │ ├── package.json │ ├── privacypass.json │ ├── proxies.txt │ ├── random-words.js │ └── ua.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 ├── TLSv2 │ ├── tls2.js │ └── usage.txt └── XML-RPC-Pingback-C │ ├── instructions.txt │ └── xml ├── Other and GAME SERVERS ├── 50x.c ├── ARME.c ├── README.md ├── RUDY.c ├── SLOWLORIS.c ├── SSYN2.c ├── SUDP.c ├── SUDP2.c ├── TCP Shell.php ├── TCP.c ├── UDP Shell.php ├── UDP.c └── game │ ├── D-SAMP │ ├── VALVE │ ├── faq.txt │ └── valve │ ├── faq.txt │ ├── fivem-req │ └── samp faq.txt ├── Proxy parser (HTTP, HTTPS, SOCKS4, SOCKS5) ├── PARSER.txt └── update ├── README.md ├── SPOOFED METHODS ├── instructions.txt ├── ovhtcp ├── tcpbypass ├── udpbypass └── udprand ├── domain resolver ├── CloudUnflare │ ├── cloudunflare.bash │ ├── faq.txt │ └── subdomains.txt └── WAF-BYPASS │ ├── bypass-waf.php │ └── faq.txt ├── index.png └── spoofed hosts.txt /BOT KILLERS/BusyBOT killer/killer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/BOT KILLERS/BusyBOT killer/killer.c -------------------------------------------------------------------------------- /BOT KILLERS/BusyBOT killer/killer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/BOT KILLERS/BusyBOT killer/killer.h -------------------------------------------------------------------------------- /BOT KILLERS/CUSTOM (Works on any Mirai sources)/Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/BOT KILLERS/CUSTOM (Works on any Mirai sources)/Instructions.txt -------------------------------------------------------------------------------- /BOT KILLERS/CUSTOM (Works on any Mirai sources)/botkiller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/BOT KILLERS/CUSTOM (Works on any Mirai sources)/botkiller -------------------------------------------------------------------------------- /BOT KILLERS/FBI bot Killer/killer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/BOT KILLERS/FBI bot Killer/killer.c -------------------------------------------------------------------------------- /BOT KILLERS/FBI bot Killer/killer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/BOT KILLERS/FBI bot Killer/killer.h -------------------------------------------------------------------------------- /BOT KILLERS/Private bot Killer (leaked)/killer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/BOT KILLERS/Private bot Killer (leaked)/killer.c -------------------------------------------------------------------------------- /BOT KILLERS/Private bot Killer (leaked)/killer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/BOT KILLERS/Private bot Killer (leaked)/killer.h -------------------------------------------------------------------------------- /EXPLOITS/0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/0.py -------------------------------------------------------------------------------- /EXPLOITS/AVTECH/avtec-listmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/AVTECH/avtec-listmaker.py -------------------------------------------------------------------------------- /EXPLOITS/AVTECH/avtech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/AVTECH/avtech.py -------------------------------------------------------------------------------- /EXPLOITS/B-LINK/ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/B-LINK/ip.txt -------------------------------------------------------------------------------- /EXPLOITS/B-LINK/lb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/B-LINK/lb.py -------------------------------------------------------------------------------- /EXPLOITS/B-LINK/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/B-LINK/readme.txt -------------------------------------------------------------------------------- /EXPLOITS/B-LINK/shodan_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/B-LINK/shodan_search.py -------------------------------------------------------------------------------- /EXPLOITS/baicells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/baicells.py -------------------------------------------------------------------------------- /EXPLOITS/mirai 50k.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/EXPLOITS/mirai 50k.zip -------------------------------------------------------------------------------- /Layer-4/ACK/instructions.txt: -------------------------------------------------------------------------------- 1 | ./ack 127.0.0.1 3600 2 | -------------------------------------------------------------------------------- /Layer-4/CHARGEN/chargen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/CHARGEN/chargen.c -------------------------------------------------------------------------------- /Layer-4/CHARGEN/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/CHARGEN/instructions.txt -------------------------------------------------------------------------------- /Layer-4/DNS-AMP/dns-amp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/DNS-AMP/dns-amp.c -------------------------------------------------------------------------------- /Layer-4/DNS-AMP/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/DNS-AMP/instructions.txt -------------------------------------------------------------------------------- /Layer-4/Haven/haven: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/Haven/haven -------------------------------------------------------------------------------- /Layer-4/Haven/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/Haven/instructions.txt -------------------------------------------------------------------------------- /Layer-4/NTP-Pl/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/NTP-Pl/instructions.txt -------------------------------------------------------------------------------- /Layer-4/NTP-Pl/ntp-pl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/NTP-Pl/ntp-pl.pl -------------------------------------------------------------------------------- /Layer-4/NTP-Py/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/NTP-Py/instructions.txt -------------------------------------------------------------------------------- /Layer-4/NTP-Py/ntp-py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/NTP-Py/ntp-py.py -------------------------------------------------------------------------------- /Layer-4/OVH BYPASS/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/OVH BYPASS/instructions.txt -------------------------------------------------------------------------------- /Layer-4/OVH BYPASS/ovh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/OVH BYPASS/ovh -------------------------------------------------------------------------------- /Layer-4/SNMP-C/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/SNMP-C/instructions.txt -------------------------------------------------------------------------------- /Layer-4/SNMP-C/snmp-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/SNMP-C/snmp-c.c -------------------------------------------------------------------------------- /Layer-4/SNMP-PY/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/SNMP-PY/instructions.txt -------------------------------------------------------------------------------- /Layer-4/SNMP-PY/snmp-py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/SNMP-PY/snmp-py.py -------------------------------------------------------------------------------- /Layer-4/SYN (OVH, Game Servers, Home, etc.)/lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/SYN (OVH, Game Servers, Home, etc.)/lol.png -------------------------------------------------------------------------------- /Layer-4/SYN (OVH, Game Servers, Home, etc.)/synp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/SYN (OVH, Game Servers, Home, etc.)/synp -------------------------------------------------------------------------------- /Layer-4/SYN (OVH, Game Servers, Home, etc.)/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/SYN (OVH, Game Servers, Home, etc.)/usage.txt -------------------------------------------------------------------------------- /Layer-4/TCP BYPASS (spoofed)/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/TCP BYPASS (spoofed)/instructions.txt -------------------------------------------------------------------------------- /Layer-4/TCP BYPASS (spoofed)/tcpbypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-4/TCP BYPASS (spoofed)/tcpbypass -------------------------------------------------------------------------------- /Layer-7/007-GoldenEye/goldeneye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/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/sp00fing/ddos/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/BROWSER METHOD/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/BROWSER METHOD/browser.js -------------------------------------------------------------------------------- /Layer-7/BROWSER METHOD/flooder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/BROWSER METHOD/flooder.js -------------------------------------------------------------------------------- /Layer-7/BROWSER METHOD/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/BROWSER METHOD/usage.txt -------------------------------------------------------------------------------- /Layer-7/CF bypass NEW/image-3(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/CF bypass NEW/image-3(1).png -------------------------------------------------------------------------------- /Layer-7/CF bypass NEW/j-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/CF bypass NEW/j-script.js -------------------------------------------------------------------------------- /Layer-7/CF bypass NEW/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/CF bypass NEW/usage.txt -------------------------------------------------------------------------------- /Layer-7/GHP-Get_Head_Post/ghp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/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/HTTP-MIX (CF, JS, DDG, etc)/httpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/HTTP-MIX (CF, JS, DDG, etc)/httpm -------------------------------------------------------------------------------- /Layer-7/HTTP-MIX (CF, JS, DDG, etc)/image (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/HTTP-MIX (CF, JS, DDG, etc)/image (3).png -------------------------------------------------------------------------------- /Layer-7/HTTP-MIX (CF, JS, DDG, etc)/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/HTTP-MIX (CF, JS, DDG, etc)/usage.txt -------------------------------------------------------------------------------- /Layer-7/Hulk/instructions.txt: -------------------------------------------------------------------------------- 1 | python hulk.py http://example.com 2 | -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/README.txt -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/aes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/aes.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/bfcrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/bfcrypt.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/blazingfast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/blazingfast.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/browser_engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/browser_engine.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/cloudflare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/cloudflare.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/ddosguard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/ddosguard.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/index.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/ovh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/ovh.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/pipeguard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/pipeguard.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/privacypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/privacypass.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/stormwall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/stormwall.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/bypasses/sucuri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/bypasses/sucuri.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/client.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/flood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/flood.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/method.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/package.json -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/privacypass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/privacypass.json -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/proxies.txt -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/random-words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/random-words.js -------------------------------------------------------------------------------- /Layer-7/JS-BYPASS/ua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/JS-BYPASS/ua.txt -------------------------------------------------------------------------------- /Layer-7/Pyloris/httploris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/httploris.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/instructions.txt -------------------------------------------------------------------------------- /Layer-7/Pyloris/libloris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/libloris.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/pyloris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/pyloris.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_deflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/scriptloris_deflate.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/scriptloris_ftp.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/scriptloris_http.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_httpbasic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/scriptloris_httpbasic.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_imaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/scriptloris_imaps.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/scriptloris_sfspoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/scriptloris_sfspoof.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/Pyloris/socks.py -------------------------------------------------------------------------------- /Layer-7/Pyloris/tor_switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/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/sp00fing/ddos/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/sp00fing/ddos/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/sp00fing/ddos/HEAD/Layer-7/SlowLoris/slowloris.c -------------------------------------------------------------------------------- /Layer-7/TLSv2/tls2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/TLSv2/tls2.js -------------------------------------------------------------------------------- /Layer-7/TLSv2/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/TLSv2/usage.txt -------------------------------------------------------------------------------- /Layer-7/XML-RPC-Pingback-C/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/XML-RPC-Pingback-C/instructions.txt -------------------------------------------------------------------------------- /Layer-7/XML-RPC-Pingback-C/xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Layer-7/XML-RPC-Pingback-C/xml -------------------------------------------------------------------------------- /Other and GAME SERVERS/50x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/50x.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/ARME.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/ARME.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/README.md -------------------------------------------------------------------------------- /Other and GAME SERVERS/RUDY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/RUDY.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/SLOWLORIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/SLOWLORIS.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/SSYN2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/SSYN2.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/SUDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/SUDP.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/SUDP2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/SUDP2.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/TCP Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/TCP Shell.php -------------------------------------------------------------------------------- /Other and GAME SERVERS/TCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/TCP.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/UDP Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/UDP Shell.php -------------------------------------------------------------------------------- /Other and GAME SERVERS/UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/UDP.c -------------------------------------------------------------------------------- /Other and GAME SERVERS/game/D-SAMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/game/D-SAMP -------------------------------------------------------------------------------- /Other and GAME SERVERS/game/VALVE/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/game/VALVE/faq.txt -------------------------------------------------------------------------------- /Other and GAME SERVERS/game/VALVE/valve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/game/VALVE/valve -------------------------------------------------------------------------------- /Other and GAME SERVERS/game/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/game/faq.txt -------------------------------------------------------------------------------- /Other and GAME SERVERS/game/fivem-req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/game/fivem-req -------------------------------------------------------------------------------- /Other and GAME SERVERS/game/samp faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Other and GAME SERVERS/game/samp faq.txt -------------------------------------------------------------------------------- /Proxy parser (HTTP, HTTPS, SOCKS4, SOCKS5)/PARSER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/Proxy parser (HTTP, HTTPS, SOCKS4, SOCKS5)/PARSER.txt -------------------------------------------------------------------------------- /Proxy parser (HTTP, HTTPS, SOCKS4, SOCKS5)/update: -------------------------------------------------------------------------------- 1 | UPDATE! 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/README.md -------------------------------------------------------------------------------- /SPOOFED METHODS/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/SPOOFED METHODS/instructions.txt -------------------------------------------------------------------------------- /SPOOFED METHODS/ovhtcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/SPOOFED METHODS/ovhtcp -------------------------------------------------------------------------------- /SPOOFED METHODS/tcpbypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/SPOOFED METHODS/tcpbypass -------------------------------------------------------------------------------- /SPOOFED METHODS/udpbypass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/SPOOFED METHODS/udpbypass -------------------------------------------------------------------------------- /SPOOFED METHODS/udprand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/SPOOFED METHODS/udprand -------------------------------------------------------------------------------- /domain resolver/CloudUnflare/cloudunflare.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/domain resolver/CloudUnflare/cloudunflare.bash -------------------------------------------------------------------------------- /domain resolver/CloudUnflare/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/domain resolver/CloudUnflare/faq.txt -------------------------------------------------------------------------------- /domain resolver/CloudUnflare/subdomains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/domain resolver/CloudUnflare/subdomains.txt -------------------------------------------------------------------------------- /domain resolver/WAF-BYPASS/bypass-waf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/domain resolver/WAF-BYPASS/bypass-waf.php -------------------------------------------------------------------------------- /domain resolver/WAF-BYPASS/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/domain resolver/WAF-BYPASS/faq.txt -------------------------------------------------------------------------------- /index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/index.png -------------------------------------------------------------------------------- /spoofed hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sp00fing/ddos/HEAD/spoofed hosts.txt --------------------------------------------------------------------------------