360Guard
360-degree comprehensive security review Skill. Use before installing any Skill from ClawHub, GitHub, or other sources. Performs full security scans including all Skill Vetter checks plus extended system/privacy/behavior checks and automated scanning scripts. Supports static analysis, behavior detection, dependency auditing.
What this skill does
# 360Guard ๐ก๏ธ
> 360-degree comprehensive security review โ Like antivirus for your Skills
## 1. When to Use
- Before installing any Skill from ClawHub
- Before installing any Skill from GitHub or other sources
- When evaluating code shared by other Agents
- Any time you're asked to install unknown code
- Periodic audit of installed Skills (recommended monthly)
- Before running high-risk Skills for second verification
## 2. Core Principles
```
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๐ Security Layer Priority โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ โ EXTREME โ Absolutely refuse to install โ
โ ๐ด HIGH โ Requires human approval โ
โ ๐ก MEDIUM โ Full code review + limited permissions โ
โ ๐ข LOW โ Basic review OK โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
```
## 3. Security Checklist
### 3.1 Base Red Flags (from Skill Vetter)
```
๐จ Reject immediately if you see:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โข curl/wget to unknown URLs
โข Sends data to external servers
โข Requests credentials/tokens/API keys
โข Reads ~/.ssh, ~/.aws, ~/.config without clear reason
โข Accesses MEMORY.md, USER.md, SOUL.md, IDENTITY.md
โข Uses base64 decode on anything
โข Uses eval() or exec() with external input
โข Modifies system files outside workspace
โข Installs packages without listing them
โข Network calls to IPs instead of domains
โข Obfuscated code (compressed, encoded, minified)
โข Requests elevated/sudo permissions
โข Accesses browser cookies/sessions
โข Touches credential files
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
```
### 3.2 Extended Red Flags (New)
#### 3.2.1 Persistence & Auto-start
```
๐ด Persistence check:
โข Creates cron job / systemd service
โข Modifies ~/.ssh/authorized_keys
โข Writes to /etc/hosts
โข Adds Login Items / Startup Items
โข Modifies .bashrc / .zshrc / profile
โข Registers LaunchAgent (macOS)
โข Installs systemd user service
```
#### 3.2.2 Monitoring & Eavesdropping
```
๐ด Monitoring permissions check:
โข Requests screen capture/recording (screencapture)
โข Requests audio recording permission
โข Keyloggers
โข Accesses microphone/camera
โข File system monitoring (fswatch/inotify)
```
#### 3.2.3 Data & Privacy
```
๐ด Data theft check:
โข Reads clipboard (pbpaste)
โข Reads environment variables (especially API_, SECRET, TOKEN)
โข Accesses browser history/bookmarks
โข Accesses macOS Keychain
โข Accesses iMessage/SMS
โข Accesses contacts/calendar
โข Accesses photo library
```
#### 3.2.4 Network & Communication
```
๐ด Network anomaly check:
โข Initiates reverse shell (nc -e / bash -i)
โข Uses Tor proxy
โข DNS queries to suspicious domains
โข WebSocket long connections
โข IRC connections
โข Non-standard ports (>65535 or <1024 unusual)
โข Hardcoded IP addresses (non-local)
```
#### 3.2.5 Code Execution (Advanced)
```
๐ด Dynamic execution check:
โข Dynamic import (importlib.import_module)
โข __import__() dynamic loading
โข compile() dynamic compilation
โข xmlrpc / jsonrpc remote calls
โข pickle / yaml / marshal deserialization
โข exec() / eval() any string
โข subprocess shell=True
```
#### 3.2.6 File System
```
๐ก File operation check:
โข Writes to executable paths outside /tmp
โข Modifies /usr/local/bin
โข Writes .dmg/.pkg installers
โข Creates .hidden files/directories
โข File permission modification (chmod +x)
โข Symbolic links (pointing external)
โข Contains binary files (.so/.dylib/.exe/.bin)
```
#### 3.2.7 Dependencies & Supply Chain
```
๐ก Supply chain check:
โข Dependency version range too wide (>1.0.0 not ^1.0.0)
โข Dependencies from private/unknown sources
โข Dependencies on deprecated packages
โข Silent additional dependency downloads
โข References other unvetted Skills
โข Uses git submodule (may point to malicious repo)
```
#### 3.2.8 Social Engineering
```
๐ก Social engineering check:
โข Mimics popular Skill names (e.g., "github", "weather-ai")
โข README overpromises ("one-click to do everything...")
โข No source code, only compiled binaries
โข Author has no history
โข Downloads vs stars ratio suspicious (fake reviews)
```
---
## 4. Risk Classification
| Risk Level | Example Checks | Action |
|------------|----------------|--------|
| ๐ข LOW | Text processing, weather, note formatting | Basic review, OK to install |
| ๐ก MEDIUM | File I/O, browser control, API calls | Full review + limited permissions |
| ๐ด HIGH | Credential access, Keychain, network requests | Human approval + sandbox test |
| โ EXTREME | Persistence, root access, keylogging, reverse shell | **Refuse** |
---
## 5. Trust Hierarchy
| Source | Review Level | Recommendation |
|--------|--------------|----------------|
| Official OpenClaw Skills | Low (still review) | Basic check |
| High-star Repo (1000+) | Medium | Standard check |
| Known Authors | Medium | Standard check |
| Unknown Sources | High | Full check |
| Requests credentials | Extreme | **Refuse** |
| Modifies system files | Extreme | **Refuse** |
---
## 6. Automated Scanning Scripts
### 6.1 Quick Scan (quick-scan.sh)
```bash
#!/bin/bash
# Usage: ./quick-scan.sh /path/to/skill
# Output: Quick risk assessment report
SKILL_PATH=$1
echo "๐ 360Guard Quick Scan: $SKILL_PATH"
echo "================================"
# Check dangerous functions
echo -e "\n๐ก Network request check:"
grep -r "curl\|wget\|fetch\|http\.\|https\.\|socket" "$SKILL_PATH" --include="*.sh" --include="*.js" --include="*.py" | head -5
# Check sensitive file access
echo -e "\n๐ Sensitive path check:"
grep -r "~/.ssh\|~/.aws\|~/.config\|/etc/hosts\|authorized_keys" "$SKILL_PATH" --include="*.sh" --include="*.js" --include="*.py"
# Check dangerous commands
echo -e "\nโ ๏ธ Dangerous command check:"
grep -r "eval\|exec\|shell=True\|base64 -d\|openssl" "$SKILL_PATH" --include="*.sh" --include="*.js" --include="*.py"
echo -e "\nโ
Quick scan complete"
```
### 6.2 Full Scan (full-scan.sh)
```bash
#!/bin/bash
# Usage: ./full-scan.sh /path/to/skill
# Output: Complete security assessment report
SKILL_PATH=$1
REPORT="$SKILL_PATH/360guard-report.txt"
echo "๐ก๏ธ 360Guard Full Scan: $SKILL_PATH" | tee "$REPORT"
echo "========================================" | tee -a "$REPORT"
# 1. File structure check
echo -e "\n๐ File structure:" | tee -a "$REPORT"
find "$SKILL_PATH" -type f | head -20 | tee -a "$REPORT"
# 2. Dangerous function scan
echo -e "\nโ ๏ธ Dangerous function scan:" | tee -a "$REPORT"
for pattern in "eval(" "exec(" "shell=True" "base64" "subprocess" "importlib" "__import__" "pickle" "yaml.load" "xmlrpc" "socket.create_connection"; do
result=$(grep -r "$pattern" "$SKILL_PATH" --include="*.sh" --include="*.js" --include="*.py" 2>/dev/null)
if [ -n "$result" ]; then
echo " โ Found: $pattern" | tee -a "$REPORT"
echo "$result" | head -3 | tee -a "$REPORT"
fi
done
# 3. Sensitive path scan
echo -e "\n๐ Sensitive path scan:" | tee -a "$REPORT"
for pattern in "~/.ssh" "~/.aws" "~/.config" "/etc/hosts" "authorized_keys" "keychain" "credentials" ".env"; do
result=$(grep -r "$pattern" "$SKILL_PATH" --include="*.sh" --include="*.js" --include="*.py" 2>/dev/null)
if [ -n "$result" ]; then
echo " โ ๏ธ Warning: $pattern" | tee -a "$REPORT"
fi
done
# 4. Network request scan
echo -e "\n๐ Network request scan:" | tee -a "$REPORT"
grep -r "http://\|https://\|wget\|curl\|fetch" "$SKILL_PATH" --include="*.sh" --include="*.js" --include="*.py" | grep -v "^#" | head -10 | tee -a "$REPORT"
# 5. Persistence check
echo -e "\nโฐ Persistence check:" | tee -a "$REPORT"
for pattern in "cron" "systemd" "launchd" "login item" "startup" "autostart"; do
result=$(grep -ri "$pattern" "$SKILL_PATH" --include="*.sh" --include="*.js" --include="*.py" 2>/dev/null)
if [ -n "$result" ]; then
echo " ๐ด High risk: $pattern" | tee -a "$REPORT"
fi
done
# 6. Dependency check
echo -e "\n๐ฆ Dependency check:" | tee -a "$REPORT"
if [ -f "$SKILL_PATHRelated in Security
mac-ops
IncludedComprehensive macOS workstation operations โ diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.