-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathutils.py
More file actions
executable file
·972 lines (854 loc) · 43.3 KB
/
utils.py
File metadata and controls
executable file
·972 lines (854 loc) · 43.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
#utils.py
import csv
import io
import importlib
import json
import logging
import os
import subprocess
import uuid
import zipfile
from datetime import datetime
from typing import Any, Dict, List, Optional
from logger import Logger
from urllib.parse import unquote
from actions.nmap_vuln_scanner import NmapVulnScanner
try:
cgi = importlib.import_module('cgi') # type: ignore[import]
except ModuleNotFoundError:
# cgi module was removed in Python 3.13, use alternative for file uploads
cgi = None
logger = Logger(name="utils.py", level=logging.DEBUG)
class WebUtils:
def __init__(self, shared_data, logger):
self.shared_data = shared_data
self.logger = logger
self.actions: List[Any] = [] # List that contains all actions
self.standalone_actions: List[Any] = [] # List that contains all standalone actions
self.actions_dir = getattr(shared_data, 'actions_dir', '')
self.actions_file = getattr(shared_data, 'actions_file', '')
self._actions_loaded = False
def load_actions(self):
"""Load all actions from the actions file"""
if self._actions_loaded:
return
self.actions.clear()
self.standalone_actions.clear()
self.actions_dir = self.shared_data.actions_dir
with open(self.shared_data.actions_file, 'r') as file:
actions_config = json.load(file)
for action in actions_config:
module_name = action["b_module"]
if module_name == 'scanning':
self.load_scanner(module_name)
elif module_name == 'nmap_vuln_scanner':
self.load_nmap_vuln_scanner(module_name)
else:
self.load_action(module_name, action)
self._actions_loaded = True
def load_scanner(self, module_name):
"""Load the network scanner"""
module = importlib.import_module(f'actions.{module_name}')
b_class = getattr(module, 'b_class')
self.network_scanner = getattr(module, b_class)(self.shared_data)
def load_nmap_vuln_scanner(self, module_name):
"""Load the nmap vulnerability scanner"""
self.nmap_vuln_scanner = NmapVulnScanner(self.shared_data)
def load_action(self, module_name, action):
"""Load an action from the actions file"""
module = importlib.import_module(f'actions.{module_name}')
try:
b_class = action["b_class"]
action_instance = getattr(module, b_class)(self.shared_data)
action_instance.action_name = b_class
action_instance.port = action.get("b_port")
action_instance.b_parent_action = action.get("b_parent")
if action_instance.port == 0:
self.standalone_actions.append(action_instance)
else:
self.actions.append(action_instance)
except AttributeError as e:
self.logger.error(f"Module {module_name} is missing required attributes: {e}")
def serve_netkb_data_json(self, handler):
try:
netkb_file = self.shared_data.netkbfile
with open(netkb_file, 'r', encoding='utf-8') as file:
reader = csv.DictReader(file)
data = [row for row in reader if row.get('Alive') == '1']
fieldnames = reader.fieldnames or []
actions = fieldnames[5:] if len(fieldnames) > 5 else [] # Actions are columns after 'Ports'
response_data = {
'ips': [row['IPs'] for row in data],
'ports': {row['IPs']: row['Ports'].split(';') for row in data},
'actions': actions
}
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps(response_data).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def execute_manual_attack(self, handler):
try:
content_length = int(handler.headers['Content-Length'])
post_data = handler.rfile.read(content_length).decode('utf-8')
params = json.loads(post_data)
ip = params['ip']
port = params['port']
action_class = params['action']
self.logger.info(f"Received request to execute {action_class} on {ip}:{port}")
# Charger les actions si ce n'est pas déjà fait
self.load_actions()
action_instance = next((action for action in self.actions if action.action_name == action_class), None)
if action_instance is None:
raise Exception(f"Action class {action_class} not found")
# Charger les données actuelles
current_data = self.shared_data.read_data()
row = next((r for r in current_data if r["IPs"] == ip), None)
if row is None:
raise Exception(f"No data found for IP: {ip}")
action_key = action_instance.action_name
self.logger.info(f"Executing {action_key} on {ip}:{port}")
result = action_instance.execute(ip, port, row, action_key)
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
if result == 'success':
row[action_key] = f'success_{timestamp}'
self.logger.info(f"Action {action_key} executed successfully on {ip}:{port}")
else:
row[action_key] = f'failed_{timestamp}'
self.logger.error(f"Action {action_key} failed on {ip}:{port}")
self.shared_data.write_data(current_data)
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Manual attack executed"}).encode('utf-8'))
except Exception as e:
self.logger.error(f"Error executing manual attack: {e}")
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def serve_logs(self, handler):
try:
log_file_path = self.shared_data.webconsolelog
if not os.path.exists(log_file_path):
subprocess.Popen(f"sudo tail -f /home/ragnar/Ragnar/data/logs/* > {log_file_path}", shell=True)
with open(log_file_path, 'r') as log_file:
log_lines = log_file.readlines()
max_lines = 2000
if len(log_lines) > max_lines:
log_lines = log_lines[-max_lines:]
with open(log_file_path, 'w') as log_file:
log_file.writelines(log_lines)
log_data = ''.join(log_lines)
handler.send_response(200)
handler.send_header("Content-type", "text/plain")
handler.end_headers()
handler.wfile.write(log_data.encode('utf-8'))
except BrokenPipeError:
# Ignore broken pipe errors
pass
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def start_orchestrator(self, handler):
try:
ragnar_instance = self.shared_data.ragnar_instance
ragnar_instance.start_orchestrator()
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Orchestrator starting..."}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def stop_orchestrator(self, handler):
try:
ragnar_instance = self.shared_data.ragnar_instance
ragnar_instance.stop_orchestrator()
self.shared_data.orchestrator_should_exit = True
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Orchestrator stopping..."}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def backup(self, handler):
try:
timestamp = datetime.now().strftime('%Y%m%d_%H%M%S')
backup_filename = f"backup_{timestamp}.zip"
backup_path = os.path.join(self.shared_data.backupdir, backup_filename)
with zipfile.ZipFile(backup_path, 'w') as backup_zip:
for folder in [self.shared_data.configdir, self.shared_data.datadir, self.shared_data.actions_dir, self.shared_data.resourcesdir]:
for root, dirs, files in os.walk(folder):
for file in files:
file_path = os.path.join(root, file)
backup_zip.write(file_path, os.path.relpath(file_path, self.shared_data.currentdir))
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "url": f"/download_backup?filename={backup_filename}", "filename": backup_filename}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def restore(self, handler):
try:
if cgi is None:
# CGI module not available, send error response
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": "File upload not supported in this Python version"}).encode('utf-8'))
return
content_length = int(handler.headers['Content-Length'])
field_data = handler.rfile.read(content_length)
field_storage = cgi.FieldStorage(fp=io.BytesIO(field_data), headers=handler.headers, environ={'REQUEST_METHOD': 'POST'})
file_item = field_storage['file']
if file_item.filename:
backup_path = os.path.join(self.shared_data.upload_dir, file_item.filename)
with open(backup_path, 'wb') as output_file:
output_file.write(file_item.file.read())
with zipfile.ZipFile(backup_path, 'r') as backup_zip:
backup_zip.extractall(self.shared_data.currentdir)
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Restore completed successfully"}).encode('utf-8'))
else:
handler.send_response(400)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": "No selected file"}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def download_backup(self, handler):
query = unquote(handler.path.split('?filename=')[1])
backup_path = os.path.join(self.shared_data.backupdir, query)
if os.path.isfile(backup_path):
handler.send_response(200)
handler.send_header("Content-Disposition", f'attachment; filename="{os.path.basename(backup_path)}"')
handler.send_header("Content-type", "application/zip")
handler.end_headers()
with open(backup_path, 'rb') as file:
handler.wfile.write(file.read())
else:
handler.send_response(404)
handler.end_headers()
def serve_credentials_data(self, handler):
try:
directory = self.shared_data.crackedpwddir
html_content = self.generate_html_for_csv_files(directory)
handler.send_response(200)
handler.send_header("Content-type", "text/html")
handler.end_headers()
handler.wfile.write(html_content.encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def generate_html_for_csv_files(self, directory):
html = '<div class="credentials-container">\n'
for filename in os.listdir(directory):
if filename.endswith('.csv'):
filepath = os.path.join(directory, filename)
html += f'<h2>{filename}</h2>\n'
html += '<table class="styled-table">\n<thead>\n<tr>\n'
with open(filepath, 'r') as file:
reader = csv.reader(file)
headers = next(reader)
for header in headers:
html += f'<th>{header}</th>\n'
html += '</tr>\n</thead>\n<tbody>\n'
for row in reader:
html += '<tr>\n'
for cell in row:
html += f'<td>{cell}</td>\n'
html += '</tr>\n'
html += '</tbody>\n</table>\n'
html += '</div>\n'
return html
def serve_file(self, handler, filename):
try:
with open(os.path.join(self.shared_data.webdir, filename), 'r', encoding='utf-8') as file:
content = file.read()
content = content.replace('{{ web_delay }}', str(self.shared_data.web_delay * 1000))
handler.send_response(200)
handler.send_header("Content-type", "text/html")
handler.end_headers()
handler.wfile.write(content.encode('utf-8'))
except FileNotFoundError:
handler.send_response(404)
handler.end_headers()
def serve_current_config(self, handler):
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
config_payload = None
try:
with open(self.shared_data.shared_config_json, 'r') as f:
config_payload = json.load(f)
except FileNotFoundError:
self.logger.warning("Configuration file missing on disk; serving in-memory settings instead.")
except json.JSONDecodeError as exc:
self.logger.error(f"Configuration file is not valid JSON: {exc}")
except OSError as exc:
self.logger.error(f"Unable to read configuration file: {exc}")
if not config_payload:
# Fall back to the live config or, as a last resort, the defaults
config_payload = dict(self.shared_data.config or self.shared_data.default_config)
else:
config_payload = dict(config_payload)
config_payload = self.shared_data._normalize_config_keys(config_payload)
handler.wfile.write(json.dumps(config_payload).encode('utf-8'))
def restore_default_config(self, handler):
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
self.shared_data.config = self.shared_data.default_config.copy()
self.shared_data.save_config()
handler.wfile.write(json.dumps(self.shared_data.config).encode('utf-8'))
def serve_image(self, handler):
image_path = os.path.join(self.shared_data.webdir, 'screen.png')
try:
with open(image_path, 'rb') as file:
handler.send_response(200)
handler.send_header("Content-type", "image/png")
handler.send_header("Cache-Control", "max-age=0, must-revalidate")
handler.end_headers()
handler.wfile.write(file.read())
except FileNotFoundError:
handler.send_response(404)
handler.end_headers()
except BrokenPipeError:
# Ignore broken pipe errors
pass
except Exception as e:
self.logger.error(f"Unexpected error: {e}")
def serve_favicon(self, handler):
handler.send_response(200)
handler.send_header("Content-type", "image/x-icon")
handler.end_headers()
favicon_path = os.path.join(self.shared_data.webdir, '/images/favicon.ico')
self.logger.info(f"Serving favicon from {favicon_path}")
try:
with open(favicon_path, 'rb') as file:
handler.wfile.write(file.read())
except FileNotFoundError:
self.logger.error(f"Favicon not found at {favicon_path}")
handler.send_response(404)
handler.end_headers()
def serve_manifest(self, handler):
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
manifest_path = os.path.join(self.shared_data.webdir, 'manifest.json')
try:
with open(manifest_path, 'r') as file:
handler.wfile.write(file.read().encode('utf-8'))
except FileNotFoundError:
handler.send_response(404)
handler.end_headers()
def serve_apple_touch_icon(self, handler):
handler.send_response(200)
handler.send_header("Content-type", "image/png")
handler.end_headers()
icon_path = os.path.join(self.shared_data.webdir, 'icons/apple-touch-icon.png')
try:
with open(icon_path, 'rb') as file:
handler.wfile.write(file.read())
except FileNotFoundError:
handler.send_response(404)
handler.end_headers()
def scan_wifi(self, handler):
try:
result = subprocess.Popen(['sudo', 'iwlist', 'wlan0', 'scan'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
stdout, stderr = result.communicate()
if result.returncode != 0:
raise Exception(stderr)
networks = self.parse_scan_result(stdout)
self.logger.info(f"Found {len(networks)} networks")
current_ssid = subprocess.Popen(['iwgetid', '-r'], stdout=subprocess.PIPE, text=True)
ssid_out, ssid_err = current_ssid.communicate()
if current_ssid.returncode != 0:
raise Exception(ssid_err)
current_ssid = ssid_out.strip()
self.logger.info(f"Current SSID: {current_ssid}")
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"networks": networks, "current_ssid": current_ssid}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
self.logger.error(f"Error scanning Wi-Fi networks: {e}")
handler.wfile.write(json.dumps({"error": str(e)}).encode('utf-8'))
def parse_scan_result(self, scan_output):
networks = []
for line in scan_output.split('\n'):
if 'ESSID' in line:
ssid = line.split(':')[1].strip('"')
if ssid not in networks:
networks.append(ssid)
return networks
def connect_wifi(self, handler):
try:
content_length = int(handler.headers['Content-Length'])
post_data = handler.rfile.read(content_length).decode('utf-8')
params = json.loads(post_data)
ssid = params['ssid']
password = params['password']
self.update_nmconnection(ssid, password)
command = f'sudo nmcli connection up "preconfigured"'
connect_result = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
stdout, stderr = connect_result.communicate()
if connect_result.returncode != 0:
raise Exception(stderr)
self.shared_data.wifichanged = True
handler.send_response(200)
handler.send_header('Content-type', 'application/json')
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Connected to " + ssid}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header('Content-type', 'application/json')
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def disconnect_and_clear_wifi(self, handler):
try:
command_disconnect = 'sudo nmcli connection down "preconfigured"'
disconnect_result = subprocess.Popen(command_disconnect, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
stdout, stderr = disconnect_result.communicate()
if disconnect_result.returncode != 0:
raise Exception(stderr)
config_path = '/etc/NetworkManager/system-connections/preconfigured.nmconnection'
with open(config_path, 'w') as f:
f.write("")
subprocess.Popen(['sudo', 'chmod', '600', config_path]).communicate()
subprocess.Popen(['sudo', 'nmcli', 'connection', 'reload']).communicate()
self.shared_data.wifichanged = False
handler.send_response(200)
handler.send_header('Content-type', 'application/json')
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Disconnected from Wi-Fi and cleared preconfigured settings"}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header('Content-type', 'application/json')
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def clear_files(self, handler):
try:
command = """
sudo rm -rf config/*.json && sudo rm -rf data/*.csv && sudo rm -rf data/*.log && sudo rm -rf backup/backups/* && sudo rm -rf backup/uploads/* && sudo rm -rf data/output/data_stolen/* && sudo rm -rf data/output/crackedpwd/* && sudo rm -rf config/* && sudo rm -rf data/output/scan_results/* && sudo rm -rf __pycache__ && sudo rm -rf config/__pycache__ && sudo rm -rf data/__pycache__ && sudo rm -rf actions/__pycache__ && sudo rm -rf resources/__pycache__ && sudo rm -rf web/__pycache__ && sudo rm -rf *.log && sudo rm -rf resources/waveshare_epd/__pycache__ && sudo rm -rf data/logs/* && sudo rm -rf data/output/vulnerabilities/* && sudo rm -rf data/logs/*
"""
result = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
stdout, stderr = result.communicate()
if result.returncode == 0:
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Files cleared successfully"}).encode('utf-8'))
else:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": stderr}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def clear_files_light(self, handler):
try:
command = """
sudo rm -rf data/*.log && sudo rm -rf data/output/data_stolen/* && sudo rm -rf data/output/crackedpwd/* && sudo rm -rf data/output/scan_results/* && sudo rm -rf __pycache__ && sudo rm -rf config/__pycache__ && sudo rm -rf data/__pycache__ && sudo rm -rf actions/__pycache__ && sudo rm -rf resources/__pycache__ && sudo rm -rf web/__pycache__ && sudo rm -rf *.log && sudo rm -rf resources/waveshare_epd/__pycache__ && sudo rm -rf data/logs/* && sudo rm -rf data/output/vulnerabilities/* && sudo rm -rf data/logs/*
"""
result = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
stdout, stderr = result.communicate()
if result.returncode == 0:
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Files cleared successfully"}).encode('utf-8'))
else:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": stderr}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def initialize_csv(self, handler):
try:
self.shared_data.generate_actions_json()
self.shared_data.initialize_csv()
self.shared_data.create_livestatusfile()
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "CSV files initialized successfully"}).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def reboot_system(self, handler):
try:
command = "sudo reboot"
subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "System is rebooting"}).encode('utf-8'))
except subprocess.CalledProcessError as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def shutdown_system(self, handler):
try:
command = "sudo shutdown now"
subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "System is shutting down"}).encode('utf-8'))
except subprocess.CalledProcessError as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def restart_ragnar_service(self, handler):
try:
command = "sudo systemctl restart ragnar.service"
subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Ragnar service restarted successfully"}).encode('utf-8'))
except subprocess.CalledProcessError as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def serve_network_data(self, handler):
try:
latest_file = max(
[os.path.join(self.shared_data.scan_results_dir, f) for f in os.listdir(self.shared_data.scan_results_dir) if f.startswith('result_')],
key=os.path.getctime
)
table_html = self.generate_html_table(latest_file)
handler.send_response(200)
handler.send_header("Content-type", "text/html")
handler.end_headers()
handler.wfile.write(table_html.encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def generate_html_table(self, file_path):
table_html = '<table class="styled-table"><thead><tr>'
with open(file_path, 'r') as file:
reader = csv.reader(file)
headers = next(reader)
for header in headers:
table_html += f'<th>{header}</th>'
table_html += '</tr></thead><tbody>'
for row in reader:
table_html += '<tr>'
for cell in row:
cell_class = "green" if cell.strip() else "red"
table_html += f'<td class="{cell_class}">{cell}</td>'
table_html += '</tr>'
table_html += '</tbody></table>'
return table_html
def generate_html_table_netkb(self, file_path):
table_html = '<table class="styled-table"><thead><tr>'
try:
with open(file_path, 'r', encoding='utf-8') as file:
reader = csv.reader(file)
headers = next(reader)
for header in headers:
table_html += f'<th>{header}</th>'
table_html += '</tr></thead><tbody>'
for row in reader:
row_class = "blue-row" if '0' in row[3] else ""
table_html += f'<tr class="{row_class}">'
for cell in row:
cell_class = ""
if "success" in cell:
cell_class = "green bold"
elif "failed" in cell:
cell_class = "red bold"
elif cell.strip() == "":
cell_class = "grey"
table_html += f'<td class="{cell_class}">{cell}</td>'
table_html += '</tr>'
table_html += '</tbody></table>'
except Exception as e:
self.logger.error(f"Error in generate_html_table_netkb: {e}")
return table_html
def serve_netkb_data(self, handler):
try:
latest_file = self.shared_data.netkbfile
table_html = self.generate_html_table_netkb(latest_file)
handler.send_response(200)
handler.send_header("Content-type", "text/html")
handler.end_headers()
handler.wfile.write(table_html.encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def update_nmconnection(self, ssid, password):
config_path = '/etc/NetworkManager/system-connections/preconfigured.nmconnection'
with open(config_path, 'w') as f:
f.write(f"""
[connection]
id=preconfigured
uuid={uuid.uuid4()}
type=wifi
autoconnect=true
[wifi]
ssid={ssid}
mode=infrastructure
[wifi-security]
key-mgmt=wpa-psk
psk={password}
[ipv4]
method=auto
[ipv6]
method=auto
""")
subprocess.Popen(['sudo', 'chmod', '600', config_path]).communicate()
subprocess.Popen(['sudo', 'nmcli', 'connection', 'reload']).communicate()
def save_configuration(self, handler):
try:
content_length = int(handler.headers['Content-Length'])
post_data = handler.rfile.read(content_length).decode('utf-8')
params = json.loads(post_data)
fichier = self.shared_data.shared_config_json
self.logger.info(f"Received params: {params}")
with open(fichier, 'r') as f:
current_config = json.load(f)
for key, value in params.items():
if isinstance(value, bool):
current_config[key] = value
elif isinstance(value, str) and value.lower() in ['true', 'false']:
current_config[key] = value.lower() == 'true'
elif isinstance(value, (int, float)):
current_config[key] = value
elif isinstance(value, list):
# Lets boot any values in a list that are just empty strings
for val in value[:]:
if val == "" :
value.remove(val)
current_config[key] = value
elif isinstance(value, str):
if value.replace('.', '', 1).isdigit():
current_config[key] = float(value) if '.' in value else int(value)
else:
current_config[key] = value
else:
current_config[key] = value
with open(fichier, 'w') as f:
json.dump(current_config, f, indent=4)
self.logger.info("Configuration saved to file")
handler.send_response(200)
handler.send_header('Content-type', 'application/json')
handler.end_headers()
handler.wfile.write(json.dumps({"status": "success", "message": "Configuration saved"}).encode('utf-8'))
self.logger.info("Configuration saved (web)")
self.shared_data.load_config()
self.logger.info("Configuration reloaded (web)")
except Exception as e:
handler.send_response(500)
handler.send_header('Content-type', 'application/json')
handler.end_headers()
error_message = {"status": "error", "message": str(e)}
handler.wfile.write(json.dumps(error_message).encode('utf-8'))
self.logger.error(f"Error saving configuration: {e}")
def list_files(self, directory):
files = []
for entry in os.scandir(directory):
if entry.is_dir():
files.append({
"name": entry.name,
"is_directory": True,
"children": self.list_files(entry.path)
})
else:
files.append({
"name": entry.name,
"is_directory": False,
"path": entry.path
})
return files
def list_files_endpoint(self, handler):
try:
files = self.list_files(self.shared_data.datastolendir)
handler.send_response(200)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps(files).encode('utf-8'))
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def download_file(self, handler):
try:
query = unquote(handler.path.split('?path=')[1])
file_path = os.path.join(self.shared_data.datastolendir, query)
if os.path.isfile(file_path):
handler.send_response(200)
handler.send_header("Content-Disposition", f'attachment; filename="{os.path.basename(file_path)}"')
handler.end_headers()
with open(file_path, 'rb') as file:
handler.wfile.write(file.read())
else:
handler.send_response(404)
handler.end_headers()
except Exception as e:
handler.send_response(500)
handler.send_header("Content-type", "application/json")
handler.end_headers()
handler.wfile.write(json.dumps({"status": "error", "message": str(e)}).encode('utf-8'))
def get_all_credentials(self):
"""Get all discovered credentials from various services"""
credentials = {}
# Define credential files
cred_files = {
'ssh': self.shared_data.sshfile,
'smb': self.shared_data.smbfile,
'telnet': self.shared_data.telnetfile,
'ftp': self.shared_data.ftpfile,
'sql': self.shared_data.sqlfile,
'rdp': self.shared_data.rdpfile
}
def _normalize_keys(row):
normalized = {}
for key, value in row.items():
if key is None:
continue
normalized_key = key.strip().lower()
if normalized_key:
normalized[normalized_key] = value
return normalized
def _first_present(row, normalized_row, *keys):
for key in keys:
if key in row and row[key] not in (None, ''):
return row[key]
normalized_key = key.strip().lower()
if normalized_key in normalized_row and normalized_row[normalized_key] not in (None, ''):
return normalized_row[normalized_key]
return ''
for service, filepath in cred_files.items():
try:
if os.path.exists(filepath):
creds = []
with open(filepath, 'r', encoding='utf-8', errors='ignore') as f:
reader = csv.DictReader(f)
for row in reader:
normalized_row = _normalize_keys(row)
ip_value = _first_present(
row,
normalized_row,
'IP Address', 'IP', 'Target', 'target_ip', 'ip address'
)
user_value = _first_present(
row,
normalized_row,
'Username', 'User', 'Login', 'Account', 'user name'
)
password_value = _first_present(
row,
normalized_row,
'Password', 'Pass', 'Credential'
)
creds.append({
'ip': str(ip_value).strip(),
'username': str(user_value).strip() or 'N/A',
'password': str(password_value).strip()
})
credentials[service] = creds
else:
credentials[service] = []
except Exception as e:
self.logger.error(f"Error reading {service} credentials: {e}")
credentials[service] = []
return credentials
def get_loot_data(self):
"""Get stolen/loot data files"""
loot = []
try:
if os.path.exists(self.shared_data.datastolendir):
for root, dirs, files in os.walk(self.shared_data.datastolendir):
for file in files:
if file.lower().endswith('.log'):
continue
filepath = os.path.join(root, file)
try:
stat = os.stat(filepath)
relative_dir = os.path.relpath(root, self.shared_data.datastolendir)
if relative_dir.startswith('..'):
virtual_dir = '/data_stolen'
else:
cleaned = '' if relative_dir in {'.', ''} else relative_dir.replace('\\', '/').strip('/')
virtual_dir = f"/data_stolen/{cleaned}" if cleaned else '/data_stolen'
virtual_path = f"{virtual_dir.rstrip('/')}/{file}".replace('//', '/')
loot.append({
'filename': file,
'size': self._format_bytes(stat.st_size),
'source': os.path.basename(root),
'timestamp': self._format_timestamp(stat.st_mtime),
'path': virtual_path
})
except Exception as e:
self.logger.error(f"Error reading file {file}: {e}")
except Exception as e:
self.logger.error(f"Error reading loot directory: {e}")
return loot
def get_vulnerability_data(self):
"""Get vulnerability scan results"""
vulnerabilities = []
try:
import pandas as pd
if os.path.exists(self.shared_data.vuln_summary_file):
df = pd.read_csv(self.shared_data.vuln_summary_file)
vulnerabilities = df.to_dict('records')
except Exception as e:
self.logger.error(f"Error reading vulnerability data: {e}")
return vulnerabilities
@staticmethod
def _format_bytes(bytes_value):
"""Format bytes to human readable format"""
for unit in ['B', 'KB', 'MB', 'GB']:
if bytes_value < 1024.0:
return f"{bytes_value:.1f} {unit}"
bytes_value /= 1024.0
return f"{bytes_value:.1f} TB"
@staticmethod
def _format_timestamp(timestamp):
"""Format timestamp to readable string"""
return datetime.fromtimestamp(timestamp).strftime('%Y-%m-%d %H:%M:%S')