openclawsec 1.0.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/.github/ISSUE_TEMPLATE/bug-report.md +42 -0
- package/.github/ISSUE_TEMPLATE/feature-request.md +23 -0
- package/.github/workflows/ci.yml +41 -0
- package/CONTRIBUTING.md +28 -0
- package/LICENSE +21 -0
- package/README.md +175 -0
- package/clawshield-web/index.html +344 -0
- package/cli.js +184 -0
- package/package.json +33 -0
- package/src/checks/configHarden.js +210 -0
- package/src/checks/cve.js +115 -0
- package/src/checks/secretsCheck.js +192 -0
- package/src/checks/skillAudit.js +204 -0
- package/src/checks/version.js +114 -0
- package/src/commands/audit.js +59 -0
- package/src/commands/doctor.js +85 -0
- package/src/commands/monitor.js +175 -0
- package/src/commands/scan.js +144 -0
- package/src/utils/output.js +171 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
name: Bug Report
|
|
2
|
+
about: Report a bug in ClawShield
|
|
3
|
+
title: '[BUG] '
|
|
4
|
+
labels: bug
|
|
5
|
+
assignees: ''
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Description
|
|
10
|
+
|
|
11
|
+
Describe the bug clearly.
|
|
12
|
+
|
|
13
|
+
## Steps to Reproduce
|
|
14
|
+
|
|
15
|
+
1.
|
|
16
|
+
2.
|
|
17
|
+
3.
|
|
18
|
+
|
|
19
|
+
## Expected Behavior
|
|
20
|
+
|
|
21
|
+
What should happen.
|
|
22
|
+
|
|
23
|
+
## Actual Behavior
|
|
24
|
+
|
|
25
|
+
What happens instead.
|
|
26
|
+
|
|
27
|
+
## Environment
|
|
28
|
+
|
|
29
|
+
- OS:
|
|
30
|
+
- Node.js version:
|
|
31
|
+
- ClawShield version:
|
|
32
|
+
- OpenClaw installed: Yes/No
|
|
33
|
+
|
|
34
|
+
## Output
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
[Paste relevant output here]
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Additional Context
|
|
41
|
+
|
|
42
|
+
Any other information about the problem.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Feature Request
|
|
2
|
+
about: Suggest a new feature for ClawShield
|
|
3
|
+
title: '[FEATURE] '
|
|
4
|
+
labels: enhancement
|
|
5
|
+
assignees: ''
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Problem
|
|
10
|
+
|
|
11
|
+
Describe the problem you're solving.
|
|
12
|
+
|
|
13
|
+
## Proposed Solution
|
|
14
|
+
|
|
15
|
+
Describe your proposed solution.
|
|
16
|
+
|
|
17
|
+
## Alternatives Considered
|
|
18
|
+
|
|
19
|
+
Describe any alternative solutions considered.
|
|
20
|
+
|
|
21
|
+
## Additional Context
|
|
22
|
+
|
|
23
|
+
Any other context or screenshots.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main, master]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [main, master]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
|
|
13
|
+
strategy:
|
|
14
|
+
matrix:
|
|
15
|
+
node-version: [18.x, 20.x, 22.x]
|
|
16
|
+
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/checkout@v4
|
|
19
|
+
|
|
20
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
21
|
+
uses: actions/setup-node@v4
|
|
22
|
+
with:
|
|
23
|
+
node-version: ${{ matrix.node-version }}
|
|
24
|
+
cache: 'npm'
|
|
25
|
+
|
|
26
|
+
- name: Install dependencies
|
|
27
|
+
run: npm ci
|
|
28
|
+
|
|
29
|
+
- name: Run linter
|
|
30
|
+
run: npm run lint
|
|
31
|
+
continue-on-error: true
|
|
32
|
+
|
|
33
|
+
- name: Run tests
|
|
34
|
+
run: npm test
|
|
35
|
+
continue-on-error: true
|
|
36
|
+
|
|
37
|
+
- name: Test CLI help
|
|
38
|
+
run: node cli.js help
|
|
39
|
+
|
|
40
|
+
- name: Test doctor command
|
|
41
|
+
run: node cli.js doctor
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Contributing to ClawShield
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing!
|
|
4
|
+
|
|
5
|
+
## How to Contribute
|
|
6
|
+
|
|
7
|
+
1. **Fork the repository**
|
|
8
|
+
2. **Create a feature branch**: `git checkout -b my-feature`
|
|
9
|
+
3. **Make your changes** and test them
|
|
10
|
+
4. **Commit your changes**: `git commit -m "Add something cool"`
|
|
11
|
+
5. **Push to your fork**: `git push origin my-feature`
|
|
12
|
+
6. **Open a Pull Request**
|
|
13
|
+
|
|
14
|
+
## Coding Standards
|
|
15
|
+
|
|
16
|
+
- Use clear, descriptive variable names
|
|
17
|
+
- Add comments for complex logic
|
|
18
|
+
- Test your changes before submitting
|
|
19
|
+
- Keep functions small and focused
|
|
20
|
+
|
|
21
|
+
## Reporting Issues
|
|
22
|
+
|
|
23
|
+
- Use GitHub Issues to report bugs or request features
|
|
24
|
+
- Include details like your OS, Node version, and steps to reproduce
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
By contributing, you agree that your contributions will be licensed under the MIT License.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ClawShield
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# OpenClawSec
|
|
2
|
+
|
|
3
|
+
**OpenClaw Security Monitoring & Hardening Tool**
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
OpenClawSec is a security monitoring tool for OpenClaw deployments. It scans for vulnerabilities, audits installed skills for malware patterns, checks CVE databases, and provides actionable hardening recommendations โ all from a simple CLI.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Features
|
|
14
|
+
|
|
15
|
+
- **Version Check** โ Compare your OpenClaw version against the latest release
|
|
16
|
+
- **CVE Scanner** โ Check against 60+ known OpenClaw vulnerabilities
|
|
17
|
+
- **Gateway Exposure Check** โ Detect if your gateway is exposed to the network
|
|
18
|
+
- **Skill Audit** โ Scan installed skills for malware patterns (ClawHavoc, AMOS stealer, etc.)
|
|
19
|
+
- **Secrets Scanner** โ Detect exposed API keys and credentials
|
|
20
|
+
- **Config Hardening** โ Analyze your openclaw.json for security issues
|
|
21
|
+
- **Continuous Monitoring** โ Run background monitoring with alerts
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Installation
|
|
26
|
+
|
|
27
|
+
### Prerequisites
|
|
28
|
+
|
|
29
|
+
- Node.js 18 or higher
|
|
30
|
+
- npm or pnpm
|
|
31
|
+
|
|
32
|
+
### Quick Install
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm install -g openclawsec
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Or run directly with npx
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npx openclawsec scan
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Usage
|
|
47
|
+
|
|
48
|
+
### Full Security Scan
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
openclawsec scan
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Runs a comprehensive security scan including:
|
|
55
|
+
- OpenClaw version check
|
|
56
|
+
- CVE vulnerability detection
|
|
57
|
+
- Gateway exposure analysis
|
|
58
|
+
- Skill malware scanning
|
|
59
|
+
- Secrets audit
|
|
60
|
+
|
|
61
|
+
### Quick Health Check
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
openclawsec doctor
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Fast diagnostic check for basic security issues.
|
|
68
|
+
|
|
69
|
+
### Skill & Secrets Audit
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
openclawsec audit
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Specifically audits installed skills for malicious patterns and checks for exposed secrets.
|
|
76
|
+
|
|
77
|
+
### Continuous Monitoring
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
openclawsec monitor
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
Run continuous background monitoring (checks every 60 minutes by default).
|
|
84
|
+
|
|
85
|
+
Custom interval:
|
|
86
|
+
```bash
|
|
87
|
+
openclawsec monitor --30 # Every 30 minutes
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Check Monitoring Status
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
openclawsec status
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### Show Help
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
openclawsec help
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## Output Example
|
|
105
|
+
|
|
106
|
+
```
|
|
107
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
108
|
+
โ OPENCLAWSEC SECURITY REPORT โ
|
|
109
|
+
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
|
|
110
|
+
โ OpenClaw Version: 2026.4.22 โ
|
|
111
|
+
โ Latest Version: 2026.5.4 โ ๏ธ OUTDATED โ
|
|
112
|
+
โ Security Score: 68/100 โ
|
|
113
|
+
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ
|
|
114
|
+
โ ๐ด CRITICAL (3) โ
|
|
115
|
+
โ ๐ก WARNING (2) โ
|
|
116
|
+
โ ๐ข PASSED (5) โ
|
|
117
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Security Checks
|
|
123
|
+
|
|
124
|
+
### CVE Coverage
|
|
125
|
+
|
|
126
|
+
Detects all major OpenClaw CVEs including:
|
|
127
|
+
- CVE-2026-25253 (CVSS 8.8) โ WebSocket token exfiltration
|
|
128
|
+
- CVE-2026-24763 (CVSS 8.8) โ Docker sandbox bypass
|
|
129
|
+
- CVE-2026-33579 (CVSS 8.1) โ Privilege escalation
|
|
130
|
+
- CVE-2026-28446 (CVSS 9.8) โ Voice RCE
|
|
131
|
+
- CVE-2026-44113 (CVSS 8.3) โ TOCTOU race condition
|
|
132
|
+
|
|
133
|
+
### Malicious Pattern Detection
|
|
134
|
+
|
|
135
|
+
ClawShield scans for:
|
|
136
|
+
- ClawHavoc malware indicators
|
|
137
|
+
- Base64 encoded payloads
|
|
138
|
+
- C2 server connections
|
|
139
|
+
- Credential harvesting patterns
|
|
140
|
+
- AMOS stealer references
|
|
141
|
+
- Suspicious tunnel services (bore.pub, localhost.run)
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Free & Open Source
|
|
146
|
+
|
|
147
|
+
ClawShield is completely free to use. No paid tiers, no hidden fees.
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## Support
|
|
152
|
+
|
|
153
|
+
## Contributing
|
|
154
|
+
|
|
155
|
+
Contributions are welcome! Please read the contributing guidelines and submit PRs.
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## License
|
|
160
|
+
|
|
161
|
+
MIT License โ see LICENSE file for details.
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
## Links
|
|
166
|
+
|
|
167
|
+
- [GitHub](https://github.com/clawshield/clawshield)
|
|
168
|
+
- [ClawHub](https://clawhub.ai/clawshield)
|
|
169
|
+
- [OpenClaw](https://openclaw.ai)
|
|
170
|
+
- [Report Issues](https://github.com/clawshield/clawshield/issues)
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
**Made with โค๏ธ for the OpenClaw community**
|
|
175
|
+
**Don't run insecure AI agents โ ClawShield them.**
|
|
@@ -0,0 +1,344 @@
|
|
|
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>ClawShield โ OpenClaw Security Monitor</title>
|
|
7
|
+
<style>
|
|
8
|
+
* {
|
|
9
|
+
margin: 0;
|
|
10
|
+
padding: 0;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
16
|
+
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
|
|
17
|
+
color: #ffffff;
|
|
18
|
+
min-height: 100vh;
|
|
19
|
+
padding: 20px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.container {
|
|
23
|
+
max-width: 1200px;
|
|
24
|
+
margin: 0 auto;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
header {
|
|
28
|
+
text-align: center;
|
|
29
|
+
padding: 40px 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.logo {
|
|
33
|
+
font-size: 48px;
|
|
34
|
+
margin-bottom: 10px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
h1 {
|
|
38
|
+
font-size: 32px;
|
|
39
|
+
color: #00d4ff;
|
|
40
|
+
margin-bottom: 10px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.subtitle {
|
|
44
|
+
color: #888;
|
|
45
|
+
font-size: 16px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.hero {
|
|
49
|
+
background: rgba(255, 255, 255, 0.05);
|
|
50
|
+
border-radius: 20px;
|
|
51
|
+
padding: 40px;
|
|
52
|
+
text-align: center;
|
|
53
|
+
margin-bottom: 30px;
|
|
54
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.hero h2 {
|
|
58
|
+
font-size: 24px;
|
|
59
|
+
margin-bottom: 20px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.terminal-preview {
|
|
63
|
+
background: #0d0d0d;
|
|
64
|
+
border-radius: 10px;
|
|
65
|
+
padding: 20px;
|
|
66
|
+
font-family: 'Courier New', monospace;
|
|
67
|
+
text-align: left;
|
|
68
|
+
margin: 20px auto;
|
|
69
|
+
max-width: 600px;
|
|
70
|
+
overflow: hidden;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.terminal-preview .line {
|
|
74
|
+
color: #00d4ff;
|
|
75
|
+
margin-bottom: 5px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.terminal-preview .green {
|
|
79
|
+
color: #00ff88;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.terminal-preview .yellow {
|
|
83
|
+
color: #ffcc00;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.terminal-preview .red {
|
|
87
|
+
color: #ff4444;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.cta-buttons {
|
|
91
|
+
display: flex;
|
|
92
|
+
gap: 15px;
|
|
93
|
+
justify-content: center;
|
|
94
|
+
margin-top: 30px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.btn {
|
|
98
|
+
padding: 15px 30px;
|
|
99
|
+
border-radius: 10px;
|
|
100
|
+
font-size: 16px;
|
|
101
|
+
font-weight: 600;
|
|
102
|
+
text-decoration: none;
|
|
103
|
+
transition: all 0.3s;
|
|
104
|
+
cursor: pointer;
|
|
105
|
+
border: none;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.btn-primary {
|
|
109
|
+
background: #00d4ff;
|
|
110
|
+
color: #0a0a0a;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.btn-primary:hover {
|
|
114
|
+
background: #00b8e6;
|
|
115
|
+
transform: translateY(-2px);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.btn-secondary {
|
|
119
|
+
background: transparent;
|
|
120
|
+
color: #00d4ff;
|
|
121
|
+
border: 2px solid #00d4ff;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.btn-secondary:hover {
|
|
125
|
+
background: rgba(0, 212, 255, 0.1);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.features {
|
|
129
|
+
display: grid;
|
|
130
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
131
|
+
gap: 20px;
|
|
132
|
+
margin: 40px 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.feature-card {
|
|
136
|
+
background: rgba(255, 255, 255, 0.05);
|
|
137
|
+
border-radius: 15px;
|
|
138
|
+
padding: 30px;
|
|
139
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.feature-icon {
|
|
143
|
+
font-size: 40px;
|
|
144
|
+
margin-bottom: 15px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.feature-card h3 {
|
|
148
|
+
color: #00d4ff;
|
|
149
|
+
margin-bottom: 10px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.feature-card p {
|
|
153
|
+
color: #888;
|
|
154
|
+
line-height: 1.6;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.pricing {
|
|
158
|
+
background: rgba(255, 255, 255, 0.05);
|
|
159
|
+
border-radius: 20px;
|
|
160
|
+
padding: 40px;
|
|
161
|
+
margin: 40px 0;
|
|
162
|
+
text-align: center;
|
|
163
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.pricing h2 {
|
|
167
|
+
font-size: 28px;
|
|
168
|
+
margin-bottom: 30px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.pricing-grid {
|
|
172
|
+
display: grid;
|
|
173
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
174
|
+
gap: 20px;
|
|
175
|
+
margin-top: 30px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.price-card {
|
|
179
|
+
background: rgba(255, 255, 255, 0.05);
|
|
180
|
+
border-radius: 15px;
|
|
181
|
+
padding: 30px;
|
|
182
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.price-card.featured {
|
|
186
|
+
border-color: #00d4ff;
|
|
187
|
+
transform: scale(1.05);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.price-card h3 {
|
|
191
|
+
font-size: 20px;
|
|
192
|
+
margin-bottom: 10px;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.price {
|
|
196
|
+
font-size: 48px;
|
|
197
|
+
font-weight: 700;
|
|
198
|
+
color: #00d4ff;
|
|
199
|
+
margin: 20px 0;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.price span {
|
|
203
|
+
font-size: 16px;
|
|
204
|
+
color: #888;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.price-features {
|
|
208
|
+
list-style: none;
|
|
209
|
+
text-align: left;
|
|
210
|
+
margin: 20px 0;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.price-features li {
|
|
214
|
+
padding: 10px 0;
|
|
215
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.price-features li::before {
|
|
219
|
+
content: 'โ';
|
|
220
|
+
color: #00ff88;
|
|
221
|
+
margin-right: 10px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
footer {
|
|
225
|
+
text-align: center;
|
|
226
|
+
padding: 40px 0;
|
|
227
|
+
color: #666;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
footer a {
|
|
231
|
+
color: #00d4ff;
|
|
232
|
+
text-decoration: none;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
@media (max-width: 768px) {
|
|
236
|
+
.cta-buttons {
|
|
237
|
+
flex-direction: column;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.btn {
|
|
241
|
+
width: 100%;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
</style>
|
|
245
|
+
</head>
|
|
246
|
+
<body>
|
|
247
|
+
<div class="container">
|
|
248
|
+
<header>
|
|
249
|
+
<div class="logo">๐ก๏ธ</div>
|
|
250
|
+
<h1>ClawShield</h1>
|
|
251
|
+
<p class="subtitle">OpenClaw Security Monitoring & Hardening Tool</p>
|
|
252
|
+
</header>
|
|
253
|
+
|
|
254
|
+
<div class="hero">
|
|
255
|
+
<h2>Secure Your AI Agents</h2>
|
|
256
|
+
<p style="color: #888; margin-bottom: 20px;">
|
|
257
|
+
ClawShield scans your OpenClaw deployment for vulnerabilities,
|
|
258
|
+
detects malware skills, and provides actionable hardening recommendations.
|
|
259
|
+
</p>
|
|
260
|
+
|
|
261
|
+
<div class="terminal-preview">
|
|
262
|
+
<div class="line">โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ</div>
|
|
263
|
+
<div class="line">โ CLAWSHIELD SECURITY REPORT โ</div>
|
|
264
|
+
<div class="line">โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ</div>
|
|
265
|
+
<div class="line">โ OpenClaw Version: <span class="green">2026.5.4</span> โ</div>
|
|
266
|
+
<div class="line">โ Security Score: <span class="yellow">85/100</span> โ</div>
|
|
267
|
+
<div class="line">โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃ</div>
|
|
268
|
+
<div class="line">โ ๐ด Critical: 2 ๐ก Warnings: 3 โ</div>
|
|
269
|
+
<div class="line">โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ</div>
|
|
270
|
+
</div>
|
|
271
|
+
|
|
272
|
+
<div class="cta-buttons">
|
|
273
|
+
<a href="https://github.com/clawshield/clawshield" class="btn btn-primary">
|
|
274
|
+
Get Started Free
|
|
275
|
+
</a>
|
|
276
|
+
<a href="#pricing" class="btn btn-secondary">
|
|
277
|
+
View Pro Plans
|
|
278
|
+
</a>
|
|
279
|
+
</div>
|
|
280
|
+
</div>
|
|
281
|
+
|
|
282
|
+
<div class="features">
|
|
283
|
+
<div class="feature-card">
|
|
284
|
+
<div class="feature-icon">๐</div>
|
|
285
|
+
<h3>CVE Scanner</h3>
|
|
286
|
+
<p>Checks against 60+ known OpenClaw vulnerabilities including CVE-2026-25253, CVE-2026-24763, and more.</p>
|
|
287
|
+
</div>
|
|
288
|
+
|
|
289
|
+
<div class="feature-card">
|
|
290
|
+
<div class="feature-icon">๐ฆ</div>
|
|
291
|
+
<h3>Skill Audit</h3>
|
|
292
|
+
<p>Detects malicious skills including ClawHavoc malware, AMOS stealer patterns, and credential harvesting.</p>
|
|
293
|
+
</div>
|
|
294
|
+
|
|
295
|
+
<div class="feature-card">
|
|
296
|
+
<div class="feature-icon">๐</div>
|
|
297
|
+
<h3>Config Hardening</h3>
|
|
298
|
+
<p>Analyzes your openclaw.json for security issues like exposed gateway ports and missing tokens.</p>
|
|
299
|
+
</div>
|
|
300
|
+
|
|
301
|
+
<div class="feature-card">
|
|
302
|
+
<div class="feature-icon">๐๏ธ</div>
|
|
303
|
+
<h3>Secret Scanner</h3>
|
|
304
|
+
<p>Finds exposed API keys and credentials in your workspace before attackers do.</p>
|
|
305
|
+
</div>
|
|
306
|
+
|
|
307
|
+
<div class="feature-card">
|
|
308
|
+
<div class="feature-icon">๐</div>
|
|
309
|
+
<h3>Security Score</h3>
|
|
310
|
+
<p>Get an instant security score (0-100) with actionable recommendations to improve your posture.</p>
|
|
311
|
+
</div>
|
|
312
|
+
|
|
313
|
+
<div class="feature-card">
|
|
314
|
+
<div class="feature-icon">โฐ</div>
|
|
315
|
+
<h3>Continuous Monitoring</h3>
|
|
316
|
+
<p>Run background monitoring with Discord/Slack alerts when new vulnerabilities are discovered.</p>
|
|
317
|
+
</div>
|
|
318
|
+
</div>
|
|
319
|
+
|
|
320
|
+
<div class="pricing">
|
|
321
|
+
<h2>100% Free & Open Source</h2>
|
|
322
|
+
<p style="color: #888;">No paid tiers. No hidden fees. Completely free forever.</p>
|
|
323
|
+
|
|
324
|
+
<div class="cta-buttons">
|
|
325
|
+
<a href="https://github.com/clawshield/clawshield" class="btn btn-primary">
|
|
326
|
+
Get Started Free
|
|
327
|
+
</a>
|
|
328
|
+
</div>
|
|
329
|
+
</div>
|
|
330
|
+
|
|
331
|
+
<footer>
|
|
332
|
+
<p>ClawShield โ Don't run insecure AI agents. ๐ก๏ธ them.</p>
|
|
333
|
+
<p style="margin-top: 10px;">
|
|
334
|
+
<a href="https://github.com/clawshield/clawshield">GitHub</a> ยท
|
|
335
|
+
<a href="https://discord.gg/openclaw">Discord</a> ยท
|
|
336
|
+
<a href="https://clawhub.ai/clawshield">ClawHub</a>
|
|
337
|
+
</p>
|
|
338
|
+
<p style="margin-top: 20px; font-size: 12px;">
|
|
339
|
+
Made with โค๏ธ for the OpenClaw community
|
|
340
|
+
</p>
|
|
341
|
+
</footer>
|
|
342
|
+
</div>
|
|
343
|
+
</body>
|
|
344
|
+
</html>
|