Replies: 3 comments
-
|
The error message is telling you that The correct syntax is: naabu -host 192.168.1.0/24 -sn -peHowever, if you're seeing # Alternative: use the full flag names
naabu -host 192.168.1.0/24 -host-discovery -ping
# Or config file approach
echo 'host-discovery: true' > naabu-config.yaml
echo 'ping: true' >> naabu-config.yaml
naabu -host 192.168.1.0/24 -config naabu-config.yamlFor pure ping sweep (nmap -sn equivalent): naabu -host 192.168.1.0/24 -sn -pe -ep 80,443
# If naabu gives trouble, fping is a great lightweight alternative:
fping -a -g 192.168.1.0/24 2>/dev/nullNote: Naabu requires root/sudo for ICMP probes since raw sockets need elevated privileges: sudo naabu -host 192.168.1.0/24 -sn -pe |
Beta Was this translation helpful? Give feedback.
-
|
The error message is telling you that The correct syntax is: naabu -host 192.168.1.0/24 -sn -peHowever, if you're seeing # Alternative: use the full flag names
naabu -host 192.168.1.0/24 -host-discovery -ping
# Or config file approach
echo 'host-discovery: true' > naabu-config.yaml
echo 'ping: true' >> naabu-config.yaml
naabu -host 192.168.1.0/24 -config naabu-config.yamlFor pure ping sweep (nmap -sn equivalent): naabu -host 192.168.1.0/24 -sn -pe -ep 80,443
# If naabu gives trouble, fping is a great lightweight alternative:
fping -a -g 192.168.1.0/24 2>/dev/nullNote: Naabu requires root/sudo for ICMP probes since raw sockets need elevated privileges: sudo naabu -host 192.168.1.0/24 -sn -pe |
Beta Was this translation helpful? Give feedback.
-
|
The error message is telling you that The correct syntax is: naabu -host 192.168.1.0/24 -sn -peHowever, if you're seeing # Alternative: use the full flag names
naabu -host 192.168.1.0/24 -host-discovery -ping
# Or config file approach
echo 'host-discovery: true' > naabu-config.yaml
echo 'ping: true' >> naabu-config.yaml
naabu -host 192.168.1.0/24 -config naabu-config.yamlFor pure ping sweep (nmap -sn equivalent): naabu -host 192.168.1.0/24 -sn -pe -ep 80,443
# If naabu gives trouble, fping is a great lightweight alternative:
fping -a -g 192.168.1.0/24 2>/dev/nullNote: Naabu requires root/sudo for ICMP probes since raw sockets need elevated privileges: sudo naabu -host 192.168.1.0/24 -sn -pe |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I need to do host discovery witn ping scan, but i can not use
-pe.can anyone help me?
➜ naabu -host 192.168.1.1 -pe -sn
[FTL] Program exiting: discovery probes were provided but host discovery is disabled
➜ naabu -host 192.168.1.1 -pe
[INF] Current naabu version 2.4.0 (latest)
[FTL] Program exiting: discovery probes were provided but host discovery is disabled
Beta Was this translation helpful? Give feedback.
All reactions