subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
try: install_script = Path(__file__).parent / "install_skills.py" target_root = Path(__file__).parent.parent.parent.parent.parent subprocess.run([sys.executable, str(install_script), str(target_root)], check=True) print(f"✅ Installed:{target_root / '.claude' / 'skills'}") flag = True except Exception as e:- Confidence
- 92% confidence
- Finding
- subprocess.run([sys.executable, str(install_script), str(target_root)], check=True)
