Agent Skill: Security audit patterns for PHP/OWASP. Use when conducting security assessments, identifying vulnerabilities (XXE, SQL injection, XSS), or CVSS scoring. By Netresearch.
/plugin marketplace add netresearch/claude-code-marketplace/plugin install netresearch-skills-bundle@netresearch-claude-code-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
LICENSEREADME.mdcomposer.jsonreferences/cvss-scoring.mdreferences/owasp-top10.mdreferences/xxe-prevention.mdscripts/security-audit.shSecurity audits, vulnerability assessment, and secure coding patterns aligned with OWASP.
references/xxe-prevention.md - XXE detection and preventionreferences/owasp-top10.md - OWASP Top 10 patternsreferences/cvss-scoring.md - CVSS scoring methodologyreferences/secure-php.md - PHP-specific security patternsreferences/secure-config.md - Secure configuration checklistsXML parsing (prevent XXE):
$doc->loadXML($input, LIBXML_NONET | LIBXML_NOENT | LIBXML_DTDLOAD);
SQL (prevent injection):
$stmt = $pdo->prepare('SELECT * FROM users WHERE id = ?');
$stmt->execute([$id]);
Output (prevent XSS):
echo htmlspecialchars($input, ENT_QUOTES | ENT_HTML5, 'UTF-8');
./scripts/security-audit.sh /path/to/project
Contributing: https://github.com/netresearch/security-audit-skill