安全扫描
OpenClaw
可疑
high confidence该技能声称100%本地推理,但其运行时说明要求将PII POST到远程端点并包含支付头;这种矛盾加上缺失的支付/数据保留细节令人担忧。
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/4/14
- ntriq-x402-pii-detect-batch 初始版本发布。 - 批量检测并可选掩码最多500个文本输入中的PII(邮箱、电话、SSN、姓名、地址)。 - 每次批量统一收费6.00 USDC,通过x402协议支付。 - 为保护隐私,在Mac Mini上进行完全本地推理。 - 支持输出掩码并提供每个输入的详细PII发现结果。
● 可疑
安装命令
点击复制官方npx clawhub@latest install ntriq-x402-pii-detect-batch
🇨🇳 镜像加速npx clawhub@latest install ntriq-x402-pii-detect-batch --registry https://cn.longxiaskill.com
技能文档
检测并可选掩码最多500个文本输入中的个人身份信息(邮箱、电话、SSN、姓名、地址)。统一收费6.00 USDC。Mac Mini上100%本地推理。
调用方法
POST https://x402.ntriq.co.kr/pii-detect-batch
Content-Type: application/json
X-PAYMENT: {
"texts": [
"Contact John Smith at john@example.com or 555-0123",
"Invoice sent to 123 Main St, Springfield"
],
"mask": true
}
参数
| 参数 | 类型 | 必填 | 描述 |
|---|---|---|---|
texts | array | ✅ | 要分析的文本字符串(最多500个) |
mask | boolean | ❌ | 用[TYPE]占位符替换PII(默认:false) |
响应示例
{
"status": "ok",
"count": 2,
"results": [
{
"index": 0,
"status": "ok",
"pii_found": [
{"type": "name", "value": "John Smith"},
{"type": "email", "value": "john@example.com"},
{"type": "phone", "value": "555-0123"}
],
"risk_level": "high",
"masked_text": "Contact [NAME] at [EMAIL] or [PHONE]"
}
]
}
支付
- 价格:统一6.00 USDC(最多500个文本)
- 网络:Base主网(EIP-3009免gas)
- 协议:x402
curl https://x402.ntriq.co.kr/services
数据来源:ClawHub ↗ · 中文优化:龙虾技能库