security-review

Audit application code for OWASP Top 10 security vulnerabilities.

Updated Jun 25, 2026
One-click install
npx skills add https://github.com/sumeetonline90/fitup_all --skill security-review-sumeetonline90
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: security-review
Source: https://github.com/sumeetonline90/fitup_all/tree/main/.cursor/.agents/skills/security-review
Command: npx skills add https://github.com/sumeetonline90/fitup_all --skill security-review-sumeetonline90

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Unaddressed security gaps in application code can lead to data breaches, unauthorized access, and regulatory penalties, especially when working with authentication, user input, secrets, or payment systems.

Core Features & Use Cases

  • Comprehensive Security Checklist: Covers 10 core security domains including secrets management, input validation, SQL injection prevention, authentication/authorization, XSS/CSRF protection, rate limiting, and dependency security.
  • Vulnerability Detection Guidance: Provides clear "never do" and "always do" examples, plus verification steps to identify common flaws like hardcoded secrets or unvalidated input.
  • Use Case: When building a new API endpoint that processes user payment information, use this skill to verify all secrets are stored in environment variables, input is validated with schemas, and rate limiting is enabled to prevent abuse.

Quick Start

Use the security-review skill to audit the new payment processing API for security vulnerabilities.

Frequently Asked Questions about security-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check my application code for OWASP Top 10 vulnerabilities?▼

To prevent SQL injection and XSS, apply secure coding standards that enforce strict input validation with schemas. Review API endpoint creation to verify user input is sanitized and secrets are stored securely in environment variables rather than hardcoded.

How do I secure API endpoints that process user payment information?▼

Securing API endpoints that process user payment information requires verifying that secrets are stored in environment variables, user input is validated with schemas, and rate limiting is enabled. This prevents data breaches and ensures regulatory compliance.

What is the best way to audit secrets management in a pre-deployment security validation?▼

The best way to audit secrets management during pre-deployment security validation is to verify all sensitive data is stored in environment variables. Check authentication workflows against secure coding standards to eliminate hardcoded secrets and prevent unauthorized access.

Does this security review approach cover rate limiting and dependency security?▼

Yes, this security review approach covers rate limiting and dependency security as part of a comprehensive checklist. It evaluates 10 core security domains, including authentication, API endpoint creation, and input validation, to satisfy secure coding requirements.

When do I need a security review for authentication implementation?▼

You need a security review for authentication implementation when building workflows involving user login, API endpoint creation, or payment processing. It ensures protection against unauthorized access, validates input handling, and enforces OWASP Top 10 compliance.