A02—Security Misconfiguration
>Control Description
>Prevention & Mitigation Strategies
- 1.A repeatable hardening process enabling the fast and easy deployment of another environment that is appropriately locked down. Development, QA, and production environments should all be configured identically, with different credentials used in each environment. This process should be automated to minimize the effort required to set up a new secure environment.
- 2.A minimal platform without any unnecessary features, components, documentation, or samples. Remove or do not install unused features and frameworks.
- 3.A task to review and update the configurations appropriate to all security notes, updates, and patches as part of the patch management process (see [A03 Software Supply Chain Failures](https://owasp.org/Top10/2025/A03_2025-Software_Supply_Chain_Failures/)). Review cloud storage permissions (e.g., S3 bucket permissions).
- 4.A segmented application architecture provides effective and secure separation between components or tenants, with segmentation, containerization, or cloud security groups (ACLs).
- 5.Sending security directives to clients, e.g., Security Headers.
- 6.An automated process to verify the effectiveness of the configurations and settings in all environments.
- 7.Proactively add a central configuration to intercept excessive error messages as a backup.
- 8.If these verifications are not automated, they should be manually verified annually at a minimum.
- 9.Use identity federation, short-lived credentials, or role-based access mechanisms provided by the underlying platform instead of embedding static keys or secrets in code, configuration files, or pipelines.
>Attack Scenarios
The application server comes with sample applications not removed from the production server. These sample applications have known security flaws that attackers use to compromise the server. Suppose one of these applications is the admin console, and default accounts weren't changed. In that case, the attacker logs in with the default password and takes over.
Directory listing is not disabled on the server. An attacker discovers they can simply list directories. The attacker finds and downloads the compiled Java classes, which they decompile and reverse engineer to view the code. The attacker then finds a severe access control flaw in the application.
The application server's configuration allows detailed error messages, such as stack traces to be returned to users. This potentially exposes sensitive information or underlying flaws, such as component versions that are known to be vulnerable.
A cloud service provider (CSP) defaults to having sharing permissions open to the Internet. This allows sensitive data stored within cloud storage to be accessed.
>Related CWEs
>References
Ask AI
Configure your API key to use AI features.