-
Notifications
You must be signed in to change notification settings - Fork 14
/
reportbot_by_natrix.py
46 lines (32 loc) · 1.08 KB
/
reportbot_by_natrix.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
import requests
from requests.sessions import session
import json
import time
import colorama
from colorama import Fore, Back, Style
colorama.init()
session = requests.session()
print(Fore.CYAN + """ __________ __ __________ __
\______ \ ____ ______ ____ _______ _/ |_\______ \ ____ _/ |_
| _/_/ __ \ \____ \ / _ \\_ __ \\ __\| | _/ / _ \\ __\
| | \\ ___/ | |_> >( <_> )| | \/ | | | | \( <_> )| |
|____|_ / \___ >| __/ \____/ |__| |__| |______ / \____/ |__|
\/ \/ |__| \/
""")
print("")
print("")
print("Github: natrixdev / natrix_dev")
print("")
print("")
x = input('Report url (get it in the console) ')
print("")
print("")
print('Bot started ...')
print('')
print('')
while True:
req = session.post(x)
print(req.text)
print('Reported [BY NATRIXDEV]')
time.sleep(10)
input()