subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
import subprocess script_path = os.path.join(autoglm_skill, 'scripts', 'generate.py') if os.path.exists(script_path): result = subprocess.run( [sys.executable, script_path, '--prompt', prompt, '--output', output_path],- Confidence
- 89% confidence
- Finding
- result = subprocess.run( [sys.executable, script_path, '--prompt', prompt, '--output', output_path], c
