编程

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

  1. Copy the plugin files to your OpenClaw extensions directory:

    ~/.openclaw/extensions/content-scrubber/
    ├── index.ts
    ├── openclaw.plugin.json
    └── package.json
    
  2. Add to your openclaw.json plugins config:

    {
      "plugins": {
        "entries": {
          "content-scrubber": {
            "enabled": true,
            "config": {
              "dryRun": false,
              "allowedRecipients": []
            }
          }
        }
      }
    }
    
  3. Restart OpenClaw.

Configuration

OptionTypeDefaultDescription
dryRunbooleanfalseLog what would be scrubbed without actually redacting
allowedRecipientsstring[][]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]

相关技能

按用户明确指令,在得到大脑(Get笔记)中保存、搜索并管理笔记与知识库。

作者 iswalle763 次安装66 星标

为 Codex 生成一个可在任意目录运行的持久 CLI,包含可组合的读/写子命令和稳定的 JSON 输出。

作者 OpenAI27.5k 星标

为新建或现有 ASP.NET Core 项目挑选合适的应用模型,并按 Microsoft 最新文档规范组织 Program.cs、中间件和服务。

作者 OpenAI27.5k 星标

figma-use

官方

在调用 `use_figma` MCP 工具前加载,获得运行 Figma Plugin API 脚本的完整规则集。

作者 OpenAI27.5k 星标

基于算法哲学生成原创 p5.js 艺术作品,支持种子随机与参数调节。

作者 Anthropic177.5k 星标

创建、修改并量化评估 agent 技能,与无技能基线对比运行

作者 Anthropic177.5k 星标

solomonneas 的更多技能

浏览全部技能

Essential penetration testing command reference. Quick lookup for nmap, Metasploit, hydra, john, nikto, gobuster, and other offensive security tools. Covers...

作者 Solomon Neas65 次安装1 星标

Memory forensics with Volatility and related tools. Acquire RAM dumps, extract processes and DLLs, investigate rootkits and fileless malware, recover credent...

作者 solomonneas30 次安装1 星标

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...

作者 solomonneas36 次安装

Expert malware analysis for defensive security research. Static and dynamic analysis, sandbox triage, IOC extraction, unpacking, and malware family identific...

作者 solomonneas31 次安装

Knowledge card memory system with semantic search. Agents wake up fresh each session but remember everything through atomic ~350-token cards with YAML frontm...

作者 solomonneas28 次安装

Network traffic analysis with Wireshark and tshark. Capture packets, write display and BPF filters, follow TCP/UDP/TLS streams, detect C2 beacons, troublesho...

作者 solomonneas27 次安装