security-scanner

Unavailable for this prompt. Please try again or contact administrator. Alternatively, here's a suggestion:

84|15|Updated Dec 31, 2025
One-click install
npx skills add https://github.com/AIDotNet/MoYuCode --skill security-scanner-aidotnet
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: security-scanner
Source: https://github.com/AIDotNet/MoYuCode/tree/main/skills/community/security-scanner
Command: npx skills add https://github.com/AIDotNet/MoYuCode --skill security-scanner-aidotnet

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill addresses the critical need for robust code security by proactively identifying and flagging potential vulnerabilities, such as OWASP Top 10 risks, hardcoded secrets, and insecure configurations.

Core Features & Use Cases

  • Vulnerability Detection: Identifies common security flaws like SQL injection and Cross-Site Scripting (XSS).
  • Secret Scanning: Detects hardcoded API keys, passwords, and other sensitive credentials.
  • Secure Configuration Review: Provides examples for implementing security headers and proper authentication mechanisms.
  • Use Case: Before deploying a new feature, run the security scanner to ensure no critical vulnerabilities are introduced, protecting user data and system integrity.

Quick Start

Run a comprehensive security scan on the current project codebase.

Frequently Asked Questions about security-scanner

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

FAQPage Schema
How do I scan my codebase for OWASP Top 10 vulnerabilities?

Scanning for OWASP Top 10 vulnerabilities involves analyzing your source code to identify common security flaws like SQL injection and Cross-Site Scripting (XSS). A dedicated security scanner reviews your codebase patterns to detect these risks proactively before deployment.

What is the best way to detect hardcoded secrets and API keys in source code?

Detecting hardcoded secrets in source code requires scanning files for sensitive credentials like API keys and passwords. A security scanner automates this by pattern matching against insecure secret management practices to flag exposed credentials.

How does a security scanner review insecure configurations and authentication?

A security scanner reviews insecure configurations by analyzing your code for weak authentication mechanisms and missing security header implementations. It identifies insecure patterns and recommends secure coding practices to enforce proper access controls.

Can I run a vulnerability scan on my project before deploying a new feature?

Yes, you can run a vulnerability scan on your project before deploying a new feature. Scanning your codebase ensures no critical security vulnerabilities or hardcoded secrets are introduced, protecting user data and maintaining system integrity.

What secure coding practices are recommended for preventing SQL injection and XSS?

To prevent SQL injection and XSS, recommended secure coding practices include implementing proper input validation, using parameterized queries, and applying security headers. The scanner identifies weak patterns and suggests these secure alternatives.