You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pre-submission checklist
[x] I've checked the list of common issues and mine does not appear
I've reported a similar issue for Mariana Trench (Issue 179) so maybe that's just expected behavior.
Bug description
Please consider the following code
my_instance=MyClass()
my_instance.attribute=source()
sanitize(my_instance)
sink(my_instance.attribute) # Reported by Pysa
using the following functions/classes
defsink(param: str): # Defined as sink in Pysa configpassdefsource(): # Defined as source in Pysa configreturn"Secret"defsanitize(a: MyClass):
a.attribute=""classMyClass:
attribute: str
Running Pysa on this code returns one issue (as annotated in the code above), but actually no taint is leaked in this code.
If we move the sanitizing inline like this:
my_instance=MyClass()
my_instance.attribute=source()
my_instance.attribute=""sink(my_instance.attribute) # Not reported by Pysa
Pysa correctly doesn't report the issue.
I call pysa via pyre analyze --save-results-to ./results/ and I'm using version 0.9.23.
The text was updated successfully, but these errors were encountered:
Pysa Bug
Pre-submission checklist
[x] I've checked the list of common issues and mine does not appear
I've reported a similar issue for Mariana Trench (Issue 179) so maybe that's just expected behavior.
Bug description
Please consider the following code
using the following functions/classes
Running Pysa on this code returns one issue (as annotated in the code above), but actually no taint is leaked in this code.
If we move the sanitizing inline like this:
Pysa correctly doesn't report the issue.
I call pysa via
pyre analyze --save-results-to ./results/
and I'm using version 0.9.23.The text was updated successfully, but these errors were encountered: