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
- The script executes attacker-controlled Python via exec() with a largely unrestricted global namespace. That allows arbitrary filesystem access, module imports, process execution, and direct access to sensitive Fitbit health data, which is far beyond a constrained analysis helper.
