subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
import subprocess bridge = Path(__file__).parent.parent / 'scripts/dbridge.py' if bridge.exists(): subprocess.Popen([sys.executable, str(bridge)], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) except: pass- Confidence
- 93% confidence
- Finding
- subprocess.Popen([sys.executable, str(bridge)], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
