whos-on-my-network
whos-on-my-network copied to clipboard
Linux support
trying to run this from linux, webapp works but when i try to scan it says npcap is required, tho there's nmap available already.
It looks like for Linux, you will need tcpdump
as noted here.
I'm not sure what flavour you are running but following the "Platform-specific instructions" from that link above might get you running.
I'm using kali distro which should have all of that already
Kali is based on Debian - if you execute tcpdump
in the terminal, does it work?
yes
If you execute sudo apt-get install tcpdump
- do you get a different message when running the application?
it's useless to do it since it's already installed, no changes are made when doing it, the application still asks for npcap
Are you able to provide the traceback and error?
there's no error, it just asks for npcap and i can't continue. Are you sure the program looks for other alternatives rather than npcap?
Right, I see you are getting this error here, in the except blocks.
In a Python shell, if you execute:
from scapy.all import arping
result, _ = arping('192.168.1.1', verbose=0)
Do you get any errors? If so, what are they?
no errors
Are you able to debug the application? If you put breakpoints on:
What is in the variable exception
? (this is in both except blocks).
These exceptions should now be shown in the output
The docker file uses Linux - this tool works on Linux