subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
os.makedirs(extracted_dir, exist_ok=True) # 使用 unzip 解压 result = subprocess.run( ['unzip', '-o', apk_path, '-d', extracted_dir], capture_output=True, text=True )- Confidence
- 93% confidence
- Finding
- result = subprocess.run( ['unzip', '-o', apk_path, '-d', extracted_dir], capture_output=True, text=True )
