-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstallintconsole.py
106 lines (89 loc) · 2.94 KB
/
installintconsole.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/usr/bin/env/python3
import os
import sys
import time
def p():
input("please enter to continue")
def loading(text):
for i in range(10):
sys.stdout.write("\r" + "[+] " + text + "." * i)
time.sleep(0.1)
sys.stdout.flush()
print("\033[92m" + "\r" + "[+] " + text + "....................OK!\033[0m")
def prompt():
input("Press ENTER to continue. ")
def start_exploit():
loading("Accessing Backdoor.........")
loading("Crafting İntconsole...........")
loading("Sending İntconsole............")
user_input = input("Do you using termux?[Y/n]")
if user_input == "y" or "Y":
start_exploit()
loading("İnstalling İntconsole...........")
os.system("apt-get install python3")
os.system("apt-get install python3-pip")
os.system("pip3 install --upgrade")
os.system("pip3 install pyfiglet")
os.system("pip3 install colorama")
os.system("pip3 install Fore")
os.system("pip3 install init")
os.system("pip3 install threading")
os.system("pip3 install requests")
os.system("pip3 install time")
os.system("pip3 install sys")
os.system("pip3 install os")
os.system("pip3 install base64")
os.system("pip3 install time")
os.system("pip3 install argparse")
os.system("pkg install bcrypt")
os.system("pkg install python-bcrypt")
os.system("pkg install python-cryptography")
os.system("pip install paramiko")
os.system("pkg install nmap")
loading("İntconsole Downloading..........")
print("""
installed intconsole
using = intconsole
else : please command using=='run intconsole'
""")
k = input("Do you command is working[Y/n]")
if k == "y" or k == "Y":
print("please continue ")
p()
if k == "n" or "N":
print("please continue")
p()
if user_input == "n" or input == "N":
start_exploit()
loading("İnstalling İntconsole...........")
os.system("sudo apt-get install python3")
os.system("sudo apt-get install python3-pip")
os.system("sudo pip3 install --upgrade")
os.system("sudo apt install python3-pyfiglet")
os.system("sudo apt install python3-colorama")
os.system("sudo apt install python3-Fore")
os.system("sudo apt install python3-init")
os.system("sudo install python3-threading")
os.system("sudo apt install requests")
os.system("sudo apt install python3-time")
os.system("sudo apt install python3-sys")
os.system("sudo apt install python3-os")
os.system("sudo apt install python3-base64")
os.system("sudo apt install python3-time")
os.system("sudo apt install python3-argparse")
loading("İntconsole Downloading..........")
print("""
installed intconsole
using = intconsole
else : please command using=='run intconsole'
""")
k = input("Do you command is working[Y/n]")
if k == "n" or k == "N":
os.system("cd ~")
os.system("nano .bashrc")
os.system("source ~/.bashrc")
os.system("echo \"alias intconsole='python3 /usr/bin/intframework/intconsoleV4.py'\" >> ~/.bashrc")
p()
elif k == "y" or k == "Y":
print("type intconsole to start please")
p()