clawmoat 0.5.0 → 0.8.0
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/CONTRIBUTING.md +4 -2
- package/README.md +86 -3
- package/SECURITY.md +58 -10
- package/bin/clawmoat.js +298 -1
- package/clawmoat-0.8.0.tgz +0 -0
- package/docs/blog/386-malicious-skills.html +255 -0
- package/docs/blog/40000-exposed-openclaw-instances.html +194 -0
- package/docs/blog/agent-trust-protocol.html +197 -0
- package/docs/blog/clawmoat-vs-llamafirewall-nemo-guardrails.html +223 -0
- package/docs/blog/ibm-experts-agent-runtime-protection.html +238 -0
- package/docs/blog/index.html +168 -0
- package/docs/blog/mcp-30-cves-security-crisis.html +279 -0
- package/docs/blog/microsoft-openclaw-workstation-security.html +234 -0
- package/docs/blog/nist-ai-agent-standards-clawmoat.html +369 -0
- package/docs/blog/oasis-websocket-hijack.html +205 -0
- package/docs/blog/ollama-openclaw-security.html +154 -0
- package/docs/blog/openclaw-enterprise-readiness-claw10.html +198 -0
- package/docs/blog/openclaw-security-reckoning-2026.html +361 -0
- package/docs/blog/supply-chain-agents.html +166 -0
- package/docs/blog/supply-chain-agents.md +79 -0
- package/docs/business/index.html +530 -0
- package/docs/business/install.html +247 -0
- package/docs/checklist.html +168 -0
- package/docs/finance/index.html +217 -0
- package/docs/hall-of-fame.html +168 -0
- package/docs/index.html +328 -90
- package/docs/install.sh +557 -0
- package/docs/privacy-policy/index.html +122 -0
- package/docs/scan/index.html +214 -0
- package/docs/sitemap.xml +132 -2
- package/docs/support/index.html +124 -0
- package/docs/terms-of-service/index.html +122 -0
- package/examples/basic-usage.js +38 -0
- package/package.json +1 -1
- package/server/index.js +179 -14
- package/server/index.js.patch +1 -0
- package/src/finance/index.js +585 -0
- package/src/finance/mcp-firewall.js +486 -0
- package/src/guardian/cve-verify.js +129 -0
- package/src/guardian/gateway-monitor.js +590 -0
- package/src/guardian/index.js +3 -1
- package/src/guardian/insider-threat.js +498 -0
- package/src/index.js +3 -0
- package/src/middleware/openclaw.js +28 -1
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>Install ClawMoat — One Command, Enterprise-Grade Agent Security</title>
|
|
7
|
+
<meta name="description" content="Install ClawMoat in 60 seconds. One command sets up permission tiers, credential protection, audit trails, and secret scanning for your AI agents.">
|
|
8
|
+
<link rel="canonical" href="https://clawmoat.com/business/install.html">
|
|
9
|
+
<link rel="icon" type="image/png" href="/favicon.png">
|
|
10
|
+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
11
|
+
|
|
12
|
+
<meta property="og:title" content="One Command. Enterprise-Grade Agent Security.">
|
|
13
|
+
<meta property="og:description" content="Install ClawMoat in 60 seconds — permission tiers, credential protection, audit trails for AI agents.">
|
|
14
|
+
<meta property="og:image" content="https://clawmoat.com/og-image.png">
|
|
15
|
+
<meta property="og:url" content="https://clawmoat.com/business/install.html">
|
|
16
|
+
<meta property="og:type" content="website">
|
|
17
|
+
|
|
18
|
+
<style>
|
|
19
|
+
*{margin:0;padding:0;box-sizing:border-box}
|
|
20
|
+
:root{--navy:#0F172A;--navy-light:#1E293B;--navy-mid:#334155;--blue:#3B82F6;--emerald:#10B981;--white:#F8FAFC;--gray:#94A3B8;--red:#EF4444;--amber:#F59E0B;--cyan:#06B6D4}
|
|
21
|
+
html{scroll-behavior:smooth}
|
|
22
|
+
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:var(--navy);color:var(--white);line-height:1.7}
|
|
23
|
+
a{color:var(--blue);text-decoration:none}
|
|
24
|
+
a:hover{text-decoration:underline}
|
|
25
|
+
|
|
26
|
+
/* Nav */
|
|
27
|
+
.nav{padding:1rem 2rem;display:flex;align-items:center;gap:1rem;border-bottom:1px solid rgba(255,255,255,.06)}
|
|
28
|
+
.nav-logo{font-size:1.3rem;font-weight:700;color:var(--white)}
|
|
29
|
+
.nav a{color:var(--gray);font-size:.9rem}
|
|
30
|
+
.nav a:hover{color:var(--white)}
|
|
31
|
+
|
|
32
|
+
/* Hero */
|
|
33
|
+
.hero{text-align:center;padding:5rem 2rem 4rem;max-width:800px;margin:0 auto}
|
|
34
|
+
.hero h1{font-size:clamp(2rem,5vw,3.2rem);line-height:1.2;margin-bottom:1rem}
|
|
35
|
+
.hero h1 span{color:var(--emerald)}
|
|
36
|
+
.hero p{color:var(--gray);font-size:1.15rem;margin-bottom:2.5rem;max-width:600px;margin-left:auto;margin-right:auto}
|
|
37
|
+
|
|
38
|
+
/* Install box */
|
|
39
|
+
.install-box{background:var(--navy-light);border:1px solid var(--navy-mid);border-radius:12px;padding:2rem;max-width:700px;margin:0 auto 1.5rem;position:relative}
|
|
40
|
+
.install-box code{font-family:'SF Mono',Monaco,'Cascadia Code',monospace;font-size:1.1rem;color:var(--emerald);display:block;padding:.8rem;background:rgba(0,0,0,.3);border-radius:8px;cursor:pointer;transition:background .2s}
|
|
41
|
+
.install-box code:hover{background:rgba(0,0,0,.5)}
|
|
42
|
+
.install-box .label{color:var(--gray);font-size:.85rem;margin-bottom:.5rem}
|
|
43
|
+
.install-box .enterprise{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--navy-mid)}
|
|
44
|
+
.install-box .enterprise code{color:var(--amber);font-size:.95rem}
|
|
45
|
+
.copy-hint{color:var(--gray);font-size:.8rem;text-align:center;margin-bottom:3rem}
|
|
46
|
+
.copied{color:var(--emerald) !important}
|
|
47
|
+
|
|
48
|
+
/* Sections */
|
|
49
|
+
.section{max-width:900px;margin:0 auto;padding:3rem 2rem}
|
|
50
|
+
.section h2{font-size:1.8rem;margin-bottom:1.5rem;text-align:center}
|
|
51
|
+
.section h2 span{color:var(--emerald)}
|
|
52
|
+
|
|
53
|
+
/* Steps */
|
|
54
|
+
.steps{display:grid;gap:1.5rem}
|
|
55
|
+
.step{display:flex;gap:1.2rem;align-items:flex-start;background:var(--navy-light);padding:1.5rem;border-radius:10px;border:1px solid var(--navy-mid)}
|
|
56
|
+
.step-num{background:var(--emerald);color:var(--navy);font-weight:700;width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.9rem}
|
|
57
|
+
.step h3{font-size:1.05rem;margin-bottom:.3rem}
|
|
58
|
+
.step p{color:var(--gray);font-size:.9rem}
|
|
59
|
+
|
|
60
|
+
/* Comparison table */
|
|
61
|
+
.compare{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:1.5rem}
|
|
62
|
+
@media(max-width:600px){.compare{grid-template-columns:1fr}}
|
|
63
|
+
.compare-col{background:var(--navy-light);border-radius:10px;padding:1.5rem;border:1px solid var(--navy-mid)}
|
|
64
|
+
.compare-col.bad{border-color:rgba(239,68,68,.3)}
|
|
65
|
+
.compare-col.good{border-color:rgba(16,185,129,.3)}
|
|
66
|
+
.compare-col h3{font-size:1.1rem;margin-bottom:1rem;display:flex;align-items:center;gap:.5rem}
|
|
67
|
+
.compare-col ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
|
|
68
|
+
.compare-col.bad li::before{content:'❌ '}
|
|
69
|
+
.compare-col.good li::before{content:'✅ '}
|
|
70
|
+
.compare-col li{color:var(--gray);font-size:.9rem}
|
|
71
|
+
|
|
72
|
+
/* FAQ */
|
|
73
|
+
.faq{display:grid;gap:1rem;margin-top:1.5rem}
|
|
74
|
+
.faq-item{background:var(--navy-light);border-radius:10px;padding:1.5rem;border:1px solid var(--navy-mid)}
|
|
75
|
+
.faq-item h3{font-size:1rem;margin-bottom:.5rem;color:var(--white)}
|
|
76
|
+
.faq-item p{color:var(--gray);font-size:.9rem}
|
|
77
|
+
|
|
78
|
+
/* CTA */
|
|
79
|
+
.cta{text-align:center;padding:4rem 2rem;border-top:1px solid var(--navy-mid)}
|
|
80
|
+
.cta h2{font-size:1.8rem;margin-bottom:1rem}
|
|
81
|
+
.cta p{color:var(--gray);margin-bottom:2rem}
|
|
82
|
+
.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
|
|
83
|
+
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.5rem;border-radius:8px;font-weight:600;font-size:.95rem;transition:transform .2s,opacity .2s}
|
|
84
|
+
.btn:hover{transform:translateY(-1px);text-decoration:none;opacity:.9}
|
|
85
|
+
.btn-primary{background:var(--emerald);color:var(--navy)}
|
|
86
|
+
.btn-secondary{background:var(--navy-light);color:var(--white);border:1px solid var(--navy-mid)}
|
|
87
|
+
|
|
88
|
+
/* Footer */
|
|
89
|
+
.footer{text-align:center;padding:2rem;color:var(--gray);font-size:.85rem;border-top:1px solid rgba(255,255,255,.06)}
|
|
90
|
+
</style>
|
|
91
|
+
</head>
|
|
92
|
+
<body>
|
|
93
|
+
|
|
94
|
+
<nav class="nav">
|
|
95
|
+
<a href="/" class="nav-logo">🏰 ClawMoat</a>
|
|
96
|
+
<a href="/business/">Business</a>
|
|
97
|
+
<a href="/blog/">Blog</a>
|
|
98
|
+
<a href="https://github.com/ClawMoat/clawmoat">GitHub</a>
|
|
99
|
+
</nav>
|
|
100
|
+
|
|
101
|
+
<!-- Hero -->
|
|
102
|
+
<section class="hero">
|
|
103
|
+
<h1>One Command.<br><span>Enterprise-Grade Agent Security.</span></h1>
|
|
104
|
+
<p>Install ClawMoat in 60 seconds. Hardened config, credential protection, audit trails — all running locally on your machine.</p>
|
|
105
|
+
|
|
106
|
+
<div class="install-box">
|
|
107
|
+
<div class="label">Run this in your terminal:</div>
|
|
108
|
+
<code onclick="copyCmd(this, 'curl -fsSL https://clawmoat.com/install.sh | bash')">curl -fsSL https://clawmoat.com/install.sh | bash</code>
|
|
109
|
+
<div class="enterprise">
|
|
110
|
+
<div class="label">Enterprise (adds FinanceGuard, MCP Firewall, SOX templates):</div>
|
|
111
|
+
<code onclick="copyCmd(this, 'curl -fsSL https://clawmoat.com/install.sh | bash -s -- --enterprise')">curl -fsSL https://clawmoat.com/install.sh | bash -s -- --enterprise</code>
|
|
112
|
+
</div>
|
|
113
|
+
</div>
|
|
114
|
+
<div class="copy-hint">Click to copy • Works on Linux, macOS, and WSL</div>
|
|
115
|
+
</section>
|
|
116
|
+
|
|
117
|
+
<!-- What it does -->
|
|
118
|
+
<section class="section">
|
|
119
|
+
<h2>What <span>It Does</span></h2>
|
|
120
|
+
<div class="steps">
|
|
121
|
+
<div class="step">
|
|
122
|
+
<div class="step-num">1</div>
|
|
123
|
+
<div>
|
|
124
|
+
<h3>Detects Your OS</h3>
|
|
125
|
+
<p>Identifies Linux, macOS, or WSL and adapts accordingly. No sudo required.</p>
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
<div class="step">
|
|
129
|
+
<div class="step-num">2</div>
|
|
130
|
+
<div>
|
|
131
|
+
<h3>Checks Node.js</h3>
|
|
132
|
+
<p>Verifies Node.js v18+ is installed. Offers to install via nvm if missing — no system packages modified.</p>
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
<div class="step">
|
|
136
|
+
<div class="step-num">3</div>
|
|
137
|
+
<div>
|
|
138
|
+
<h3>Installs ClawMoat</h3>
|
|
139
|
+
<p><code style="background:none;padding:0;color:var(--cyan);font-size:.85rem">npm install -g clawmoat</code> — the open-source AI agent security toolkit.</p>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
<div class="step">
|
|
143
|
+
<div class="step-num">4</div>
|
|
144
|
+
<div>
|
|
145
|
+
<h3>Generates Hardened Config</h3>
|
|
146
|
+
<p>Creates <code style="background:none;padding:0;color:var(--cyan);font-size:.85rem">~/.clawmoat/config.json</code> with worker-tier permissions, 17+ forbidden credential zones, secret scanning, network logging, and full audit trails.</p>
|
|
147
|
+
</div>
|
|
148
|
+
</div>
|
|
149
|
+
<div class="step">
|
|
150
|
+
<div class="step-num">5</div>
|
|
151
|
+
<div>
|
|
152
|
+
<h3>Runs Security Scan</h3>
|
|
153
|
+
<p>Scans your machine for exposed credentials, insecure permissions, and .env files. Generates a report showing what it found and what's now protected.</p>
|
|
154
|
+
</div>
|
|
155
|
+
</div>
|
|
156
|
+
<div class="step">
|
|
157
|
+
<div class="step-num">6</div>
|
|
158
|
+
<div>
|
|
159
|
+
<h3>Prints Next Steps</h3>
|
|
160
|
+
<p>Configure alert webhooks, run your first scan, connect to your team dashboard.</p>
|
|
161
|
+
</div>
|
|
162
|
+
</div>
|
|
163
|
+
</div>
|
|
164
|
+
</section>
|
|
165
|
+
|
|
166
|
+
<!-- Comparison -->
|
|
167
|
+
<section class="section">
|
|
168
|
+
<h2>Without vs. <span>With ClawMoat</span></h2>
|
|
169
|
+
<div class="compare">
|
|
170
|
+
<div class="compare-col bad">
|
|
171
|
+
<h3>🚫 Without ClawMoat</h3>
|
|
172
|
+
<ul>
|
|
173
|
+
<li>Agents can read ~/.ssh, ~/.aws, any credential file</li>
|
|
174
|
+
<li>No record of what agents accessed or modified</li>
|
|
175
|
+
<li>Secrets leak silently in agent output</li>
|
|
176
|
+
<li>Network requests go unmonitored</li>
|
|
177
|
+
<li>No compliance evidence for auditors</li>
|
|
178
|
+
<li>One compromised agent = full system access</li>
|
|
179
|
+
</ul>
|
|
180
|
+
</div>
|
|
181
|
+
<div class="compare-col good">
|
|
182
|
+
<h3>🏰 With ClawMoat</h3>
|
|
183
|
+
<ul>
|
|
184
|
+
<li>17+ credential zones blocked by default</li>
|
|
185
|
+
<li>Tamper-protected audit trail of every action</li>
|
|
186
|
+
<li>Real-time secret detection with alerts</li>
|
|
187
|
+
<li>Full network egress logging</li>
|
|
188
|
+
<li>SOX-ready compliance templates (Enterprise)</li>
|
|
189
|
+
<li>Least-privilege tiers contain blast radius</li>
|
|
190
|
+
</ul>
|
|
191
|
+
</div>
|
|
192
|
+
</div>
|
|
193
|
+
</section>
|
|
194
|
+
|
|
195
|
+
<!-- FAQ -->
|
|
196
|
+
<section class="section">
|
|
197
|
+
<h2>Frequently Asked <span>Questions</span></h2>
|
|
198
|
+
<div class="faq">
|
|
199
|
+
<div class="faq-item">
|
|
200
|
+
<h3>🔒 Is it safe to run?</h3>
|
|
201
|
+
<p>Yes. The script runs entirely locally — no data is sent anywhere. It installs an npm package, creates a config file in ~/.clawmoat/, and scans for existing credential exposure. No files are modified or deleted. The script is open-source and auditable on <a href="https://github.com/ClawMoat/clawmoat">GitHub</a>.</p>
|
|
202
|
+
</div>
|
|
203
|
+
<div class="faq-item">
|
|
204
|
+
<h3>📁 What does it change on my system?</h3>
|
|
205
|
+
<p>It installs the <code>clawmoat</code> npm package globally, creates the <code>~/.clawmoat/</code> directory with a config and audit logs, and optionally installs nvm if Node.js is missing. No system files are modified. No sudo required.</p>
|
|
206
|
+
</div>
|
|
207
|
+
<div class="faq-item">
|
|
208
|
+
<h3>🔄 Can I run it multiple times?</h3>
|
|
209
|
+
<p>Yes, the script is idempotent. Running it again updates ClawMoat and backs up your existing config before generating a new one.</p>
|
|
210
|
+
</div>
|
|
211
|
+
<div class="faq-item">
|
|
212
|
+
<h3>🗑️ Can I uninstall?</h3>
|
|
213
|
+
<p>Completely. Run <code>npm uninstall -g clawmoat</code> and <code>rm -rf ~/.clawmoat</code>. That's it — nothing else to clean up.</p>
|
|
214
|
+
</div>
|
|
215
|
+
<div class="faq-item">
|
|
216
|
+
<h3>💼 What does --enterprise add?</h3>
|
|
217
|
+
<p>FinanceGuard for monitoring high-value operations, MCP Firewall in read-only mode for tool-call governance, and SOX compliance audit templates with controls mapping.</p>
|
|
218
|
+
</div>
|
|
219
|
+
</div>
|
|
220
|
+
</section>
|
|
221
|
+
|
|
222
|
+
<!-- CTA -->
|
|
223
|
+
<section class="cta">
|
|
224
|
+
<h2>Secure Your AI Agents Today</h2>
|
|
225
|
+
<p>Open-source core. Enterprise features for teams that need compliance.</p>
|
|
226
|
+
<div class="cta-buttons">
|
|
227
|
+
<a href="https://github.com/ClawMoat/clawmoat" class="btn btn-secondary">⭐ Star on GitHub</a>
|
|
228
|
+
<a href="/business/" class="btn btn-primary">Get ClawMoat Pro →</a>
|
|
229
|
+
</div>
|
|
230
|
+
</section>
|
|
231
|
+
|
|
232
|
+
<footer class="footer">
|
|
233
|
+
© 2026 ClawMoat · <a href="/privacy-policy/">Privacy</a> · <a href="/terms-of-service/">Terms</a> · <a href="/support/">Support</a>
|
|
234
|
+
</footer>
|
|
235
|
+
|
|
236
|
+
<script>
|
|
237
|
+
function copyCmd(el, text) {
|
|
238
|
+
navigator.clipboard.writeText(text).then(() => {
|
|
239
|
+
const orig = el.textContent;
|
|
240
|
+
el.textContent = '✅ Copied!';
|
|
241
|
+
el.classList.add('copied');
|
|
242
|
+
setTimeout(() => { el.textContent = orig; el.classList.remove('copied'); }, 1500);
|
|
243
|
+
});
|
|
244
|
+
}
|
|
245
|
+
</script>
|
|
246
|
+
</body>
|
|
247
|
+
</html>
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>AI Agent Security Checklist (2026) — ClawMoat</title>
|
|
7
|
+
<meta name="description" content="Free security checklist for AI agent operators. 20 actionable steps to protect your machine, credentials, and data from autonomous AI agents.">
|
|
8
|
+
<meta property="og:title" content="AI Agent Security Checklist (2026)">
|
|
9
|
+
<meta property="og:description" content="20 actionable security steps for AI agent operators. Free, open-source.">
|
|
10
|
+
<link rel="canonical" href="https://clawmoat.com/checklist">
|
|
11
|
+
<style>
|
|
12
|
+
*{margin:0;padding:0;box-sizing:border-box}
|
|
13
|
+
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:#0F172A;color:#F8FAFC;line-height:1.8}
|
|
14
|
+
a{color:#3B82F6}
|
|
15
|
+
.container{max-width:760px;margin:0 auto;padding:40px 24px}
|
|
16
|
+
nav{background:rgba(15,23,42,.95);padding:16px 24px;position:fixed;top:0;left:0;right:0;z-index:100;border-bottom:1px solid rgba(59,130,246,.15)}
|
|
17
|
+
nav a{color:#94A3B8;text-decoration:none;margin-right:24px;font-size:.9rem}
|
|
18
|
+
nav a:first-child{color:#F8FAFC;font-weight:700;font-size:1.1rem}
|
|
19
|
+
h1{font-size:2.2rem;font-weight:800;line-height:1.2;margin-bottom:8px;padding-top:80px}
|
|
20
|
+
h2{font-size:1.4rem;font-weight:700;margin:40px 0 16px;color:#10B981}
|
|
21
|
+
p{margin-bottom:16px;color:#CBD5E1}
|
|
22
|
+
.subtitle{color:#94A3B8;font-size:1.1rem;margin-bottom:40px}
|
|
23
|
+
.check-group{background:#1E293B;border:1px solid rgba(255,255,255,.06);border-radius:12px;padding:24px;margin:16px 0}
|
|
24
|
+
.check-item{display:flex;gap:12px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.04)}
|
|
25
|
+
.check-item:last-child{border-bottom:none}
|
|
26
|
+
.check-box{width:24px;height:24px;border:2px solid #334155;border-radius:6px;flex-shrink:0;margin-top:2px;cursor:pointer}
|
|
27
|
+
.check-item strong{color:#F8FAFC}
|
|
28
|
+
.check-item p{color:#94A3B8;font-size:.9rem;margin:4px 0 0}
|
|
29
|
+
.priority-high{border-left:3px solid #EF4444;padding-left:12px}
|
|
30
|
+
.priority-med{border-left:3px solid #F59E0B;padding-left:12px}
|
|
31
|
+
.priority-low{border-left:3px solid #10B981;padding-left:12px}
|
|
32
|
+
code{background:#0a0e17;padding:2px 8px;border-radius:4px;font-size:.85rem}
|
|
33
|
+
.cta{background:#1E293B;border:1px solid rgba(59,130,246,.3);border-radius:14px;padding:32px;text-align:center;margin:48px 0}
|
|
34
|
+
.btn{display:inline-block;padding:12px 28px;background:#3B82F6;color:#fff;border-radius:8px;text-decoration:none;font-weight:600;margin:8px}
|
|
35
|
+
.legend{display:flex;gap:24px;margin:24px 0;font-size:.85rem;color:#94A3B8}
|
|
36
|
+
.legend span{display:flex;align-items:center;gap:6px}
|
|
37
|
+
.dot{width:12px;height:12px;border-radius:3px;display:inline-block}
|
|
38
|
+
.dot-high{background:#EF4444}
|
|
39
|
+
.dot-med{background:#F59E0B}
|
|
40
|
+
.dot-low{background:#10B981}
|
|
41
|
+
</style>
|
|
42
|
+
</head>
|
|
43
|
+
<body>
|
|
44
|
+
<nav>
|
|
45
|
+
<a href="/">🏰 ClawMoat</a>
|
|
46
|
+
<a href="/blog/">Blog</a>
|
|
47
|
+
<a href="https://github.com/darfaz/clawmoat">GitHub</a>
|
|
48
|
+
<a href="/#pricing">Pricing</a>
|
|
49
|
+
</nav>
|
|
50
|
+
<div class="container">
|
|
51
|
+
<h1>AI Agent Security Checklist</h1>
|
|
52
|
+
<p class="subtitle">20 actionable steps to protect your machine from autonomous AI agents. Updated February 2026.</p>
|
|
53
|
+
|
|
54
|
+
<div class="legend">
|
|
55
|
+
<span><span class="dot dot-high"></span> Critical</span>
|
|
56
|
+
<span><span class="dot dot-med"></span> Important</span>
|
|
57
|
+
<span><span class="dot dot-low"></span> Recommended</span>
|
|
58
|
+
</div>
|
|
59
|
+
|
|
60
|
+
<h2>🔐 Credential Protection</h2>
|
|
61
|
+
<div class="check-group">
|
|
62
|
+
<div class="check-item priority-high">
|
|
63
|
+
<div class="check-box"></div>
|
|
64
|
+
<div><strong>Move SSH keys out of agent's reach</strong><p>Use a separate user account or forbidden zone to protect <code>~/.ssh/</code></p></div>
|
|
65
|
+
</div>
|
|
66
|
+
<div class="check-item priority-high">
|
|
67
|
+
<div class="check-box"></div>
|
|
68
|
+
<div><strong>Protect cloud credentials</strong><p>Lock down <code>~/.aws/</code>, <code>~/.gcloud/</code>, <code>~/.azure/</code>, <code>~/.kube/</code></p></div>
|
|
69
|
+
</div>
|
|
70
|
+
<div class="check-item priority-high">
|
|
71
|
+
<div class="check-box"></div>
|
|
72
|
+
<div><strong>Secure browser data</strong><p>Prevent access to browser profile directories (cookies, saved passwords, sessions)</p></div>
|
|
73
|
+
</div>
|
|
74
|
+
<div class="check-item priority-med">
|
|
75
|
+
<div class="check-box"></div>
|
|
76
|
+
<div><strong>Protect GPG/PGP keys</strong><p>Lock down <code>~/.gnupg/</code></p></div>
|
|
77
|
+
</div>
|
|
78
|
+
<div class="check-item priority-med">
|
|
79
|
+
<div class="check-box"></div>
|
|
80
|
+
<div><strong>Protect crypto wallets</strong><p>Lock down wallet files, seed phrases, and key stores</p></div>
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
|
|
84
|
+
<h2>🛡️ Permission Controls</h2>
|
|
85
|
+
<div class="check-group">
|
|
86
|
+
<div class="check-item priority-high">
|
|
87
|
+
<div class="check-box"></div>
|
|
88
|
+
<div><strong>Set a permission tier</strong><p>Start with <code>observer</code> or <code>worker</code> and escalate only as needed</p></div>
|
|
89
|
+
</div>
|
|
90
|
+
<div class="check-item priority-high">
|
|
91
|
+
<div class="check-box"></div>
|
|
92
|
+
<div><strong>Block dangerous shell commands</strong><p>Prevent <code>rm -rf</code>, <code>chmod 777</code>, <code>curl | bash</code>, <code>dd</code></p></div>
|
|
93
|
+
</div>
|
|
94
|
+
<div class="check-item priority-med">
|
|
95
|
+
<div class="check-box"></div>
|
|
96
|
+
<div><strong>Restrict network access</strong><p>Use domain allow/blocklists to control where the agent can connect</p></div>
|
|
97
|
+
</div>
|
|
98
|
+
<div class="check-item priority-med">
|
|
99
|
+
<div class="check-box"></div>
|
|
100
|
+
<div><strong>Limit file system scope</strong><p>Restrict the agent to a workspace directory; block access to system files</p></div>
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
|
+
|
|
104
|
+
<h2>🔍 Monitoring & Auditing</h2>
|
|
105
|
+
<div class="check-group">
|
|
106
|
+
<div class="check-item priority-high">
|
|
107
|
+
<div class="check-box"></div>
|
|
108
|
+
<div><strong>Enable audit logging</strong><p>Log every tool call, file access, and shell command</p></div>
|
|
109
|
+
</div>
|
|
110
|
+
<div class="check-item priority-med">
|
|
111
|
+
<div class="check-box"></div>
|
|
112
|
+
<div><strong>Monitor credential directories</strong><p>Set up alerts for any access attempts to sensitive directories</p></div>
|
|
113
|
+
</div>
|
|
114
|
+
<div class="check-item priority-med">
|
|
115
|
+
<div class="check-box"></div>
|
|
116
|
+
<div><strong>Log network egress</strong><p>Track all outbound URLs and connections</p></div>
|
|
117
|
+
</div>
|
|
118
|
+
<div class="check-item priority-low">
|
|
119
|
+
<div class="check-box"></div>
|
|
120
|
+
<div><strong>Set up webhook alerts</strong><p>Send security events to Slack, Discord, Telegram, or email</p></div>
|
|
121
|
+
</div>
|
|
122
|
+
</div>
|
|
123
|
+
|
|
124
|
+
<h2>📦 Supply Chain</h2>
|
|
125
|
+
<div class="check-group">
|
|
126
|
+
<div class="check-item priority-high">
|
|
127
|
+
<div class="check-box"></div>
|
|
128
|
+
<div><strong>Audit installed skills/plugins</strong><p>Run integrity checks on all installed agent skills. 13.4% of ClawHub skills have critical issues (Snyk).</p></div>
|
|
129
|
+
</div>
|
|
130
|
+
<div class="check-item priority-med">
|
|
131
|
+
<div class="check-box"></div>
|
|
132
|
+
<div><strong>Verify skill hashes after updates</strong><p>Re-check integrity after any skill update or installation</p></div>
|
|
133
|
+
</div>
|
|
134
|
+
<div class="check-item priority-med">
|
|
135
|
+
<div class="check-box"></div>
|
|
136
|
+
<div><strong>Scan for suspicious patterns</strong><p>Look for base64-encoded URLs, credential access patterns, obfuscated code</p></div>
|
|
137
|
+
</div>
|
|
138
|
+
</div>
|
|
139
|
+
|
|
140
|
+
<h2>💬 Input/Output Security</h2>
|
|
141
|
+
<div class="check-group">
|
|
142
|
+
<div class="check-item priority-high">
|
|
143
|
+
<div class="check-box"></div>
|
|
144
|
+
<div><strong>Scan inbound content for prompt injection</strong><p>Emails, web pages, and documents can contain hidden instructions</p></div>
|
|
145
|
+
</div>
|
|
146
|
+
<div class="check-item priority-med">
|
|
147
|
+
<div class="check-box"></div>
|
|
148
|
+
<div><strong>Scan outbound content for secrets</strong><p>Catch API keys, tokens, and credentials before they leave the machine</p></div>
|
|
149
|
+
</div>
|
|
150
|
+
<div class="check-item priority-low">
|
|
151
|
+
<div class="check-box"></div>
|
|
152
|
+
<div><strong>Scan inter-agent messages</strong><p>If running multi-agent systems, scan messages between agents for attack patterns</p></div>
|
|
153
|
+
</div>
|
|
154
|
+
</div>
|
|
155
|
+
|
|
156
|
+
<div class="cta">
|
|
157
|
+
<h3 style="color:#F8FAFC;margin-bottom:8px">Automate this checklist</h3>
|
|
158
|
+
<p style="color:#94A3B8;margin-bottom:16px">ClawMoat implements all 20 checks. Zero dependencies. MIT licensed.</p>
|
|
159
|
+
<code style="font-size:1rem;background:#0a0e17;padding:8px 16px">npm install -g clawmoat</code>
|
|
160
|
+
<br><br>
|
|
161
|
+
<a href="https://github.com/darfaz/clawmoat" class="btn">⭐ Star on GitHub</a>
|
|
162
|
+
<a href="/#pricing" class="btn" style="background:#10B981">See Plans</a>
|
|
163
|
+
</div>
|
|
164
|
+
|
|
165
|
+
<p style="font-size:.85rem;color:#64748B;margin-top:40px">Based on OWASP Top 10 for Agentic AI (2026), Cisco AI Defense research, SecurityScorecard STRIKE findings, and Snyk ClawHub analysis.</p>
|
|
166
|
+
</div>
|
|
167
|
+
</body>
|
|
168
|
+
</html>
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>ClawMoat Finance — Financial Security for AI Agents</title>
|
|
7
|
+
<meta name="description" content="Protect financial data when AI agents handle payments, banking, crypto, and accounting. Transaction guardrails, credential protection, SOX/PCI-DSS compliance.">
|
|
8
|
+
<meta property="og:title" content="ClawMoat Finance — Your AI Agent Shouldn't Have Access to Your Bank">
|
|
9
|
+
<meta property="og:description" content="Transaction approval thresholds, financial credential protection, crypto wallet guards, and compliance-ready audit trails for AI agents.">
|
|
10
|
+
<link rel="canonical" href="https://clawmoat.com/finance/">
|
|
11
|
+
<style>
|
|
12
|
+
:root { --bg: #0a0a0f; --fg: #e0e0e8; --accent: #00d4aa; --gold: #f5c542; --muted: #888; --card: #14141f; --red: #ff4444; }
|
|
13
|
+
* { margin:0; padding:0; box-sizing:border-box; }
|
|
14
|
+
body { background:var(--bg); color:var(--fg); font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif; line-height:1.7; }
|
|
15
|
+
.container { max-width:900px; margin:0 auto; padding:2rem 1.5rem; }
|
|
16
|
+
.nav { padding:1rem 0; border-bottom:1px solid #2a2a3a; margin-bottom:2rem; display:flex; justify-content:space-between; align-items:center; }
|
|
17
|
+
.nav a { color:var(--fg); text-decoration:none; margin-right:1.5rem; }
|
|
18
|
+
.nav a:hover { color:var(--accent); }
|
|
19
|
+
h1 { font-size:2.8rem; line-height:1.15; margin-bottom:1rem; }
|
|
20
|
+
h1 span { color:var(--gold); }
|
|
21
|
+
h2 { color:var(--accent); margin:2.5rem 0 1rem; font-size:1.6rem; }
|
|
22
|
+
h3 { margin:1.5rem 0 .75rem; font-size:1.2rem; }
|
|
23
|
+
p { margin-bottom:1rem; }
|
|
24
|
+
a { color:var(--accent); }
|
|
25
|
+
.hero { text-align:center; padding:3rem 0; }
|
|
26
|
+
.hero-sub { color:var(--muted); font-size:1.2rem; max-width:600px; margin:0 auto 2rem; }
|
|
27
|
+
.badge { display:inline-block; background:var(--gold); color:#000; padding:4px 12px; border-radius:20px; font-size:.8rem; font-weight:700; margin-bottom:1rem; }
|
|
28
|
+
pre { background:#1a1a2e; padding:1.25rem; border-radius:8px; overflow-x:auto; margin:1rem 0; }
|
|
29
|
+
code { background:#1a1a2e; padding:.15em .4em; border-radius:4px; font-size:.9em; }
|
|
30
|
+
pre code { background:none; padding:0; }
|
|
31
|
+
.feature-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:1.5rem; margin:2rem 0; }
|
|
32
|
+
.feature-card { background:var(--card); border:1px solid #2a2a3a; border-radius:12px; padding:1.5rem; }
|
|
33
|
+
.feature-card h3 { margin-top:0; color:var(--gold); }
|
|
34
|
+
.feature-card .icon { font-size:2rem; margin-bottom:.5rem; }
|
|
35
|
+
.who-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:1rem; margin:1.5rem 0; }
|
|
36
|
+
.who-card { background:var(--card); border:1px solid #2a2a3a; border-radius:8px; padding:1rem; text-align:center; }
|
|
37
|
+
.cta { background:var(--gold); color:#000; padding:.75rem 2rem; border-radius:6px; text-decoration:none; font-weight:700; display:inline-block; margin:1rem .5rem 1rem 0; font-size:1.1rem; }
|
|
38
|
+
.cta:hover { opacity:.9; }
|
|
39
|
+
.cta-outline { border:2px solid var(--accent); color:var(--accent); background:transparent; padding:.75rem 1.5rem; border-radius:6px; text-decoration:none; font-weight:600; display:inline-block; margin:1rem 0; }
|
|
40
|
+
.protection-list { list-style:none; padding:0; margin:1rem 0; }
|
|
41
|
+
.protection-list li { padding:.5rem 0; border-bottom:1px solid #1a1a2e; display:flex; align-items:center; }
|
|
42
|
+
.protection-list .severity { width:70px; font-size:.75rem; font-weight:bold; border-radius:4px; padding:2px 6px; text-align:center; margin-right:12px; flex-shrink:0; }
|
|
43
|
+
.severity-critical { background:var(--red); color:#fff; }
|
|
44
|
+
.severity-high { background:#ff8800; color:#fff; }
|
|
45
|
+
.stat-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:1rem; margin:2rem 0; }
|
|
46
|
+
.stat { text-align:center; }
|
|
47
|
+
.stat .number { font-size:2.5rem; font-weight:bold; color:var(--gold); }
|
|
48
|
+
.stat .label { color:var(--muted); font-size:.85rem; }
|
|
49
|
+
.pricing { background:var(--card); border:2px solid var(--gold); border-radius:12px; padding:2rem; margin:2rem 0; text-align:center; }
|
|
50
|
+
.pricing h3 { color:var(--gold); font-size:1.8rem; margin:0 0 .5rem; }
|
|
51
|
+
.pricing .price { font-size:2.5rem; font-weight:bold; margin:.5rem 0; }
|
|
52
|
+
.pricing .price span { font-size:1rem; color:var(--muted); }
|
|
53
|
+
.pricing ul { text-align:left; max-width:400px; margin:1rem auto; list-style:none; padding:0; }
|
|
54
|
+
.pricing li { padding:.4rem 0; }
|
|
55
|
+
.pricing li::before { content:'✅ '; }
|
|
56
|
+
</style>
|
|
57
|
+
</head>
|
|
58
|
+
<body>
|
|
59
|
+
<div class="container">
|
|
60
|
+
<nav class="nav">
|
|
61
|
+
<div>
|
|
62
|
+
<a href="/" style="font-weight:bold;font-size:1.1rem">ClawMoat</a>
|
|
63
|
+
<a href="/blog/">Blog</a>
|
|
64
|
+
<a href="/finance/" style="color:var(--gold)">Finance</a>
|
|
65
|
+
<a href="https://github.com/darfaz/clawmoat">GitHub</a>
|
|
66
|
+
</div>
|
|
67
|
+
<a href="#pricing" class="cta" style="margin:0;font-size:.9rem;padding:.5rem 1rem">Get Started</a>
|
|
68
|
+
</nav>
|
|
69
|
+
|
|
70
|
+
<div class="hero">
|
|
71
|
+
<div class="badge">NEW IN v0.8.0</div>
|
|
72
|
+
<h1>Your AI Agent Shouldn't Have<br>Access to Your <span>Bank Account</span></h1>
|
|
73
|
+
<p class="hero-sub">Financial-grade security for AI agents handling payments, crypto, accounting, and banking. Transaction guardrails. Credential protection. Compliance-ready audit trails.</p>
|
|
74
|
+
<pre style="display:inline-block;text-align:left"><code>npm install clawmoat
|
|
75
|
+
|
|
76
|
+
const { FinanceGuard } = require('clawmoat');
|
|
77
|
+
const guard = new FinanceGuard({
|
|
78
|
+
transactionLimit: 1000, // Approval above $1K
|
|
79
|
+
dualApprovalThreshold: 10000, // Two approvals above $10K
|
|
80
|
+
auditFormat: 'sox', // SOX-compliant trails
|
|
81
|
+
});</code></pre>
|
|
82
|
+
</div>
|
|
83
|
+
|
|
84
|
+
<div class="stat-grid">
|
|
85
|
+
<div class="stat"><div class="number">30+</div><div class="label">Financial forbidden zones</div></div>
|
|
86
|
+
<div class="stat"><div class="number">15+</div><div class="label">Secret patterns detected</div></div>
|
|
87
|
+
<div class="stat"><div class="number">15</div><div class="label">Financial APIs monitored</div></div>
|
|
88
|
+
<div class="stat"><div class="number">240</div><div class="label">Tests passing</div></div>
|
|
89
|
+
</div>
|
|
90
|
+
|
|
91
|
+
<h2>What FinanceGuard Protects</h2>
|
|
92
|
+
|
|
93
|
+
<div class="feature-grid">
|
|
94
|
+
<div class="feature-card">
|
|
95
|
+
<div class="icon">💳</div>
|
|
96
|
+
<h3>Payment Credentials</h3>
|
|
97
|
+
<p>Blocks agent access to Stripe keys, Plaid tokens, PayPal configs, Square credentials, and 10+ payment providers.</p>
|
|
98
|
+
</div>
|
|
99
|
+
<div class="feature-card">
|
|
100
|
+
<div class="icon">🪙</div>
|
|
101
|
+
<h3>Crypto Wallets</h3>
|
|
102
|
+
<p>Protects Bitcoin, Ethereum, Solana wallets. Detects seed phrases, private keys, keystore files, MetaMask/Phantom data.</p>
|
|
103
|
+
</div>
|
|
104
|
+
<div class="feature-card">
|
|
105
|
+
<div class="icon">🏦</div>
|
|
106
|
+
<h3>Banking Data</h3>
|
|
107
|
+
<p>Guards ACH files, SWIFT MT940 statements, BAI files, NACHA payment files, routing numbers, and account data.</p>
|
|
108
|
+
</div>
|
|
109
|
+
<div class="feature-card">
|
|
110
|
+
<div class="icon">📊</div>
|
|
111
|
+
<h3>Accounting Software</h3>
|
|
112
|
+
<p>Protects QuickBooks (.qbw/.qbo), Xero, FreshBooks credentials and data files from unauthorized agent access.</p>
|
|
113
|
+
</div>
|
|
114
|
+
<div class="feature-card">
|
|
115
|
+
<div class="icon">💰</div>
|
|
116
|
+
<h3>Transaction Guardrails</h3>
|
|
117
|
+
<p>Configurable approval thresholds. Dual-approval for high-value transactions. Rate limiting on financial API calls.</p>
|
|
118
|
+
</div>
|
|
119
|
+
<div class="feature-card">
|
|
120
|
+
<div class="icon">📋</div>
|
|
121
|
+
<h3>Compliance Reports</h3>
|
|
122
|
+
<p>SOX and PCI-DSS compliant audit trail generation. Every transaction, every access attempt, every alert — documented.</p>
|
|
123
|
+
</div>
|
|
124
|
+
</div>
|
|
125
|
+
|
|
126
|
+
<h2>Transaction Approval Workflow</h2>
|
|
127
|
+
|
|
128
|
+
<pre><code>// Agent tries to make a $5,000 payment
|
|
129
|
+
const result = guard.evaluateTransaction({
|
|
130
|
+
amount: 5000,
|
|
131
|
+
type: 'transfer',
|
|
132
|
+
recipient: 'vendor@company.com',
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
// result.approved = false
|
|
136
|
+
// result.requiresApproval = true
|
|
137
|
+
// result.reason = "Amount $5,000 exceeds threshold ($1,000)"
|
|
138
|
+
|
|
139
|
+
// Human approves
|
|
140
|
+
guard.approveTransaction(result.transactionId, 'cfo@company.com');
|
|
141
|
+
// ✅ Transaction approved, audit trail logged
|
|
142
|
+
|
|
143
|
+
// For $15K+ transfers: TWO people must approve
|
|
144
|
+
const bigTx = guard.evaluateTransaction({ amount: 15000, type: 'wire' });
|
|
145
|
+
guard.approveTransaction(bigTx.transactionId, 'cfo@company.com');
|
|
146
|
+
// Still pending — needs second approval
|
|
147
|
+
guard.approveTransaction(bigTx.transactionId, 'ceo@company.com');
|
|
148
|
+
// ✅ Now approved</code></pre>
|
|
149
|
+
|
|
150
|
+
<h2>Who Needs This</h2>
|
|
151
|
+
|
|
152
|
+
<div class="who-grid">
|
|
153
|
+
<div class="who-card">
|
|
154
|
+
<div style="font-size:2rem">🏢</div>
|
|
155
|
+
<h3>Fintech Startups</h3>
|
|
156
|
+
<p>Using AI for invoicing, reconciliation, or payment processing</p>
|
|
157
|
+
</div>
|
|
158
|
+
<div class="who-card">
|
|
159
|
+
<div style="font-size:2rem">🪙</div>
|
|
160
|
+
<h3>Crypto Projects</h3>
|
|
161
|
+
<p>AI agents managing wallets, DeFi operations, or trading</p>
|
|
162
|
+
</div>
|
|
163
|
+
<div class="who-card">
|
|
164
|
+
<div style="font-size:2rem">📒</div>
|
|
165
|
+
<h3>Accounting Firms</h3>
|
|
166
|
+
<p>AI assistants with access to client financial data</p>
|
|
167
|
+
</div>
|
|
168
|
+
<div class="who-card">
|
|
169
|
+
<div style="font-size:2rem">👔</div>
|
|
170
|
+
<h3>CFOs & Controllers</h3>
|
|
171
|
+
<p>Automating financial workflows with AI agents</p>
|
|
172
|
+
</div>
|
|
173
|
+
</div>
|
|
174
|
+
|
|
175
|
+
<h2>Secrets It Catches</h2>
|
|
176
|
+
|
|
177
|
+
<ul class="protection-list">
|
|
178
|
+
<li><span class="severity severity-critical">CRITICAL</span> Stripe secret/restricted keys</li>
|
|
179
|
+
<li><span class="severity severity-critical">CRITICAL</span> Plaid access tokens</li>
|
|
180
|
+
<li><span class="severity severity-critical">CRITICAL</span> Bitcoin/Ethereum/Solana private keys</li>
|
|
181
|
+
<li><span class="severity severity-critical">CRITICAL</span> BIP-39 seed phrases</li>
|
|
182
|
+
<li><span class="severity severity-critical">CRITICAL</span> Credit card numbers (Visa/MC/Amex/Discover)</li>
|
|
183
|
+
<li><span class="severity severity-critical">CRITICAL</span> Social Security Numbers</li>
|
|
184
|
+
<li><span class="severity severity-critical">CRITICAL</span> Bank account + routing numbers</li>
|
|
185
|
+
<li><span class="severity severity-critical">CRITICAL</span> IBAN numbers</li>
|
|
186
|
+
<li><span class="severity severity-high">HIGH</span> Stripe publishable keys</li>
|
|
187
|
+
<li><span class="severity severity-high">HIGH</span> SWIFT/BIC codes</li>
|
|
188
|
+
<li><span class="severity severity-high">HIGH</span> EIN (Employer ID Numbers)</li>
|
|
189
|
+
<li><span class="severity severity-high">HIGH</span> Square API keys</li>
|
|
190
|
+
</ul>
|
|
191
|
+
|
|
192
|
+
<div id="pricing" class="pricing">
|
|
193
|
+
<h3>ClawMoat Finance</h3>
|
|
194
|
+
<p style="color:var(--muted)">Included in ClawMoat Pro</p>
|
|
195
|
+
<div class="price">$14.99<span>/mo</span></div>
|
|
196
|
+
<ul>
|
|
197
|
+
<li>All FinanceGuard features</li>
|
|
198
|
+
<li>30+ financial forbidden zones</li>
|
|
199
|
+
<li>Transaction approval workflows</li>
|
|
200
|
+
<li>Dual-approval for high-value ops</li>
|
|
201
|
+
<li>SOX & PCI-DSS audit reports</li>
|
|
202
|
+
<li>15 financial API monitors</li>
|
|
203
|
+
<li>Real-time alerts (Slack/Discord/email)</li>
|
|
204
|
+
<li>Priority support</li>
|
|
205
|
+
</ul>
|
|
206
|
+
<a href="/#pricing" class="cta">Start Free Trial</a>
|
|
207
|
+
<p style="margin-top:1rem;color:var(--muted);font-size:.85rem">Open-source core available free. Pro adds threat intel, persistent audit, and dashboard.</p>
|
|
208
|
+
</div>
|
|
209
|
+
|
|
210
|
+
<div style="text-align:center;padding:2rem 0">
|
|
211
|
+
<p style="color:var(--muted)">Part of the ClawMoat security suite — 240 tests, zero dependencies, MIT license.</p>
|
|
212
|
+
<a href="https://github.com/darfaz/clawmoat" class="cta-outline">View on GitHub</a>
|
|
213
|
+
</div>
|
|
214
|
+
|
|
215
|
+
</div>
|
|
216
|
+
</body>
|
|
217
|
+
</html>
|