mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
Fix predicate name
This commit is contained in:
@@ -18,6 +18,6 @@ from SensitiveSource data, LocalFileOpenCall s, Expr input, Expr store
|
|||||||
where
|
where
|
||||||
input = s.getAnInput() and
|
input = s.getAnInput() and
|
||||||
store = s.getAStore() and
|
store = s.getAStore() and
|
||||||
data.flowsToCached(input)
|
data.flowsTo(input)
|
||||||
select store, "Local file $@ containing $@ is stored $@. Data was added $@.", s, s.toString(), data,
|
select store, "Local file $@ containing $@ is stored $@. Data was added $@.", s, s.toString(), data,
|
||||||
"sensitive data", store, "here", input, "here"
|
"sensitive data", store, "here", input, "here"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ class CleartextStorageAndroidFilesystemTest extends InlineExpectationsTest {
|
|||||||
exists(SensitiveSource data, LocalFileOpenCall s, Expr input, Expr store |
|
exists(SensitiveSource data, LocalFileOpenCall s, Expr input, Expr store |
|
||||||
input = s.getAnInput() and
|
input = s.getAnInput() and
|
||||||
store = s.getAStore() and
|
store = s.getAStore() and
|
||||||
data.flowsToCached(input)
|
data.flowsTo(input)
|
||||||
|
|
|
|
||||||
input.getLocation() = location and
|
input.getLocation() = location and
|
||||||
element = input.toString() and
|
element = input.toString() and
|
||||||
|
|||||||
Reference in New Issue
Block a user