Exposure Sentinel
A sentinel that watches over the OpenClaw Exposure Watchboard, checking if your IPs are publicly listed as exposed instances.
When to Use
- - Security auditing: Check if your infrastructure IPs are accidentally exposed
- Proactive monitoring: Verify exposure status of critical endpoints
- Incident response: Confirm if a suspected exposure is publicly known
Quick Start
Check a Single IP
CODEBLOCK0
Check Multiple IPs
CODEBLOCK1
With Progress Output
CODEBLOCK2
JSON Output (for automation)
CODEBLOCK3
How It Works
- 1. Concurrent scanning: Uses 50 concurrent connections to scan all 3,357 pages
- Pattern matching: Handles both full IPs and partially masked IPs (e.g.,
1.2.3.•••) - Complete coverage: Checks every page of the exposure database
- Typical runtime: ~85-95 seconds for full scan
Interpreting Results
- - ✅ Not found: IP is not listed in the exposure database (safe)
- ⚠️ EXPOSED: IP appears on the watchboard with page links for details
Technical Details
- - Source: https://openclaw.allegro.earth
- Total pages: 3,357 (100 records per page)
- Total records: ~335,000 exposed instances
- Scan rate: ~40 pages/second
About OpenClaw Exposure Watchboard
This is a public security research database listing publicly reachable OpenClaw instances for defensive awareness. If your IP appears here, it means:
- 1. The instance is directly exposed to the internet
- Authentication may be disabled or weak
- Immediate action recommended: enable auth, restrict access, patch
暴露哨兵
一个监控OpenClaw暴露监控面板的哨兵,用于检查您的IP是否被公开列为暴露实例。
使用场景
- - 安全审计:检查您的基础设施IP是否意外暴露
- 主动监控:验证关键端点的暴露状态
- 事件响应:确认疑似暴露是否已被公开记录
快速开始
检查单个IP
bash
python3 skills/exposure-sentinel/scripts/check_ip.py 1.2.3.4
检查多个IP
bash
python3 skills/exposure-sentinel/scripts/check_ip.py 1.2.3.4 5.6.7.8
显示进度输出
bash
python3 skills/exposure-sentinel/scripts/check_ip.py 1.2.3.4 -v
JSON输出(适用于自动化)
bash
python3 skills/exposure-sentinel/scripts/check_ip.py 1.2.3.4 --json
工作原理
- 1. 并发扫描:使用50个并发连接扫描全部3,357个页面
- 模式匹配:处理完整IP和部分掩码IP(例如 1.2.3.•••)
- 完全覆盖:检查暴露数据库的每个页面
- 典型运行时间:完整扫描约85-95秒
结果解读
- - ✅ 未发现:IP未在暴露数据库中列出(安全)
- ⚠️ 已暴露:IP出现在监控面板上,附带详情页面链接
技术细节
- - 数据来源:https://openclaw.allegro.earth
- 总页面数:3,357页(每页100条记录)
- 总记录数:约335,000个暴露实例
- 扫描速率:约40页/秒
关于OpenClaw暴露监控面板
这是一个公开的安全研究数据库,列出可公开访问的OpenClaw实例,用于防御意识提升。如果您的IP出现在此处,意味着:
- 1. 该实例直接暴露于互联网
- 认证可能已禁用或较弱
- 建议立即采取措施:启用认证、限制访问、打补丁