-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ostorlab
committed
Aug 1, 2023
1 parent
0417202
commit 8191573
Showing
3 changed files
with
387 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
{ | ||
"risk_rating": "medium", | ||
"short_description": "The application is transmitting sensitive data over HTTP, which is not secure.", | ||
"references": { | ||
"OWASP": "https://owasp.org/www-project-mobile-top-10/2016-risks/m3-insecure-communication" | ||
}, | ||
"title": "Cleartext HTTP Traffic", | ||
"privacy_issue": true, | ||
"security_issue": true, | ||
"categories": { | ||
"OWASP_MASVS_L1": [ | ||
"MSTG_NETWORK_1", | ||
"MSTG_NETWORK_2" | ||
], | ||
"OWASP_MASVS_L2": [ | ||
"MSTG_NETWORK_1", | ||
"MSTG_NETWORK_2" | ||
] | ||
} | ||
"risk_rating": "medium", | ||
"short_description": "The application is accessing data over unencrypted channel, undermining the confidentiality and integrity of data in transit.", | ||
"references": { | ||
"Missing Encryption of Sensitive Data (CWE-311)": "http://cwe.mitre.org/data/definitions/311.html", | ||
"Testing for Weak SSL/TLS Ciphers, Insufficient Transport Layer Protection": "https://www.owasp.org/index.php/Testing_for_Weak_SSL/TLS_Ciphers,_Insufficient_Transport_Layer_Protection_(OTG-CRYPST-001)", | ||
"Top 10 2013-A6-Sensitive Data Exposure": "https://www.owasp.org/index.php/Top_10_2013-A6-Sensitive_Data_Exposure", | ||
"Insufficient Transport Layer": "http://projects.webappsec.org/Insufficient-Transport-Layer-Protection", | ||
"Cleartext Transmission of Sensitive Information (CWE-319)": "http://cwe.mitre.org/data/definitions/319.html" | ||
}, | ||
"title": "Clear text HTTP request", | ||
"cvss_v3_vector": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", | ||
"privacy_issue": true, | ||
"security_issue": true, | ||
"categories": { | ||
"OWASP_ASVS_L1": [ | ||
"V9_1_1" | ||
], | ||
"OWASP_ASVS_L2": [ | ||
"V1_9_1", | ||
"V9_1_1" | ||
], | ||
"OWASP_ASVS_L3": [ | ||
"V1_9_1", | ||
"V9_1_1" | ||
] | ||
} | ||
} |
Oops, something went wrong.