]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-16124 Add OWASP TOP 10 2021 Categories
authorMatteo Mara <matteo.mara@sonarsource.com>
Fri, 11 Mar 2022 11:58:05 +0000 (12:58 +0100)
committersonartech <sonartech@sonarsource.com>
Fri, 11 Mar 2022 20:02:49 +0000 (20:02 +0000)
server/sonar-web/src/main/js/helpers/standards.json

index 47513007a51230ba4dc9f85eedae0e9cd6dcf5e4..f8125c7b01a953a86de60dc1f307361de3e13a28 100644 (file)
@@ -1,4 +1,46 @@
 {
+  "owaspTop10-2021": {
+    "a1": {
+      "title": "Broken Access Control",
+      "description": "Restrictions on what authenticated users are allowed to do are often not properly enforced. Attackers can exploit these flaws to access unauthorized functionality and/or data, such as access other users' accounts, view sensitive files, modify other users' data, change access rights, etc."
+    },
+    "a2": {
+      "title": "Cryptographic Failures",
+      "description": "Many web applications and APIs do not properly protect sensitive data, such as financial, healthcare, and PII. Attackers may steal or modify such weakly protected data to conduct credit card fraud, identity theft, or other crimes. Sensitive data may be compromised without extra protection, such as encryption at rest or in transit, and requires special precautions when exchanged with the browser."
+    },
+    "a3": {
+      "title": "Injection",
+      "description": "Injection flaws, such as SQL, NoSQL, OS, and LDAP injection, occur when untrusted data is sent to an interpreter as part of a command or query. The attacker's hostile data can trick the interpreter into executing unintended commands or accessing data without proper authorization."
+    },
+    "a4": {
+      "title": "Insecure Design",
+      "description": "Insecure design is a broad category representing different weaknesses, expressed as “missing or ineffective control design.” An insecure design cannot be fixed by a perfect implementation as by definition, needed security controls were never created to defend against specific attacks."
+    },
+    "a5": {
+      "title": "Security Misconfiguration",
+      "description": "Security misconfiguration is the most commonly seen issue. This is commonly a result of insecure default configurations, incomplete or ad hoc configurations, open cloud storage, misconfigured HTTP headers, and verbose error messages containing sensitive information. Not only must all operating systems, frameworks, libraries, and applications be securely configured, but they must be patched and upgraded in a timely fashion."
+    },
+    "a6": {
+      "title": "Vulnerable and Outdated Components",
+      "description": "Components, such as libraries, frameworks, and other software modules, run with the same privileges as the application. If a vulnerable component is exploited, such an attack can facilitate serious data loss or server takeover. Applications and APIs using components with known vulnerabilities may undermine application defenses and enable various attacks and impacts."
+    },
+    "a7": {
+      "title": "Identification and Authentication Failures",
+      "description": "Application functions related to authentication and session management are often implemented incorrectly, allowing attackers to compromise passwords, keys, or session tokens, or to exploit other implementation flaws to assume other users' identities temporarily or permanently."
+    },
+    "a8": {
+      "title": "Software and Data Integrity Failures",
+      "description": "Software and data integrity failures relate to code and infrastructure that does not protect against integrity violations. An example of this is where an application relies upon plugins, libraries, or modules from untrusted sources, repositories, and content delivery networks (CDNs)."
+    },
+    "a9": {
+      "title": "Security Logging and Monitoring Failures",
+      "description": "Insufficient logging and monitoring, coupled with missing or ineffective integration with incident response, allows attackers to further attack systems, maintain persistence, pivot to more systems, and tamper, extract, or destroy data. Most breach studies show time to detect a breach is over 200 days, typically detected by external parties rather than internal processes or monitoring."
+    },
+    "a10": {
+      "title": "Server-Side Request Forgery (SSRF)",
+      "description": "SSRF flaws occur whenever a web application is fetching a remote resource without validating the user-supplied URL. It allows an attacker to coerce the application to send a crafted request to an unexpected destination, even when protected by a firewall, VPN, or another type of network access control list (ACL)."
+    }
+  },
   "owaspTop10": {
     "a1": {
       "title": "Injection",
       "title": "Others"
     }
   }
-}
\ No newline at end of file
+}