-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrequirements.py
59 lines (46 loc) · 2.51 KB
/
requirements.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
import os
import sys
import time
string_port = """
***** ** *
****** **** * **
** * * *** ** **
* * * *** ** **
* * ** ** **** ******** ** ****
** ** ** ** *** * ******** ** *** *** **** * **** *
** ** ** ** **** ** ** * *** * *** * *** * ** ****
**** ** * ** ** ** *** *** * *** * **** ****
* *** ** * ** ** ** ** ** ** *** ** ** ***
** ******* ** ** ** ** ** ******** ** ** ***
** ****** ** ** ** ** ** ******* ** ** ***
** ** ** ** ** ** ** ** ** ** **** **
** ** ********* ** ** ** **** * ** ** * **** * n n
** ** **** *** ** ** ** ******* ***** ** **** u u
** ** ** *** ** ** ***** *** ** m m
*** * * ***** *** * b b
*** * ******** ** * e e
****** * **** * r r
*** * 2 2
~Created by: Kill0geR~
WELCOME TO PYTHEAS22
"""
# Thanks for looking at Pytheas22
def install():
print("\n\bSTARTING INSTALLATION\n\n")
time.sleep(1)
print("pip install Pytheas22")
os.system("pip install Pytheas22")
print("sudo apt install netdiscover")
os.system("sudo apt install netdiscover")
print("sudo apt install dnsutils")
os.system("sudo apt install dnsutils")
print("sudo apt install dsniff")
os.system("sudo apt install dsniff")
print("\n\nFinished\n\n")
if __name__ == "__main__":
if sys.platform == "linux":
if os.getuid() != 0:
print(string_port)
print("\nThis program must be run in root!!!!\n".upper())
quit()
install()