Cybersec

Security audit toolkit for the ccboard project (Rust/Leptos/Axum stack). Use when auditing authentication flows, API endpoints, WASM security, or reviewing Rust code for unsafe usage and memory safety issues.

FlorianBruniaux Updated

File contents

Cybersec Skills — ccboard

Security audit toolkit for the ccboard Rust/Leptos stack.

Reference files in this directory

These files are reference documentation for security test patterns. Update them to reflect ccboard's actual Axum routes, auth flows, and data model.

Key security areas for ccboard

  • Authentication: session tokens, CSRF protection in Leptos forms
  • Authorization: route-level guards in Axum middleware
  • WASM: client-side code exposure, sensitive data in WASM binary
  • SQL: raw query usage, input sanitization
  • Dependency audit: cargo audit for known CVEs in dependencies

Usage

cargo audit                         # CVE scan
grep -r "unsafe" src/               # unsafe block audit
grep -r "unwrap()" src/ | wc -l    # panic surface audit

FlorianBruniaux/ccboard/tree/main/.claude/skills/cybersec commit 6a48029fc9

Frequently asked questions

npx skillmds@latest add florianbruniaux-ccboard/cybersec