remote-executor-network — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited remote-executor-network (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
注意: 此 skill 由关键词触发加载,不要常驻。
POST /net/scrape
Content-Type: application/json
{"url": "https://example.com"}返回:
{"url": "https://example.com", "content": "HTML内容...", "size": 5000, "truncated": false}POST /net/ping
Content-Type: application/json
{
"host": "192.168.1.1",
"count": 4
}返回:
{"host": "192.168.1.1", "count": 4, "output": "...", "returncode": 0}POST /net/port-check
Content-Type: application/json
{
"host": "<host>",
"port": 8765,
"timeout": 5.0
}返回:
{"host": "<host>", "port": 8765, "open": true, "code": 0}POST /net/connections
Content-Type: application/json
{
"filter": "8765", // 可选过滤
"limit": 50
}返回:
{
"connections": [
{"local": "0.0.0.0:8765", "remote": "0.0.0.0:0", "state": "Listen", "pid": 1234}
],
"count": 1
}Ping 测试:
curl -s -X POST http://<host>:8765/net/ping \
-H "Content-Type: application/json" \
-d '{"host": "baidu.com", "count": 4}'检测端口:
curl -s -X POST http://<host>:8765/net/port-check \
-H "Content-Type: application/json" \
-d '{"host": "<host>", "port": 8765}'抓取网页:
curl -s -X POST http://<host>:8765/net/scrape \
-H "Content-Type: application/json" \
-d '{"url": "https://www.baidu.com"}'查看网络连接:
curl -s -X POST http://<host>:8765/net/connections \
-H "Content-Type: application/json" \
-d '{"filter": "", "limit": 20}'~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.