Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix predicate name
  • Loading branch information
atorralba committed Jan 21, 2022
commit ee84dae164d774eb07bf9bc0a4518e0f3b1c2922
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ from SensitiveSource data, LocalDatabaseOpenMethodAccess s, Expr input, Expr sto
where
input = s.getAnInput() and
store = s.getAStore() and
data.flowsToCached(input)
data.flowsTo(input)
select store, "SQLite database $@ containing $@ is stored $@. Data was added $@.", s, s.toString(),
data, "sensitive data", store, "here", input, "here"
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class CleartextStorageAndroidDatabaseTest extends InlineExpectationsTest {
exists(SensitiveSource data, LocalDatabaseOpenMethodAccess s, Expr input, Expr store |
input = s.getAnInput() and
store = s.getAStore() and
data.flowsToCached(input)
data.flowsTo(input)
|
input.getLocation() = location and
element = input.toString() and
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.