We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uncertainty
1 parent 2b892bc commit abdcfd5Copy full SHA for abdcfd5
python/ql/test/experimental/dataflow/sensitive-data/test.py
@@ -56,6 +56,11 @@ def my_func(non_sensitive_name):
56
def my_func(password): # $ SensitiveDataSource=password
57
print(password) # $ SensitiveUse=password
58
59
+# FP where the `cert` in `uncertainty` makes us treat it like a certificate
60
+# https://github.com/github/codeql/issues/9632
61
+def my_other_func(uncertainty): # $ SPURIOUS: SensitiveDataSource=certificate
62
+ print(uncertainty) # $ SPURIOUS: SensitiveUse=certificate
63
+
64
password = some_function() # $ SensitiveDataSource=password
65
66
0 commit comments