exec() call detected
High
- Category
- Dangerous Code Execution
- Content
stdout = io.StringIO() try: with contextlib.redirect_stdout(stdout): exec(code, namespace) output = stdout.getvalue() if output: print(output)- Confidence
- 99% confidence
- Finding
- exec(code, namespace)
