Install
openclaw skills install identity-monitoring-agentAn OSINT sentinel that monitors the public web for email exposure, username footprint, and identity leaks without API keys.
openclaw skills install identity-monitoring-agentThis agent acts as a digital investigator. It scans the public web and platform recovery flows to find where personal data might be exposed.
Install the necessary OSINT libraries in your LXC environment:
pip install holehe sherlock-project googlesearch-python
Before using the agent via the UI, verify the logic directly on your DGX Spark terminal:
python3 monitor.py --tool scan_email --target user@example.com
python3 monitor.py --tool scan_username --target example_user
python3 monitor.py --tool search_leaks --query "example_query"
Note: If registered_sites returns an empty list [], it indicates no hits were found on supported platforms or the service is temporarily rate-limited.
scan_emailChecks 120+ sites to see if an email is registered using forgotten password flows.
email (string)python3 monitor.py --tool scan_email --target {{email}}scan_usernameHunts for a specific username across 400+ social networks and platforms.
username (string)python3 monitor.py --tool scan_username --target {{username}}search_leaksUses advanced Google Dorks to find identifiers on leak sites, forums, and pastebins.
query (string)python3 monitor.py --tool search_leaks --query "{{query}}"