security-audit
>-
Works with
--- name: security-audit description: >- license: MIT --- # Security Audit Skill This skill provides a comprehensive framework for security auditing, ensuring that common vulnerabilities are identified and addressed during development and review. ## Audit Checklist ### 1. OWASP Top 10 & Common Vulnerabilities - **Injection**: Check for SQL, Command, or NoSQL injection points. Ensure parameterized queries or proper escaping is used. - **Broken Access Control**: Verify that users cannot access resources outside of their intended permissions. - **Insecure Design**: Evaluate the overall architecture for security flaws. - **Cryptographic Failures**: Ensure sensitive data (passwords, PII) is encrypted at rest and in transit using modern algorithms (e.g., AES-256, TLS 1.3). ### 2. Dependency Management - **Vulnerability Scanning**: Check for known vulnerabilities in third-party libraries (e.g., using `npm audit`, `pip-audit`, or `snyk`). - **Outdated Packages**: Identify and update significantly outdated dependencies. ### 3. Authentication & Authorization - **Credential Management**: Ensure passwords are never stored in plain text (use Argon2, bcrypt, or scrypt). - **Session Management**: Verify secure session handling (HttpOnly, Secure, SameSite flags for cookies). - **MFA/2FA**: Check for the implementation or requirement of multi-factor authentication where appropriate. ### 4. Input Validation & Data Handling - **Sanitization**: Validate and sanitize all user-supplied data at the trust boundary. - **Encoding**: Ensure output encoding is used to prevent Cross-Site Scripting (XSS). - **Secret Management**: Confirm that API keys, secrets, and credentials are NOT committed to the repository (use environment variables or secret managers). ## Usage Guidelines When asked to "audit" or "perform a security review": 1. Systematically go through each category above. 2. For each finding, categorize it by severity (Critical, High, Medium, Low). 3. Provide clear remediation steps for every identified issue. 4. Document any positive security practices already in place.
More Security skills
azure-cost
microsoft/azure-skills
Azure cost management: query costs, forecast spending, optimize to reduce waste. WHEN: \"Azure costs\", \"Azure bill\", \"cost breakdown\", \"how much am I spending\", \"forecast spending\", \"optimize costs\", \"reduce spending\", \"orphaned resources\", \"rightsize VMs\", \"cost spike\", \"reduce storage costs\", \"AKS cost\". DO NOT USE FOR: deploying resources, provisioning, diagnostics, or security audits.
entra-app-registration
microsoft/azure-skills
Guides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration. USE FOR: create app registration, register Azure AD app, configure OAuth, set up authentication, add API permissions, generate service principal, MSAL example, console app auth, Entra ID setup, Azure AD authentication. DO NOT USE FOR: Key Vault secrets (use azure-keyvault-expiration-audit), general Azure resource security guidance.
azure-messaging
microsoft/azure-skills
Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, message lock expired, lock renewal, lock renewal batch, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter, batch processing lock, session lock expired, idle timeout, connection inactive, link detach, slow reconnect, session error, duplicate events, offset reset, receive batch.

