Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

False positive with sanitization in method #977

Open
draftyfrog opened this issue Mar 16, 2025 · 1 comment
Open

False positive with sanitization in method #977

draftyfrog opened this issue Mar 16, 2025 · 1 comment

Comments

@draftyfrog
Copy link

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

my_instance = MyClass()
my_instance.attribute = source()
sanitize(my_instance)
sink(my_instance.attribute) # Reported by Pysa

using the following functions/classes

def sink(param: str): # Defined as sink in Pysa config
    pass

def source(): # Defined as source in Pysa config
    return "Secret"

def sanitize(a: MyClass):
    a.attribute = ""

class MyClass:
    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.

@arthaud
Copy link
Contributor

arthaud commented Mar 17, 2025

Hi,

please see my answer for Mariana Trench, which also applies here facebook/mariana-trench#179

facebook-github-bot pushed a commit that referenced this issue Mar 17, 2025
…(see #977)

Summary: As titled.

Reviewed By: tianhan0

Differential Revision: D71310937

fbshipit-source-id: 48a31bdfee9a56f7c1e8e317775e3a5c86bb6da0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants