subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
print(f"[info] command: {command_str}") if not execute: return None return subprocess.run( command_str, shell=True, text=True,- Confidence
- 99% confidence
- Finding
- return subprocess.run( command_str, shell=True, text=True, capture_output=True, check=False, cwd=str(skill_path.parent), )
