Java: Introduce Freemarker for SSTI queries#6320
Open
japroc wants to merge 3 commits intogithub:mainfrom
Open
Conversation
Contributor
|
FYI: There is a similar PR #5935 |
Contributor
|
In the event they differ enough: @japroc are you applying to the bounty program for this? |
Contributor
Author
|
Hi @intrigus-lgtm and @smowton, Unfortunately, i have not seen that PR (#5935) earlier. It looks similar. I think mine
Yes, i wanted to apply for bounty after some discussion |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi team!
I want to add support for Freemarker template engine.
There is a Freemarker.qll library and 2 queries.
Query 1 - FreemarkerTaintedTemplate.ql
Search for cases when untrusted data is used as template. It may lead to remote code execution and information disclosure vulnerabilities.
Query 2 - FreemarkerUnsafeConfiguration.ql
Search for unsafe freemarker configurations. It is not critical by default. Although, when developers use builtin interpret filter on user-data, they will be executed as part of template. As i know it's impossible to analyze ftl files. As mitigation it's recommended to configure secure engine by 1) not enabling Builtin API, 2) setting class resolver to
ALLOWS_NOTHING_RESOLVER.Thanks,
Evgenii.