-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrunCodeQL.sh
More file actions
executable file
·15 lines (11 loc) · 1.41 KB
/
runCodeQL.sh
File metadata and controls
executable file
·15 lines (11 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# The following is based on the instructions at: https://docs.github.com/en/code-security/codeql-cli/getting-started-with-the-codeql-cli/setting-up-the-codeql-cli. Follow the instructions at: Setting up the CodeQL CLI
# Prerequisites:
# 1) Install codeql in a tools/ directory that is a peer to the folder containing BenchmarkJava. For example, if you have a git/ folder, which contains BenchmarkJava, BenchmarkUtils, etc., then the tools/ folder would be at the same level as the git/ folder. i.e., relative to BenchmarkJava, it is at ../../tools/code-ql-home.
# 2) Then the owasp-benchmark database has to be initialized by running this:
# ../tools/codeql-home/codeql/codeql database create owasp-benchmark --language=java
# Mac Users: "If you are using macOS on Apple Silicon (for example, Apple M1), ensure that the Xcode command-line developer tools and Rosetta 2 are installed."
## For Xcode command line, run: xcode-select -p 1>/dev/null;echo $? - If this returns 0, its installed, if 2, its not installed.
## For Rosetta 2, run: lsbom -f /Library/Apple/System/Library/Receipts/com.apple.pkg.RosettaUpdateAuto.bom - And if it returns a list of files, it's installed.
# This then runs the codeql scan:
benchmark_version=$(scripts/getBenchmarkVersion.sh)
../tools/codeql-home/codeql/codeql database analyze owasp-benchmark codeql/java-queries --format=sarifv2.1.0 --output=results/Benchmark_$benchmark_version-codeql_java-queries.sarif