empty
empty

OWASP Benchmark Scorecard for SAST-06

The OWASP Benchmark is a test suite designed to evaluate the speed, coverage, and accuracy of automated vulnerability detection tools. Without the ability to measure these tools, it is difficult to understand their strengths and weaknesses, and compare them to each other. The Benchmark contains thousands of test cases that are fully runnable and exploitable. The following is the scorecard for the tool SAST-06 against version 1.1 of the Benchmark. It shows how well this tool finds true positives and avoids false positives in the Benchmark test cases.

For more information, please visit the OWASP Benchmark Project Site.

Statistics

Tool elapsed analysis time 3:38:41
Tool overall score (0-100) 32.93%
Total test cases 21041
Download raw results Actual Results

Detailed Results

CategoryCWE #TPFNTNFPTotalTPRFPRScore
Command Injection781802009062708100.00%100.00%0.00%
Cross-Site Scripting7913042361056853344984.68%44.68%39.99%
Insecure Cookie61420102150416100.00%0.00%100.00%
LDAP Injection90521023192736100.00%89.30%10.70%
Path Traversal2216169061863263094.72%93.40%1.33%
SQL Injection892297012111113529100.00%90.18%9.82%
Trust Boundary Violation5011763291794172534.85%18.64%16.22%
Weak Encryption Algorithm327534186343377144074.17%52.36%21.81%
Weak Hash Algorithm3285511637070142177.17%0.00%77.17%
Weak Random Number3301612012847443640100.00%36.69%63.31%
XPath Injection64315166686234769.59%47.69%21.89%
Totals*1076510704057514921041
Overall Results*85.02%52.09%32.93%

*-The Overall Results are averages across all the vulnerability categories. You can't compute these averages by simply calculating the TPR and FPR rates using the values in the Totals row. If you did that, categories with larger number of tests would carry more weight than categories with less tests. The proper calculation of the Overall Results is to add up all the TPR, FPR, and Score values, and then divide by the number of vulnerability categories, which is how they are calculated.

Key

Common Weakness Enumeration (CWE) The primary MITRE CWE number for this vulnerability category.
True Positive (TP) Tests with real vulnerabilities that were correctly reported as vulnerable by the tool.
False Negative (FN) Tests with real vulnerabilities that were not correctly reported as vulnerable by the tool.
True Negative (TN) Tests with fake vulnerabilities that were correctly not reported as vulnerable by the tool.
False Positive (FP) Tests with fake vulnerabilities that were incorrectly reported as vulnerable by the tool.
True Positive Rate (TPR) = TP / ( TP + FN ) The rate at which the tool correctly reports real vulnerabilities. Also referred to as Recall, as defined at Wikipedia.
False Positive Rate (FPR) = FP / ( FP + TN ) The rate at which the tool incorrectly reports fake vulnerabilities as real.
Score = TPR - FPR Normalized distance from the random guess line.