Install
openclaw skills install home-network-security-agentAudits local network infrastructure, identifies active hosts, and scans the gateway/public IP for exposed ports and vulnerabilities.
openclaw skills install home-network-security-agentThis agent performs internal and external security audits of your home network environment. It utilizes nmap to discover devices and footprint exposed services.
Ensure nmap is installed on the host system:
sudo apt install nmap
get_network_topologyRetrieves the default gateway IP and the external public IP address of the network.
python3 scanner.py --tool get_network_topologydiscover_lan_hostsPerforms a ping sweep on the local subnet to identify all connected physical and IoT devices.
gateway_ip (string)python3 scanner.py --tool discover_lan_hosts --target {{gateway_ip}}scan_ports_and_vulnsRuns a service detection scan against a target IP (local or public) to list open ports and identify potential misconfigurations.
ip_address (string), scan_type (string: "fast" or "deep")python3 scanner.py --tool scan_ports_and_vulns --target {{ip_address}} --type {{scan_type}}