按用户明确指令,在得到大脑(Get笔记)中保存、搜索并管理笔记与知识库。
编程
Content Scrubber
试用OpenClaw plugin that scrubs private infrastructure details from outgoing messages. Regex-based redaction of RFC 1918 IPs, localhost ports, SSH targets, and h...
它能做什么
An OpenClaw extension plugin that intercepts outgoing messages and redacts private infrastructure details before delivery.
技能文档
Content Scrubber
An OpenClaw extension plugin that intercepts outgoing messages and redacts private infrastructure details before delivery.
What It Catches
- RFC 1918 IPv4 addresses: 10.x.x.x, 172.16-31.x.x, 192.168.x.x
- Loopback addresses: 127.x.x.x
- localhost with ports: localhost:8080, localhost:3000, etc.
- SSH/SCP targets: user@10.0.0.1:/path
- Custom hostnames: configurable hostname patterns
How It Works
The plugin registers as a message interceptor. Before any message leaves OpenClaw (Discord, Telegram, Signal, etc.), it runs through regex-based scrubbing rules that replace private details with safe placeholders like [redacted-ip], [redacted-service], [redacted-target].
Rules are deterministic (regex, not LLM), so they're fast, auditable, and never miss edge cases that an LLM scrubber would.
Installation
-
Copy the plugin files to your OpenClaw extensions directory:
~/.openclaw/extensions/content-scrubber/ ├── index.ts ├── openclaw.plugin.json └── package.json -
Add to your
openclaw.jsonplugins config:{ "plugins": { "entries": { "content-scrubber": { "enabled": true, "config": { "dryRun": false, "allowedRecipients": [] } } } } } -
Restart OpenClaw.
Configuration
| Option | Type | Default | Description |
|---|---|---|---|
dryRun | boolean | false | Log what would be scrubbed without actually redacting |
allowedRecipients | string[] | [] | Chat IDs where scrubbing is skipped (e.g., private DMs with yourself) |
Example
Before scrubbing:
SSH into admin@10.0.0.50 and check the service on localhost:8096
After scrubbing:
SSH into [redacted-target] and check the service on [redacted-service]
相关技能
为 Codex 生成一个可在任意目录运行的持久 CLI,包含可组合的读/写子命令和稳定的 JSON 输出。
为新建或现有 ASP.NET Core 项目挑选合适的应用模型,并按 Microsoft 最新文档规范组织 Program.cs、中间件和服务。
在调用 `use_figma` MCP 工具前加载,获得运行 Figma Plugin API 脚本的完整规则集。
基于算法哲学生成原创 p5.js 艺术作品,支持种子随机与参数调节。
创建、修改并量化评估 agent 技能,与无技能基线对比运行
solomonneas 的更多技能
浏览全部技能Essential penetration testing command reference. Quick lookup for nmap, Metasploit, hydra, john, nikto, gobuster, and other offensive security tools. Covers...
Memory forensics with Volatility and related tools. Acquire RAM dumps, extract processes and DLLs, investigate rootkits and fileless malware, recover credent...
This skill should be used when the user asks to "run pentest commands", "scan with nmap", "use metasploit exploits", "crack passwords with hydra or john", "s...
Expert malware analysis for defensive security research. Static and dynamic analysis, sandbox triage, IOC extraction, unpacking, and malware family identific...
Knowledge card memory system with semantic search. Agents wake up fresh each session but remember everything through atomic ~350-token cards with YAML frontm...
Network traffic analysis with Wireshark and tshark. Capture packets, write display and BPF filters, follow TCP/UDP/TLS streams, detect C2 beacons, troublesho...