eval() call detected
High
- Category
- Dangerous Code Execution
- Content
Returns exit code (0 = ok, 2 = arg error).""" # File existence for flag, accessor in FILE_ARGS.items(): path = eval(accessor) # safe: only string concat if path is None or path == "": continue if not Path(str(path)).exists():- Confidence
- 96% confidence
- Finding
- path = eval(accessor) # safe: only string concat
