mirror of
https://github.com/hohn/codeql-dataflow-sql-injection.git
synced 2025-12-15 17:53:04 +01:00
updates for module system; include a db
This commit is contained in:
committed by
=Michael Hohn
parent
c1b3c8d901
commit
f3b703a35f
29
README.org
29
README.org
@@ -63,8 +63,8 @@
|
||||
To get started, build the codeql database (adjust paths to your setup):
|
||||
#+BEGIN_SRC sh
|
||||
# Build the db with source commit id.
|
||||
export PATH=$HOME/local/codeql-v2.9.3/codeql:"$PATH"
|
||||
SRCDIR=$HOME/local/codeql-dataflow-sql-injection
|
||||
# export PATH=$HOME/local/vmsync/codeql250:"$PATH"
|
||||
SRCDIR=$(pwd)
|
||||
DB=$SRCDIR/cpp-sqli-$(cd $SRCDIR && git rev-parse --short HEAD)
|
||||
|
||||
echo $DB
|
||||
@@ -76,6 +76,7 @@
|
||||
|
||||
Then add this database directory to your VS Code =DATABASES= tab.
|
||||
|
||||
|
||||
** Build codeql database in steps
|
||||
For larger projects, using a single command to build everything is costly when
|
||||
any part of the build fails.
|
||||
@@ -184,8 +185,8 @@
|
||||
|
||||
#+BEGIN_SRC sh
|
||||
# The setup information from before
|
||||
export PATH=$HOME/local/codeql-v2.9.3/codeql:"$PATH"
|
||||
SRCDIR=$HOME/local/codeql-dataflow-sql-injection
|
||||
export PATH=$HOME/local/vmsync/codeql250:"$PATH"
|
||||
SRCDIR=$HOME/local/codeql-training-material.cpp-sqli/cpp/codeql-dataflow-sql-injection
|
||||
DB=$SRCDIR/cpp-sqli-$(cd $SRCDIR && git rev-parse --short HEAD)
|
||||
|
||||
# Check paths
|
||||
@@ -196,16 +197,16 @@
|
||||
codeql database analyze -h
|
||||
|
||||
# Run a query
|
||||
codeql database analyze \
|
||||
-v \
|
||||
--ram=14000 \
|
||||
-j12 \
|
||||
--rerun \
|
||||
--search-path $HOME/local/codeql-v2.9.3/ql \
|
||||
--format=sarif-latest \
|
||||
--output cpp-sqli.sarif \
|
||||
-- \
|
||||
$DB \
|
||||
codeql database analyze \
|
||||
-v \
|
||||
--ram=14000 \
|
||||
-j12 \
|
||||
--rerun \
|
||||
--search-path ~/local/vmsync/ql \
|
||||
--format=sarif-latest \
|
||||
--output cpp-sqli.sarif \
|
||||
-- \
|
||||
$DB \
|
||||
$SRCDIR/SqlInjection.ql
|
||||
|
||||
# Examine the file in an editor
|
||||
|
||||
@@ -2,18 +2,16 @@
|
||||
* @name SQLI Vulnerability
|
||||
* @description Using untrusted strings in a sql query allows sql injection attacks.
|
||||
* @kind path-problem
|
||||
* @id cpp/SQLIVulnerable
|
||||
* @id cpp/sqlivulnerable
|
||||
* @problem.severity warning
|
||||
*/
|
||||
|
||||
import cpp
|
||||
import semmle.code.cpp.dataflow.TaintTracking
|
||||
import DataFlow::PathGraph
|
||||
import semmle.code.cpp.dataflow.new.TaintTracking
|
||||
|
||||
class SqliFlowConfig extends TaintTracking::Configuration {
|
||||
SqliFlowConfig() { this = "SqliFlow" }
|
||||
module SqliFlowConfig implements DataFlow::ConfigSig {
|
||||
|
||||
override predicate isSource(DataFlow::Node source) {
|
||||
predicate isSource(DataFlow::Node source) {
|
||||
// count = read(STDIN_FILENO, buf, BUFSIZE);
|
||||
exists(FunctionCall read |
|
||||
read.getTarget().getName() = "read" and
|
||||
@@ -21,9 +19,9 @@ class SqliFlowConfig extends TaintTracking::Configuration {
|
||||
)
|
||||
}
|
||||
|
||||
override predicate isSanitizer(DataFlow::Node sanitizer) { none() }
|
||||
predicate isBarrier(DataFlow::Node sanitizer) { none() }
|
||||
|
||||
override predicate isAdditionalTaintStep(DataFlow::Node into, DataFlow::Node out) {
|
||||
predicate isAdditionalFlowStep(DataFlow::Node into, DataFlow::Node out) {
|
||||
// Extra taint step
|
||||
// snprintf(query, bufsize, "INSERT INTO users VALUES (%d, '%s')", id, info);
|
||||
// But snprintf is a macro on mac os. The actual function's name is
|
||||
@@ -39,7 +37,7 @@ class SqliFlowConfig extends TaintTracking::Configuration {
|
||||
)
|
||||
}
|
||||
|
||||
override predicate isSink(DataFlow::Node sink) {
|
||||
predicate isSink(DataFlow::Node sink) {
|
||||
// rc = sqlite3_exec(db, query, NULL, 0, &zErrMsg);
|
||||
exists(FunctionCall exec |
|
||||
exec.getTarget().getName() = "sqlite3_exec" and
|
||||
@@ -48,6 +46,9 @@ class SqliFlowConfig extends TaintTracking::Configuration {
|
||||
}
|
||||
}
|
||||
|
||||
from SqliFlowConfig conf, DataFlow::PathNode source, DataFlow::PathNode sink
|
||||
where conf.hasFlowPath(source, sink)
|
||||
module MyFlow = TaintTracking::Global<SqliFlowConfig>;
|
||||
import MyFlow::PathGraph
|
||||
|
||||
from MyFlow::PathNode source, MyFlow::PathNode sink
|
||||
where MyFlow::flowPath(source, sink)
|
||||
select sink, source, sink, "Possible SQL injection"
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"codeQL.runningQueries.autoSave": true
|
||||
"codeQL.runningQueries.autoSave": true,
|
||||
"sarif-viewer.connectToGithubCodeScanning": "off"
|
||||
}
|
||||
}
|
||||
|
||||
1
cpp-sqli-c1b3c8d/baseline-info.json
Normal file
1
cpp-sqli-c1b3c8d/baseline-info.json
Normal file
@@ -0,0 +1 @@
|
||||
{"languages":{"cpp":{"displayName":"C/C++","files":["add-user.c"],"linesOfCode":78,"name":"cpp"}}}
|
||||
11
cpp-sqli-c1b3c8d/codeql-database.yml
Normal file
11
cpp-sqli-c1b3c8d/codeql-database.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
sourceLocationPrefix: /Users/hohn/local/codeql-dataflow-sql-injection
|
||||
baselineLinesOfCode: 78
|
||||
unicodeNewlines: false
|
||||
columnKind: utf8
|
||||
primaryLanguage: cpp
|
||||
creationMetadata:
|
||||
sha: c1b3c8d901eacddbb7949a8ca3b8acc11ffbda86
|
||||
cliVersion: 2.20.0
|
||||
creationTime: 2025-02-18T01:07:10.558137Z
|
||||
finalised: true
|
||||
BIN
cpp-sqli-c1b3c8d/db-cpp/default/affectedbymacroexpansion.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/affectedbymacroexpansion.rel
Normal file
Binary file not shown.
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/arraysizes.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/arraysizes.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/arraysizes.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/arraysizes.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_arg_constant.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_arg_constant.rel
Normal file
Binary file not shown.
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_arg_value.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_arg_value.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_arg_value.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_arg_value.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_args.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_args.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_args.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attribute_args.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attributes.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attributes.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attributes.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/attributes.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/bitfield.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/bitfield.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/bitfield.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/bitfield.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/blockscope.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/blockscope.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/blockscope.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/blockscope.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/builtintypes.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/builtintypes.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/builtintypes.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/builtintypes.rel.checksum
Normal file
Binary file not shown.
0
cpp-sqli-c1b3c8d/db-cpp/default/cache/.lock
vendored
Normal file
0
cpp-sqli-c1b3c8d/db-cpp/default/cache/.lock
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/buckets/info
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/buckets/info
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/buckets/page-000000
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/buckets/page-000000
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/ids1/info
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/ids1/info
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/ids1/page-000000
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/ids1/page-000000
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/indices1/info
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/indices1/info
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/indices1/page-000000
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/indices1/page-000000
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/info
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/info
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/metadata/info
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/metadata/info
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/metadata/page-000000
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/metadata/page-000000
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/pageDump/page-000000000
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/0/pageDump/page-000000000
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/poolInfo
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/pools/poolInfo
vendored
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/tuple-pool/header
vendored
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/cache/cached-strings/tuple-pool/header
vendored
Normal file
Binary file not shown.
0
cpp-sqli-c1b3c8d/db-cpp/default/cache/is-trimmed
vendored
Normal file
0
cpp-sqli-c1b3c8d/db-cpp/default/cache/is-trimmed
vendored
Normal file
1
cpp-sqli-c1b3c8d/db-cpp/default/cache/version
vendored
Normal file
1
cpp-sqli-c1b3c8d/db-cpp/default/cache/version
vendored
Normal file
@@ -0,0 +1 @@
|
||||
20190805:20220702:20240828:20241116
|
||||
BIN
cpp-sqli-c1b3c8d/db-cpp/default/commentbinding.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/commentbinding.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/commentbinding.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/commentbinding.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/comments.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/comments.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/comments.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/comments.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compgenerated.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compgenerated.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compgenerated.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compgenerated.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_args.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_args.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_args.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_args.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_compiling_files.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_compiling_files.rel
Normal file
Binary file not shown.
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_finished.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_finished.rel
Normal file
Binary file not shown.
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_time.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_time.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_time.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilation_time.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilations.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilations.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilations.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/compilations.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/containerparent.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/containerparent.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/containerparent.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/containerparent.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/conversionkinds.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/conversionkinds.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/conversionkinds.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/conversionkinds.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/derivedtypes.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/derivedtypes.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/derivedtypes.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/derivedtypes.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/enumconstants.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/enumconstants.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/enumconstants.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/enumconstants.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_ancestor.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_ancestor.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_ancestor.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_ancestor.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_false.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_false.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_false.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_false.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_guard.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_guard.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_guard.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_guard.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_true.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_true.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_true.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_cond_true.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_isload.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_isload.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_isload.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_isload.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_types.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_types.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_types.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/expr_types.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprconv.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprconv.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprconv.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprconv.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprparents.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprparents.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprparents.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprparents.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprs.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprs.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprs.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/exprs.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/extractor_version.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/extractor_version.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/extractor_version.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/extractor_version.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fieldoffsets.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fieldoffsets.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fieldoffsets.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fieldoffsets.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fileannotations.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fileannotations.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fileannotations.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fileannotations.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/files.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/files.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/files.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/files.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/folders.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/folders.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/folders.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/folders.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_decl_specifiers.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_decl_specifiers.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_decl_specifiers.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_decl_specifiers.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_decls.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_decls.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_decls.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_decls.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_def.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_def.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_def.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/fun_def.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/funbind.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/funbind.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/funbind.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/funbind.rel.checksum
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/funcattributes.rel
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/funcattributes.rel
Normal file
Binary file not shown.
BIN
cpp-sqli-c1b3c8d/db-cpp/default/funcattributes.rel.checksum
Normal file
BIN
cpp-sqli-c1b3c8d/db-cpp/default/funcattributes.rel.checksum
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user