# Fiber Debug Mode in Production - ID: go-fiber-debug-mode-production - Severity: MEDIUM - CWE: CWE-489 (CWE-489) - Languages: Go - Frameworks: fiber ## Description Fiber debug configuration exposes route structure and stack traces. ## Remediation Use production configuration to disable debug output. ```go app := fiber.New(fiber.Config{ DisableStartupMessage: true, EnablePrintRoutes: false, }) ``` Learn more: https://shoulder.dev/learn/go/cwe-489/debug-mode ## Documentation [object Object] ## Related Rules - **Django Debug Mode in Production** [CRITICAL]: - **Flask Debug Mode in Production** [HIGH]: - **Echo Debug Mode in Production** [MEDIUM]: - **Gin Debug Mode in Production** [MEDIUM]: - **Debug Mode Enabled in Production** [MEDIUM]: