-
Notifications
You must be signed in to change notification settings - Fork 1.7k
The strings were concatenated, making it impossible to match the path. #19479
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
Comments
👋 @fraudV As far as I can tell what you're trying to achieve is not data flow (that tracks unchanged data flowing through the program), but rather taint tracking, which tracks so-called "taint" in data, that can get transmitted through data transformation like string concatentation. You can find more information about this in this section of the docs. In a nutshell, if you replace |
Hi @fraudV Am I following correctly that you would like taint to flow through both I'm afraid that is not available automatically: gson is not listed as a supported framework in this list. I can raise this to the internal team, to see if built-in support is coming any time soon. In the meantime, you will probably need to model the missing flow yourself implementing |
Okay, I see. Thank you very much. |
Source can query the fileName.





Sink can also query data.
Logic can be connected.
But no results were found.
The test from fileName to FileUtils.isValidFilename can retrieve results.
However, when querying from fileName to writeBytes, no results are returned. The data passes through the line "String filePath = Global.getDownloadPath() + fileName;" in the middle.
The text was updated successfully, but these errors were encountered: