subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
gradle_cmd = "gradle" try: result = subprocess.run( [str(gradle_path) if gradle_path.exists() else gradle_cmd, "dependencies", "--configuration", "compileClasspath"], cwd=project_dir,- Confidence
- 98% confidence
- Finding
- result = subprocess.run( [str(gradle_path) if gradle_path.exists() else gradle_cmd, "dependencies", "--configuration", "compileClasspath"], cwd=project_dir
