/** * @fileoverview OWASP A10:2021 - Server-Side Request Forgery (SSRF) * @module @nahisaho/musubix-security/rules/owasp/a10 * @trace REQ-SEC-OWASP-010 */ import type { SecurityRule } from '../types.js'; /** * OWASP A10:2021 - Server-Side Request Forgery (SSRF) * * Detects: * - URL fetching with user input * - Missing URL validation * - Internal network access risks * - Metadata endpoint access */ export declare const owaspA10SSRF: SecurityRule; export default owaspA10SSRF; //# sourceMappingURL=a10-ssrf.d.ts.map