You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
elif command == "list":
print("scanning all ips...please wait")
c = 'nmap -sP 192.168.1.0/24'
r, code = run_command(c)
logger.debug(r)
logger.debug(code)
lines = []
for line in r.splitlines():
if "scan report" in line:
lines.append(line.split("for ")[1])
r, code = run_command(c)
for line in r.splitlines():
if "scan report" in line:
lines.append(line.split("for ")[1])
print("\n".join(sorted(list(set(lines)))))
return
Is this intentional?
The text was updated successfully, but these errors were encountered:
The cluster.py list command seems to assume you're using the 192.168.1.0/24 subnet?
find-lf/tools/cluster.py
Line 361 in 09c5677
Is this intentional?
The text was updated successfully, but these errors were encountered: