From 89aa38ecc17e1f7438de8a9050c5c681f1be0a9e Mon Sep 17 00:00:00 2001 From: Jokob-sk Date: Wed, 5 Jul 2023 08:01:42 +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 1aefe7ba..142aab78 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_' + index + '.txt', arpscan_output) index += 1 arpscan_output += execute_arpscan_on_interface (interface)