-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Generic Parser: Support Test Type Meta #12348
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
Generic Parser: Support Test Type Meta #12348
Conversation
This pull request reveals multiple security concerns including potential metadata injection risks, dynamic code loading vulnerabilities, expanded attack surfaces through flexible input handling, disabled SSL redirects, and insecure token-based authentication practices that could compromise the application's security if not addressed. 💭 Unconfirmed Findings (5)
All finding details can be found in the DryRun Security Dashboard. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved
It looks that this PR allow to change test name (in |
@kiblik good catch! Overwriting the name was actually not supported before this PR, so it is would be best to maintain that in this PR. As for the test type name not being overwritten, I have some thoughts that I will share on the issue to keep things all in the same placee |
Generic Finding Import is capable of importing data from the report that influences the name of the test type and some other fields on the test. This behavior could be expanded to also influence the
static_tool
anddynamic_tool
fields as well.The following things were added to accomplish this:
ParserTest
class to accommodate the new fields[sc-11026]