Benchmarking Vulnerability Detection Tools for Web Services
Benchmarking Vulnerability Detection Tools for Web Services
This project contains the source code of the services that serve as workload
of a benchmark for tools able to detect SQL injection vulnerabilities in web services. The benchmark was introduced in [1], the papers explains the results and how they were obtained. The benchmark was later reused and extended in [2].
The ground truth of this workload is presented in the
detailed results file.
In practice, the column Review
represents what is considered as the true vulnerabilities (TV)
.
PostgreSQL
database can be found in database dump. It is a minimal version, just for demo.Database.java
according to the database and configuration used in step 1.Logging.java
for your favorite logging framework.maven
dependencies, located inside install. Use the install.sh to help you..war
package, using mvn package
or mvn install
The benchmark consists of 21
web services, adapted from three standard benchmarks developed by the Transactions processing Performance Council, namely: TPC-App, TPC-C, and TPC-W.
Both vulnerable
and non-vulnerable
versions of the services are included.
These services include a total of 80 operations (# operations) with 158 known SQL Injection vulnerabilities (# vulnerabilities).
The table below presents, for each service, the number of known vulnerabilities,
the number of lines of code per operation (LoC/Op), and the Average Cyclomatic Complexity of the code
(calculated using SourceMonitor).
As we can see, the services are quite diverse in terms of complexity, size and
even in number of vulnerabilities. This diversity is important to evaluate tools
that have different effectiveness in different scenarios..
Source Benchmark | Service Name | # operations | # vulnerabilities | LoC/Op | Avg. C. Complexity |
---|---|---|---|---|---|
TPC-App | ProductDetail | 2 | 0 | 242 | 5 |
NewProducts | 2 | 1 | 206 | 4.5 | |
NewCustomer | 6 | 35 | 1230 | 5.6 | |
ChangePaymentMethod | 2 | 2 | 198 | 5 | |
TPC-C | Delivery | 9 | 10 | 2043 | 21 |
NewOrder | 7 | 15 | 2317 | 33 | |
OrderStatus | 7 | 18 | 1463 | 13 | |
Payment | 13 | 34 | 4251 | 25 | |
StockLevel | 4 | 6 | 320 | 4 | |
TPC-W | AdminUpdate | 2 | 2 | 162 | 5 |
CreateNewCustomer | 6 | 27 | 978 | 3 | |
CreateShoppingCart | 2 | 0 | 414 | 2.67 | |
DoAuthorSearch | 2 | 1 | 88 | 3 | |
DoSubjectSearch | 2 | 1 | 90 | 3 | |
DoTitleSearch | 2 | 1 | 90 | 3 | |
GetBestSellers | 2 | 1 | 124 | 3 | |
GetCustomer | 2 | 1 | 92 | 4 | |
GetMostRecentOrder | 2 | 1 | 258 | 6 | |
GetNewProducts | 2 | 1 | 100 | 3 | |
GetPassword | 2 | 1 | 80 | 2 | |
GetUsername | 2 | 0 | 80 | 2 | |
Total | 80 | 158 | 14826 | - |