Getting Started with EdgeIQ Labs

Pick the option that fits your setup β€” no technical knowledge required for any of them.

🌐 No install

Web Browser

Use any scanner right in your browser. No account needed.

πŸ’» Free download

Terminal / Python

Download and run from any terminal. Works on any computer.

🦞 Optional

OpenClaw + ClawHub

Install tools via OpenClaw. Great for automation and scheduling.

πŸ–₯️ Coming soon

Desktop App

One-click install for Windows and macOS. No terminal needed.

Option 1 β€” Web Browser (Easiest)

No account, no download, no setup. Just open your browser and start scanning.

Step 1 β€” Open the scanner

Go to edgeiqlabs.com and click any tool in the Free Scanner section.

Step 2 β€” Enter your target

Type the URL or domain you want to check. For subdomain scans, just enter your domain (like example.com).

Step 3 β€” Click Scan

Results appear instantly. That's it. No signup, no API key, no waiting.

βœ“ Free Tier β€” What's Included
β˜… Pro Tier β€” Everything in Free, Plus

Option 2 β€” Terminal / Python (Free Download)

Download a tool, run it from your terminal. Takes about 2 minutes. Works on Windows, macOS, and Linux.

What You Need First

Download and Run a Tool β€” Example: SSL Checker

Step 1 β€” Download the tool

Open your terminal and run:

curl -sL https://edgeiqlabs.com/dl/edgeiq-ssl-checker.py -o edgeiq-ssl-checker.py

Step 2 β€” Run the scan

Point Python at the downloaded file:

python3 edgeiq-ssl-checker.py --domain example.com

Step 3 β€” Read the results

Results print directly in your terminal. That's all there is to it.

All Available Tools (Free Download)

πŸ” XSS Scanner β€” Find cross-site scripting vulnerabilities

Tests websites for XSS vulnerabilities using 40+ payloads and WAF bypass techniques.

curl -sL https://edgeiqlabs.com/dl/edgeiq-xss-scanner.py -o edgeiq-xss-scanner.py
python3 edgeiq-xss-scanner.py --target "https://example.com/search?q=test"
βœ“ Free β€” What's Included
  • 10 XSS payload tests per scan
  • Basic WAF detection
  • Standard output in terminal
β˜… Pro β€” Everything in Free, Plus
  • 40+ payloads with full WAF bypass
  • Blind XSS detection with callback
  • Screenshot evidence of findings
  • JSON and HTML report export
  • Priority processing

🌐 Network Scanner β€” Deep port and service scanning

Scans IP addresses and domains for open ports, running services, and known CVE vulnerabilities.

curl -sL https://edgeiqlabs.com/dl/edgeiq-network-scanner.py -o edgeiq-network-scanner.py
python3 edgeiq-network-scanner.py --target example.com --ports 1-1000
βœ“ Free β€” What's Included
  • Top 100 port scan
  • Basic service detection
  • Standard output
β˜… Pro β€” Everything in Free, Plus
  • Full 1-65535 port scan
  • CVE matching for detected services
  • OS fingerprinting
  • Traceroute andεœ°η†εœ°ε›Ύ
  • JSON and HTML report export

πŸ”’ SSL / Security Headers Checker

Checks SSL certificate expiry, TLS versions, and security HTTP headers.

curl -sL https://edgeiqlabs.com/dl/edgeiq-ssl-checker.py -o edgeiq-ssl-checker.py
python3 edgeiq-ssl-checker.py --domain example.com
βœ“ Free β€” What's Included
  • SSL certificate expiry check
  • TLS version check
  • Basic security header scan
β˜… Pro β€” Everything in Free, Plus
  • Full CSP, HSTS, X-Frame-Options, Referrer-Policy analysis
  • WHOIS domain registration lookup
  • Certificate chain analysis
  • Daily/weekly monitoring with email alerts
  • JSON and PDF report export

πŸ”— Subdomain Hunter β€” Find hidden subdomains

Discovers subdomains via public Certificate Transparency logs and checks for takeover risks.

curl -sL https://edgeiqlabs.com/dl/edgeiq-subdomain-hunter.py -o edgeiq-subdomain-hunter.py
python3 edgeiq-subdomain-hunter.py --domain example.com
βœ“ Free β€” What's Included
  • Certificate Transparency scan
  • Up to 100 subdomain results
  • Basic takeover risk flagging
β˜… Pro β€” Everything in Free, Plus
  • Unlimited subdomain results
  • Full takeover detection (AWS S3, GitHub Pages, Heroku, etc.)
  • DNS zone transfer checks
  • Daily monitoring with change alerts
  • JSON and CSV export

πŸ•³οΈ Dark Web Credential Checker

Checks if an email address or domain appears in known data breaches.

curl -sL https://edgeiqlabs.com/dl/edgeiq-credential-checker.py -o edgeiq-credential-checker.py
python3 edgeiq-credential-checker.py --email [email protected]
βœ“ Free β€” What's Included
  • 5 email lookups per month
  • Basic breach summary
β˜… Pro β€” Everything in Free, Plus
  • 50 email lookups per month
  • Password hash detection
  • Full exposed data classification
  • Domain-wide monitoring
  • Monthly breach digest report

Optional: Install Tools with pip (Easier Updates)

If you prefer, install tools via pip so you can update them easily:

# Install all tools at once
pip install edgeiq-tools

# Or install tools individually
pip install edgeiq-xss-scanner edgeiq-ssl-watcher edgeiq-subdomain-hunter

# Update to latest version anytime
pip install --upgrade edgeiq-tools

Schedule Scans Automatically

Run scans on a schedule so you don't have to remember:

# Linux/macOS β€” schedule a daily SSL check at 9am
(crontab -l 2>/dev/null; echo "0 9 * * * python3 ~/edgeiq-ssl-checker.py --domain example.com --quiet") | crontab -

# Windows β€” open Task Scheduler and add a task pointing to:
# python C:\tools\elliq-ssl-checker.py --domain example.com

Option 3 β€” OpenClaw + ClawHub (For Automation)

OpenClaw is an AI agent platform that runs on your computer. EdgeIQ tools are published on ClawHub so you can install them as OpenClaw skills. This is great if you want to automate scans, chain tools together, or run them on a schedule with your own AI assistant.

What You Need

Install OpenClaw

# macOS / Linux β€” paste in your terminal:
curl -fsSL https://openclaw.ai/install.sh | bash

# Windows β€” download from https://openclaw.ai
# Run the installer and follow the prompts

Find and Install EdgeIQ Tools

All EdgeIQ tools are published on ClawHub β€” search for "edgeiq" to see the full list:

# Search for all EdgeIQ tools
openclaw skills search edgeiq

# Install a specific tool
openclaw skills install edgeiq-xss-scanner

# Install multiple tools at once
openclaw skills install edgeiq-ssl-watcher edgeiq-network-scanner edgeiq-subdomain-hunter

Run a Tool via OpenClaw

# Run from your terminal β€” just talk to OpenClaw:
openclaw run edgeiq-xss-scanner --target "https://example.com/search?q=test"

# Or let OpenClaw's AI assistant choose the right tool:
openclaw "scan example.com for XSS vulnerabilities"

Automate Scans with Scheduling

# Schedule a daily subdomain scan β€” OpenClaw runs it automatically
openclaw schedule add \
  --name "Daily Subdomain Check" \
  --skill edgeiq-subdomain-hunter \
  --args "--domain example.com" \
  --cron "0 8 * * *" \
  --notify discord

Connect Alerts to Slack, Discord, or Telegram

# Install the EdgeIQ alerting system
openclaw skills install edgeiq-alerting-system

# Configure your Discord webhook
openclaw config set edgeiq-alerting-system DISCORD_WEBHOOK https://discord.com/api/webhooks/your-webhook

# Now any scan can send alerts to Discord automatically
openclaw run edgeiq-ssl-watcher --domain example.com --alert
β˜… Pro via OpenClaw

When you upgrade a tool through OpenClaw, your Pro API key is shared across all installed EdgeIQ tools automatically. No need to configure each tool separately.

Option 4 β€” Desktop App (Coming Soon)

Native apps for Windows and macOS. One-click install, graphical interface, no terminal required.

πŸͺŸ Windows
🍎 macOS
🐧 Linux

πŸ“¦ Desktop app installer β€” in development. Email us to get notified when it's ready and get early access pricing.

What Desktop Apps Include

Start Scanning for Free β€” Right Now

No account, no download, no commitment. Try the free web scanners or download a terminal tool.

Browse free tools β†’