Hi All ,
I want to run an arp-scan from python script not from cmd line, therefore, I have write the code below but it does not show anything. Can you help please ?
import socket
from subprocess import call
call(["arp-scan -l"])
-------------------------------------------------------------
also, I change the call to be : (["arp","-scan", "-l"]) but still show nothing but when writing it in the cmd line it's run the scan