Install
openclaw skills install security-audit-assistantConducts lightweight security baseline audits on OpenClaw-managed servers, identifies high-risk SSH/firewall issues, and provides one-click fixes plus compli...
openclaw skills install security-audit-assistantType: System Health & Security
Audience: DevOps, Sysadmins, Small Business Owners
Price: $29/month (ClawHub)
Tags: security, compliance, audit, ssh, firewall, cis
Small teams and solopreneurs often run servers without dedicated security staff. They:
This skill runs a lightweight security baseline audit on any OpenClaw-managed node, generates a human-readable report, and provides one-click fix commands.
# Run full audit on all managed nodes
openclaw skill run security-audit-assistant --all
# Run audit on specific node
openclaw skill run security-audit-assistant --node my-server
# JSON output for integration
openclaw skill run security-audit-assistant --format json
# Schedule weekly audit (via OpenClaw cron)
openclaw cron add --expr "0 2 * * 0" "openclaw skill run security-audit-assistant --all"
| Category | Checks | Risk Level |
|---|---|---|
| SSH | Password auth disabled, root login disabled, protocol 2 only | High |
| Firewall | UFW/iptables enabled, default deny, necessary ports open | High |
| Updates | Security updates available, last update < 30 days | Medium |
| Passwords | Password aging enabled, no default accounts | Medium |
| Services | Unnecessary services disabled (telnet, vsftpd) | Low |
| Logging | Auditd/rsyslog enabled and rotating | Medium |
| File Permissions | /etc/passwd, /etc/shadow correct perms | High |
Total checks: ~20 per node
🔍 Security Audit Report - server-01 (2026-03-26)
✅ PASS: 12 checks
⚠️ WARN: 4 checks
❌ FAIL: 3 checks
❌ HIGH RISK:
1. SSH password authentication is ENABLED
Fix: sudo sed -i 's/PasswordAuthentication yes/no/' /etc/ssh/sshd_config && sudo systemctl restart sshd
⚠️ MEDIUM:
2. Security updates available (5 packages)
Fix: sudo apt update && sudo apt upgrade -y
✅ All checks completed in 8 seconds.
scripts/audit.js (~150 lines, Node.js)references/cis-benchmark-summary.mdFirst 7 days free. No credit card required.