os.system() or os exec-family call
High
- Category
- Dangerous Code Execution
- Content
if sys.platform.startswith("win"): os.startfile(str(index)) # noqa: S606 elif sys.platform == "darwin": os.system(f'open "{index}"') else: os.system(f'xdg-open "{index}"')- Confidence
- 89% confidence
- Finding
- os.system(f'open "{index}"')
