# Fiber Permissive CORS - ID: go-fiber-permissive-cors - Severity: MEDIUM - CWE: CWE-942 (CWE-942) - Languages: Go - Frameworks: fiber ## Description Wildcard CORS allows any origin to access resources. ## Remediation Specify allowed origins instead of wildcard. ```go app.Use(cors.New(cors.Config{ AllowOrigins: "https://example.com,https://app.example.com", })) ``` Learn more: https://shoulder.dev/learn/go/cwe-942/cors ## Related Rules - **FastAPI CORS Misconfiguration** [MEDIUM]: - **Flask CORS Misconfiguration** [MEDIUM]: - **Chi Permissive CORS** [MEDIUM]: - **Echo Permissive CORS** [MEDIUM]: - **Gin Permissive CORS** [MEDIUM]: