Get the FREE Ultimate OpenClaw Setup Guide →

solana-security

npx machina-cli add skill tenequm/claude-plugins/solana-security --openclaw
Files (1)
SKILL.md
9.9 KB

Solana Security Auditing

Systematic security review framework for Solana programs, supporting both Anchor and native Rust implementations.

Review Process

Follow this systematic 5-step process for comprehensive security audits:

Step 1: Initial Assessment

Understand the program's context and structure:

  • Framework: Anchor vs Native Rust (check for use anchor_lang::prelude::*)
  • Anchor version: Check Cargo.toml for compatibility and known issues
  • Dependencies: Oracles (Pyth, Switchboard), external programs, token programs
  • Program structure: Count instructions, identify account types, analyze state management
  • Complexity: Lines of code, instruction count, PDA patterns
  • Purpose: DeFi, NFT, governance, gaming, etc.

Step 2: Systematic Security Review

For each instruction, perform security checks in this order:

  1. Account Validation - Verify signer, owner, writable, and initialization checks
  2. Arithmetic Safety - Check all math operations use checked_* methods
  3. PDA Security - Validate canonical bumps and seed uniqueness
  4. CPI Security - Ensure cross-program invocations validate target programs
  5. Oracle/External Data - Verify price staleness and oracle status checks

→ See references/security-checklists.md for detailed checklists

Step 3: Vulnerability Pattern Detection

Scan for common vulnerability patterns:

  • Type cosplay attacks
  • Account reloading issues
  • Improper account closing
  • Missing lamports checks
  • PDA substitution attacks
  • Arbitrary CPI vulnerabilities
  • Missing ownership validation
  • Integer overflow/underflow

→ See references/vulnerability-patterns.md for code examples and exploit scenarios

Step 4: Architecture and Testing Review

Evaluate overall design quality:

  • PDA design patterns and collision prevention
  • Account space allocation and rent exemption
  • Error handling approach and coverage
  • Event emission for critical state changes
  • Compute budget optimization
  • Test coverage (unit, integration, fuzz)
  • Upgrade strategy and authority management

Step 5: Generate Security Report

Provide findings using this structure:

Severity Levels:

  • šŸ”“ Critical: Funds can be stolen/lost, protocol completely broken
  • 🟠 High: Protocol can be disrupted, partial fund loss possible
  • 🟔 Medium: Suboptimal behavior, edge cases, griefing attacks
  • šŸ”µ Low: Code quality, gas optimization, best practices
  • šŸ’” Informational: Recommendations, improvements, documentation

Finding Format:

## šŸ”“ [CRITICAL] Title

**Location:** `programs/vault/src/lib.rs:45-52`

**Issue:**
Brief description of the vulnerability

**Vulnerable Code:**
```rust
// Show the problematic code

Exploit Scenario: Step-by-step explanation of how this can be exploited

Recommendation:

// Show the secure alternative

References:

  • [Link to relevant documentation or similar exploits]

**Report Summary:**
- Total findings by severity
- Critical issues first (prioritize by risk)
- Quick wins (easy fixes with high impact)
- Recommendations for testing improvements

## Quick Reference

### Essential Checks (Every Instruction)

**Anchor:**
```rust
// āœ… Account validation with constraints
#[derive(Accounts)]
pub struct SecureInstruction<'info> {
    #[account(
        mut,
        has_one = authority,  // Relationship check
        seeds = [b"vault", user.key().as_ref()],
        bump,  // Canonical bump
    )]
    pub vault: Account<'info, Vault>,

    pub authority: Signer<'info>,  // Signer required

    pub token_program: Program<'info, Token>,  // Program validation
}

// āœ… Checked arithmetic
let total = balance.checked_add(amount)
    .ok_or(ErrorCode::Overflow)?;

Native Rust:

// āœ… Manual account validation
if !authority.is_signer {
    return Err(ProgramError::MissingRequiredSignature);
}

if vault.owner != program_id {
    return Err(ProgramError::IllegalOwner);
}

// āœ… Checked arithmetic
let total = balance.checked_add(amount)
    .ok_or(ProgramError::ArithmeticOverflow)?;

Critical Anti-Patterns

āŒ Never Do:

  • Use saturating_* arithmetic methods (hide errors)
  • Use unwrap() or expect() in production code
  • Use init_if_needed without additional checks
  • Skip signer validation ("they wouldn't call this...")
  • Use unchecked arithmetic operations
  • Allow arbitrary CPI targets
  • Forget to reload accounts after mutations

āœ… Always Do:

  • Use checked_* arithmetic (checked_add, checked_sub, etc.)
  • Use ok_or(error)? for Option unwrapping
  • Use explicit init with proper validation
  • Require Signer<'info> or is_signer checks
  • Use Program<'info, T> for CPI program validation
  • Reload accounts after external calls that mutate state
  • Validate account ownership, discriminators, and relationships

Framework-Specific Patterns

Anchor Security Patterns

→ See references/anchor-security.md for:

  • Account constraint best practices
  • Common Anchor-specific vulnerabilities
  • Secure CPI patterns with CpiContext
  • Event emission and monitoring
  • Custom error handling

Native Rust Security Patterns

→ See references/native-security.md for:

  • Manual account validation patterns
  • Secure PDA derivation and signing
  • Low-level CPI security
  • Account discriminator patterns
  • Rent exemption validation

Modern Practices (2025)

  • Use Anchor 0.30+ for latest security features
  • Implement Token-2022 with proper extension handling
  • Use InitSpace derive for automatic space calculation
  • Emit events for all critical state changes
  • Write fuzz tests with Trident framework
  • Document invariants in code comments
  • Follow progressive roadmap: Dev → Audit → Testnet → Audit → Mainnet

Security Fundamentals

→ See references/security-fundamentals.md for:

  • Security mindset and threat modeling
  • Core validation patterns (signers, owners, mutability)
  • Input validation best practices
  • State management security
  • Arithmetic safety
  • Re-entrancy considerations

Common Vulnerabilities

→ See references/vulnerability-patterns.md for:

  • Missing signer validation
  • Integer overflow/underflow
  • PDA substitution attacks
  • Account confusion
  • Arbitrary CPI
  • Type cosplay
  • Improper account closing
  • Precision loss in calculations

Each vulnerability includes:

  • āŒ Vulnerable code example
  • šŸ’„ Exploit scenario
  • āœ… Secure alternative
  • šŸ“š References

Security Checklists

→ See references/security-checklists.md for:

  • Account validation checklist
  • Arithmetic safety checklist
  • PDA and account security checklist
  • CPI security checklist
  • Oracle and external data checklist
  • Token integration checklist

Known Issues and Caveats

→ See references/caveats.md for:

  • Solana-specific quirks and gotchas
  • Anchor framework limitations
  • Testing blind spots
  • Common misconceptions
  • Version-specific issues

Security Resources

→ See references/resources.md for:

  • Official security documentation
  • Security courses and tutorials
  • Vulnerability databases
  • Audit report examples
  • Security tools (Trident, fuzzers)
  • Security firms and auditors

Key Questions for Every Audit

Always verify these critical security properties:

  1. Can an attacker substitute accounts?

    • PDA validation, program ID checks, has_one constraints
  2. Can arithmetic overflow or underflow?

    • All math uses checked operations, division by zero protected
  3. Are all accounts properly validated?

    • Owner, signer, writable, initialized checks present
  4. Can the program be drained?

    • Authorization checks, reentrancy protection, account confusion prevention
  5. What happens in edge cases?

    • Zero amounts, max values, closed accounts, expired data
  6. Are external dependencies safe?

    • Oracle validation (staleness, status), CPI targets verified, token program checks

Audit Workflow

Before Starting

  1. Understand the protocol purpose and mechanics
  2. Review documentation and specifications
  3. Set up local development environment
  4. Run existing tests and check coverage

During Audit

  1. Follow the 5-step review process systematically
  2. Document findings with severity and remediation
  3. Create proof-of-concept exploits for critical issues
  4. Test fixes and verify they work

After Audit

  1. Present findings clearly prioritized by severity
  2. Provide actionable remediation steps
  3. Re-audit after fixes are implemented
  4. Document lessons learned for the protocol

Testing for Security

Beyond code review, validate security through testing:

  • Unit tests: Test each instruction's edge cases
  • Integration tests: Test cross-instruction interactions
  • Fuzz testing: Use Trident to discover unexpected behaviors
  • Exploit scenarios: Write POCs for found vulnerabilities
  • Upgrade testing: Verify migration paths are secure

Core Principle

In Solana's account model, attackers can pass arbitrary accounts to any instruction.

Security requires explicitly validating:

  • āœ… Every account's ownership
  • āœ… Every account's type (discriminator)
  • āœ… Every account's relationships
  • āœ… Every account's state
  • āœ… Every signer requirement
  • āœ… Every arithmetic operation
  • āœ… Every external call

There are no implicit guarantees. Validate everything, trust nothing.

Source

git clone https://github.com/tenequm/claude-plugins/blob/main/solana/skills/solana-security/SKILL.mdView on GitHub

Overview

Solana Security Auditing offers a structured framework for reviewing Solana programs, whether built with Anchor or native Rust. It guides auditors through a formal 5-step process, targeted vulnerability patterns, architecture and testing considerations, and a standardized security report to communicate findings clearly.

How This Skill Works

Auditors start with an Initial Assessment to understand the program context (Anchor vs Native Rust, dependencies, structure). They then perform a systematic 5-step review for each instruction (Account Validation, Arithmetic Safety, PDA Security, CPI Security, Oracle/External Data), followed by vulnerability pattern detection, architecture and testing evaluation, and finally generate a security report using a standardized severity scale and reporting template.

When to Use It

  • When reviewing a Solana program for security vulnerabilities or potential exploits
  • During an external security audit or bug bounty preparation for Anchor or native Rust programs
  • While analyzing attack vectors in DeFi, NFT, governance, or gaming Solana apps
  • When validating upgrade strategies and program authorities for security risks
  • During code reviews to check for common vulnerability patterns and CPI-related issues

Quick Start

  1. Step 1: Identify the program framework (Anchor vs Native Rust) and map dependencies, instructions, and accounts
  2. Step 2: Run the 5-step Systematic Security Review for each instruction (Account Validation, Arithmetic Safety, PDA Security, CPI Security, Oracle/External Data)
  3. Step 3: Compile findings into the Security Report using the severity levels and the standardized Finding Format

Best Practices

  • Clarify the framework at the start (Anchor vs Native Rust) and map dependencies and accounts
  • Apply the per-instruction checks in order: Account Validation, Arithmetic Safety, PDA Security, CPI Security, Oracle/External Data
  • Validate PDAs with canonical bumps and seed uniqueness to prevent substitution
  • Ensure cross-program invocations validate target programs and safeguards
  • Document findings with a structured Security Report using severity levels and references

Example Use Cases

  • Auditing a Solana DeFi vault to detect PDA substitution risks and insufficient lamport handling
  • Reviewing an NFT minting contract for missing owner checks and insecure CPIs
  • Assessing a governance program for upgrade authority vulnerabilities and account space misconfigurations
  • Fuzz-testing a complex program to uncover arithmetic overflow and unchecked instructions
  • Validating oracle data handling and price staleness in a lending protocol

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers ↗