# performance-audit

Analyze performance and Core Web Vitals

## Usage

Run this command to perform security analysis on your codebase.

## Process

1. Scan codebase for security vulnerabilities
2. Check dependencies for known CVEs
3. Analyze authentication and authorization
4. Review input validation and sanitization
5. Generate security report with recommendations

## Commands

```bash
# Run security scan
npm audit
npx snyk test

# Check for secrets
npx secretlint .

# OWASP dependency check
npx owasp-dependency-check --project .
```

## Output

- Security vulnerability report
- CVE findings with severity
- Remediation recommendations
- Compliance checklist
