From 77ba2e1362f5ce066b8dc43227b5fd222db18555 Mon Sep 17 00:00:00 2001 From: Jokob-sk Date: Wed, 5 Jul 2023 08:04:10 +1000 Subject: [PATCH] arp-scan debug #261 work --- pialert/scanners/arpscan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pialert/scanners/arpscan.py b/pialert/scanners/arpscan.py index 142aab78..c8571bf6 100755 --- a/pialert/scanners/arpscan.py +++ b/pialert/scanners/arpscan.py @@ -14,7 +14,7 @@ def execute_arpscan (userSubnets): # scan each interface index = 0 for interface in userSubnets : - write_file (logPath + '/arp_scan_output_' + index + '.txt', arpscan_output) + write_file (logPath + '/arp_scan_output_' + str(index) + '.txt', arpscan_output) index += 1 arpscan_output += execute_arpscan_on_interface (interface)