@dcrays/mobook-security-plugin 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import * as fs from "node:fs";
|
|
|
2
2
|
import * as path from "node:path";
|
|
3
3
|
|
|
4
4
|
// ============================================================
|
|
5
|
-
// OpenClaw 安全防护插件 v2.0
|
|
5
|
+
// OpenClaw 安全防护插件 v2.0.2
|
|
6
6
|
// 功能:危险命令拦截 | 敏感信息脱敏(全渠道) | LLM 响应拦截 | 操作审计日志
|
|
7
7
|
// ============================================================
|
|
8
8
|
|
|
@@ -507,7 +507,7 @@ function installFetchInterceptor(api) {
|
|
|
507
507
|
// ============================================================
|
|
508
508
|
export default function register(api) {
|
|
509
509
|
log("═══════════════════════════════════════════════════════");
|
|
510
|
-
log(" OpenClaw 安全防护插件 v2.0 启动");
|
|
510
|
+
log(" OpenClaw 安全防护插件 v2.0.2 启动");
|
|
511
511
|
log(" 功能: 危险命令拦截 | 敏感信息脱敏(全渠道) | LLM 响应拦截 | 提示词注入检测 | 操作审计");
|
|
512
512
|
log("═══════════════════════════════════════════════════════");
|
|
513
513
|
log(`插件ID: ${api.id}`);
|
|
@@ -592,6 +592,6 @@ export default function register(api) {
|
|
|
592
592
|
|
|
593
593
|
log("已注册: fetch拦截器(全渠道) + before_tool_call + message_sending + llm_output + message_sent");
|
|
594
594
|
log("═══════════════════════════════════════════════════════");
|
|
595
|
-
log(" 安全插件 v2.0 启动完成");
|
|
595
|
+
log(" 安全插件 v2.0.2 启动完成");
|
|
596
596
|
log("═══════════════════════════════════════════════════════");
|
|
597
597
|
}
|
package/openclaw.plugin.json
CHANGED