Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

edgeiq-network-scannerEdgeiq 网络扫描仪

Agent Skill

edgeiq-network-scanner 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,878

周安装

160

GitHub Stars

公开资料未说明

下载量

1,267
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:edgeiq-network-scanner(Edgeiq 网络扫描仪)
来源仓库:https://github.com/snipercat69/edgeiq-network-scanner
安装命令:
openclaw skills install edgeiq-network-scanner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install edgeiq-network-scanner

简介

在 Windows/WSL/Linux 上使用纯 Python(无需 nmap)执行授权 TCP 端口扫描、服务横幅抓取、操作系统指纹识别和主机发现。

SKILL.md

Network Scanner — EdgeIQ Professional

Version: 1.2.0 Skill Name: network-scanner Category: Security / Reconnaissance Tiers: Free v1 | Lifetime: $49 / Optional Monthly: $10/mo Author: EdgeIQ Labs OpenClaw Compatible: Yes — Python 3, pure stdlib, WSL + Windows


What It Does

Professional-grade network reconnaissance: host discovery, full-spectrum port scanning, service fingerprinting, CVE matching, SSL/TLS analysis, traceroute, subdomain enumeration, and vulnerability classification — without nmap. Pure Python sockets, works on WSL/Linux and Windows.

Designed for authorized security auditing of networks you own or have explicit written permission to scan.

⚠️ Legal Notice: Only scan networks you own or have explicit written permission to audit. Unauthorized scanning is illegal. This tool is for defensive security professionals, penetration testers, and network administrators.

Features

Core Capabilities

  • Host Discovery — ICMP ping + TCP connect probe (works through firewalls)
  • Port Scanning — Full spectrum: quick (9) / normal (20) / intense (100) / full (1–1024) / deep (1–65535)
  • Service Banner Grabbing — Identify services and exact version strings from open ports
  • HTTP/HTTPS Fingerprinting — Server detection, tech stack identification (WordPress, IIS, nginx, etc.), title grabbing, redirect following
  • SSL/TLS Security Grading — Certificate analysis, protocol detection, cipher inspection, grade assignment (A–F)
  • OS Fingerprinting — TTL + window size + open-port pattern heuristics (Linux/Windows/BSD/macOS detection)
  • CVE Matching — Local database of 40+ CVEs for common services (Apache, nginx, OpenSSH, MySQL, PostgreSQL, Redis, SMB, OpenSSL, MSSQL, VNC, RDP, DNS, SMTP, telnet, MongoDB, etc.)
  • Vulnerability Classification — Each open port tagged CRITICAL / HIGH / MEDIUM / LOW / NONE
  • Subdomain Enumeration — DNS lookup of 35+ common subdomain prefixes against discovered hosts
  • Traceroute — Network path analysis with per-hop RTT (Linux traceroute, Windows fallback)
  • Pure Python — Zero external dependencies (cryptography optional, degrades gracefully)
  • Cross-Platform — WSL/Linux + Windows + macOS
  • Concurrent Scanning — Multi-threaded ThreadPoolExecutor (configurable up to 150 workers)

Operational Features

  • Rate Limiting--rate-delay for stealth/stealth scanning (e.g. --rate-delay 0.05)
  • Proxy Support — HTTP/SOCKS proxy via --proxy socks5://host:port
  • Signal Handling — Graceful Ctrl+C (finishes current hosts, then exits cleanly)
  • Quiet/Automation Mode--quiet suppresses progress, exit codes for CI/CD:

- 0 = clean scan, no high-risk findings - 2 = interrupted - 3 = CRITICAL CVE found - 4 = HIGH CVE found

  • Custom Port Range--port-range 1-10000 or --port-range 1-65535
  • Output Formats — Discord (emoji-rich), Simple (CLI), JSON (machine-readable), HTML (polished report)
  • File Export--output report.html / --output scan.json

Installation

# Direct run
python3 /home/guy/.openclaw/workspace/apps/network-scanner/scanner.py

# As OpenClaw skill — copy into skills folder
cp -r /home/guy/.openclaw/workspace/apps/network-scanner ~/.openclaw/skills/network-scanner

# Optional: make it executable
chmod +x /home/guy/.openclaw/workspace/apps/network-scanner/scanner.py

Scan Depth Tiers

DepthPorts ScannedBest For
quick9Fast local discovery
normal20General reconnaissance
intense100Full vulnerability assessment
full1–1024Complete well-known port sweep
deep1–65535Full spectrum (slow, loud)

Usage Examples

Basic Scans

# Quick local scan
python3 scanner.py 192.168.1.0/24 quick

# Normal scan
python3 scanner.py 10.5.1.1 normal

# Intense scan with traceroute + subdomains
python3 scanner.py 10.5.1.1 intense --traceroute --subdomains

# Full well-known port scan (1–1024)
python3 scanner.py 192.168.1.1 full

# Full 65k port deep scan
python3 scanner.py 192.168.1.1 deep

# Custom port range
python3 scanner.py 10.5.1.1 custom --port-range 1-10000

Advanced Features

# Slow/stealth scan with rate limiting
python3 scanner.py 192.168.1.0/24 normal --rate-delay 0.05 --workers 50

# High-concurrency scan (150 workers)
python3 scanner.py 10.0.0.1 intense --workers 150 --timeout 1.0

# Traceroute + subdomains + SSL analysis
python3 scanner.py target.example.com full --traceroute --subdomains

# Export JSON for automation
python3 scanner.py 192.168.1.1 intense --format json --output scan.json

# Export HTML report
python3 scanner.py 192.168.1.1 intense --format html --output report.html

# Local network discovery
python3 scanner.py --local-scan normal

# Full subnet local scan
python3 scanner.py --local full

As Discord Command

In #net-scan channel:

!net 192.168.1.0/24 quick
!net 10.5.1.1 intense --traceroute --subdomains
!net scanme.nmap.org full
!net local quick
!net example.com full --format html

Output Format Examples

Discord Format

🔍 EdgeIQ Scan Report — `192.168.1.1`
Mode: `intense` | Risk: 🟠 HIGH | Duration: `12.3s`

🟢 192.168.1.1 — server.example.com `2.1ms` | 5 ports | HIGH
   └ OS: `Linux/Unix (TTL≈64); Linux/Unix Server`
   └ Subdomains: `www.example.com`, `mail.example.com`
   └ Route: → 192.168.1.1
   80    http          Apache/2.4.41 🟠 HIGH — Apache path traversal
 443    https         nginx/1.18.0 [SSL: B] — Self-signed certificate
  22    ssh           OpenSSH_8.0 MEDIUM — User enumeration via timing
3306    mysql         MySQL/5.7.29 🔴 CRITICAL — Auth bypass (CVE-2012-2122)

─── Stats: 1 hosts | 100 ports scanned | 2 errors

JSON Output

{
  "target": "192.168.1.1",
  "scan_type": "intense",
  "timestamp": "2026-04-22 14:38:00",
  "duration_s": 12.3,
  "hosts": [{
    "ip": "192.168.1.1",
    "hostname": "server.example.com",
    "is_alive": true,
    "rtt_ms": 2.1,
    "ttl": 64,
    "os_guess": "Linux/Unix (TTL≈64)",
    "ports": {
      "80": {
        "port": 80, "state": "open", "service": "http",
        "version": "Apache/2.4.41",
        "banner": "Apache/2.4.41 (Ubuntu)",
        "cves": [{"cve": "CVE-2017-15710", "level": "MEDIUM", ...}],
        "vuln_level": "HIGH",
        "http_fingerprint": {"server": "Apache/2.4.41", "tech_stack": ["PHP", "WordPress"]}
      }
    }
  }]
}

Tier Comparison

FeatureFree (v1)Lifetime ($49)Optional Monthly ($10/mo)
Port depth1–1024Full (1–65535)Full (1–65535)
CVE databaseLocal (~40 entries)Full (~500 entries)Full (~500 entries)
Traceroute
Subdomain enum
Output: HTML report
Output: JSON report
Output: Discord/Simple
Scheduled scans
Delta comparison
Alert delivery
Proxy support
Rate limiting
File export
SupportCommunityPriorityPriority

CVE Coverage

Current local database includes (partial list):

ServiceCVEs Matched
Apache httpdCVE-2024-27316, CVE-2022-31813, CVE-2017-15710
nginxCVE-2021-23017, CVE-2019-9511/9513/9516, CVE-2013-2028
OpenSSHCVE-2020-15778, CVE-2018-15473, CVE-2019-6109, CVE-2019-6111
MySQLCVE-2012-2122, CVE-2018-2562, CVE-2020-2574
PostgreSQLCVE-2019-9193, CVE-2022-41862
RedisCVE-2018-11218, CVE-2018-11219, CVE-2019-10192
SMB/SambaCVE-2017-0144 (EternalBlue)
OpenSSLCVE-2014-0160 (Heartbleed), CVE-2022-0778, CVE-2014-0224 (CCS)
MSSQLCVE-2019-1068, CVE-2019-1069
VNCCVE-2006-2369, CVE-2015-5239
RDPCVE-2019-0708 (BlueKeep), CVE-2022-21999
DNS/BINDCVE-2020-1350 (SIGRed)
SMTP/EximCVE-2019-10149
telnetdCVE-2020-10188
MongoDBCVE-2019-2389
vsftpdCVE-2011-2523 (backdoor)

Vuln level derives from CVE severity: CRITICAL > HIGH > MEDIUM > LOW.


Architecture

  • Language: Python 3 (pure stdlib — no external dependencies)
  • Optional: cryptography library for enhanced SSL certificate parsing (auto-skipped if unavailable)
  • Concurrency: concurrent.futures.ThreadPoolExecutor (configurable workers)
  • Scan Types: ICMP probe, TCP connect scan, ICMP ping, UDP probe, banner grab, HTTP fingerprint, SSL handshake, DNS lookup, traceroute (ICMP/UDP)
  • Supported Platforms: Linux/WSL, Windows, macOS
  • Dependencies: socket, concurrent.futures, struct, random, time, ipaddress, argparse, json, ssl, hashlib, re, datetime, signal

Exit Codes (Automation)

CodeMeaning
0Scan complete, no CRITICAL/HIGH CVEs found
1General error
2Interrupted (Ctrl+C)
3CRITICAL CVE found
4HIGH CVE found

Legal & Ethical Use

This tool is for:

  • Network administrators auditing their own infrastructure
  • Penetration testers assessing client networks with authorization
  • Bug bounty researchers (with program approval)
  • Security researchers studying their own networks

This tool must NOT be used:

  • Against networks without explicit written permission
  • On public infrastructure you don't own
  • For any unauthorized access or reconnaissance

Upgrade Links

| $49 | $39 | | Monthly ($10/mo) | $10/mo |

  • Optional Monthly ($10/mo):

Pro ($29/mo) and Bundle ($39/mo) deprecated — all features now included in Lifetime.


Support

Email: gpalmieri21@gmail.com Discord: https://discord.gg/aPhSnrU9 Site: https://edgeiqlabs.com


🔗 More from EdgeIQ Labs

edgeiqlabs.com — Security tools, OSINT utilities, and micro-SaaS products for developers and security professionals.

  • 🛠️ Subdomain Hunter — Passive subdomain enumeration via Certificate Transparency
  • 📸 Screenshot API — URL-to-screenshot API for developers
  • 🔔 uptime.check — URL uptime monitoring with alerts
  • 🛡️ headers.check — HTTP security headers analyzer

👉 Visit edgeiqlabs.com →

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.65%
按下载量换算1,123

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills