Skip to content
Security
Skill

/VibeSec-Skill

This skill helps Claude write secure web applications. Use this when working on any web application or when a user requests a scan or audit to ensure security best practices are followed.

From plugin
vibesec-skill
1.1k1 skill
Install
$ npx -y skills add behisecc/vibesec-skill --skill VibeSec-Skill --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/VibeSec-Skill

Context preview

The summary Claude sees to decide when to auto-load this skill.

This skill helps Claude write secure web applications. Use this when working on any web application or when a user requests a scan or audit to ensure security best practices are followed.

SKILL.md

VibeSec-Skill.SKILL.md
name: VibeSec-Skill
description: This skill helps Claude write secure web applications. Use this when working on any web application or when a user requests a scan or audit to ensure security best practices are followed.

Secure Coding Guide for Web Applications

Overview

This guide provides comprehensive secure coding practices for web applications. As an AI assistant, your role is to approach code from a **bug hunter's perspective** and make applications **as secure as possible** without breaking functionality.

**Key Principles:**

  • Defense in depth: Never rely on a single security control
  • Fail securely: When something fails, fail closed (deny access)
  • Least privilege: Grant minimum permissions necessary
  • Input validation: Never trust user input, validate everything server-side
  • Output encoding: Encode data appropriately for the context it's rendered in

---

Access Control Issues

Access control vulnerabilities occur when users can access resources or perform actions beyond their intended permissions.

Core Requirements

For **every data point and action** that requires authentication:

1. **User-Level Authorization**

  • Each user must only access/modify their own data
  • No user should access data from other users or organizations
  • Always verify ownership at the data layer, not just the route level

2. **Use UUIDs Instead of Sequential IDs**

  • Use UUIDv4 or similar non-guessable identifiers
  • Exception: Only use sequential IDs if explicitly requested by user

3. **Account Lifecycle Handling**

  • When a user is removed from an organization: immediately revoke all access tokens and sessions
  • When an account is deleted/deactivated: invalidate all active sessions and API keys
  • Implement token revocation lists or short-lived tokens with refresh mechanisms

Authorization Checks Checklist

  • [ ] Verify user owns the resource on every request (don't trust client-side data)
  • [ ] Check organization membership for multi-tenant apps
  • [ ] Validate role permissions for role-based actions
  • [ ] Re-validate permissions after any privilege change
  • [ ] Check parent resource ownership (e.g., if accessing a comment, verify user owns the parent post)

Common Pitfalls to Avoid

  • **IDOR (Insecure Direct Object Reference)**: Always verify the requesting user has permission to access the requested resource ID
  • **Privilege Escalation**: Validate role changes server-side; never trust role info from client
  • **Horizontal Access**: User A accessing User B's resources with the same privilege level
  • **Vertical Access**: Regular user accessing admin functionality
  • **Mass Assignment**: Filter which fields users can update; don't blindly accept all request body fields

Implementation Pattern

# Pseudocode for secure resource access
function getResource(resourceId, currentUser):
    resource = database.find(resourceId)
    
    if resource is null:
        return 404  # Don't reveal if resource exists
    
    if resource.ownerId != currentUser.id:
        if not currentUser.hasOrgAccess(resource.orgId):
            return 404  # Return 404, not 403, to prevent enumeration
    
    return resource

---

Client-Side Bugs

Cross-Site Scripting (XSS)

Every input controllable by the user—whether directly or indirectly—must be sanitized against XSS.

Input Sources to Protect

**Direct Inputs:**

  • Form fields (email, name, bio, comments, etc.)
  • Search queries
  • File names during upload
  • Rich text editors / WYSIWYG content

**Indirect Inputs:**

  • URL parameters and query strings
  • URL fragments (hash values)
  • HTTP headers used in the application (Referer, User-Agent if displayed)
  • Data from third-party APIs displayed to users
  • WebSocket messages
  • postMessage data from iframes
  • LocalStorage/SessionStorage values if rendered

**Often Overlooked:**

  • Error messages that reflect user input
  • PDF/document generators that accept HTML
  • Email templates with user data
  • Log viewers in admin panels
  • JSON responses rendered as HTML
  • SVG file uploads (can contain JavaScript)
  • Markdown rendering (if allowing HTML)

Protection Strategies

1. **Output Encoding** (Context-Specific)

  • HTML context: HTML entity encode (`<` → `&lt;`)
  • JavaScript context: JavaScript escape
  • URL context: URL encode
  • CSS context: CSS escape
  • Use framework's built-in escaping (React's JSX, Vue's {{ }}, etc.)

2. **Content Security Policy (CSP)**

   Content-Security-Policy: 
     default-src 'self';
     script-src 'self';
     style-src 'self' 'unsafe-inline';
     img-src 'self' data: https:;
     font-src 'self';
     connect-src 'self' https://api.yourdomain.com;
     frame-ancestors 'none';
     base-uri 'self';
     form-action 'self';
  • Avoid `'unsafe-inline'` and `'unsafe-eval'` for scripts
  • Use nonces or hashes for inline scripts when necessary
  • Report violations: `report-uri /csp-report`

3. **Input Sanitization**

  • Use established libraries (DOMPurify for HTML)
  • Whitelist allowed tags/attributes for rich text
  • Strip or encode dangerous patterns

4. **Additional Headers**

  • `X-Content-Type-Options: nosniff`
  • `X-Frame-Options: DENY` (or use CSP frame-ancestors)

---

Cross-Site Request Forgery (CSRF)

Every state-changing endpoint must be protected against CSRF attacks.

Endpoints Requiring CSRF Protection

**Authenticated Actions:**

  • All POST, PUT, PATCH, DELETE requests
  • Any GET request that changes state (fix these to use proper HTTP methods)
  • File uploads
  • Settings changes
  • Payment/transaction endpoints

**Pre-Authentication Actions:**

  • Login endpoints (prevent login CSRF)
  • Signup endpoints
  • Password reset request endpoints
  • Password change endpoints
  • Email/phone verification endpoints
  • OAuth callback endpoints

Protection Mechanisms

1. **CSRF Tokens**

  • Generate cryptographically random tokens
  • Tie token to user session
  • Validate on every state-chan
Read more
Ships withvibesec-skill

Stop vibe coding vulnerabilities into production. An AI skill that brings 5+ years of bug bounty hunting experience directly into your AI coding workflow - so LLM models write secure code from the start.

Get the whole plugin
Stats
1,142
Stars
95
Forks
Maintained
Maintenance
Apache-2.0
License
5mo ago
Last commit
6mo ago
Created

Repo: behisecc/vibesec-skill