subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
command_b64 = base64.b64decode(args.command).decode("utf-8") command_url = urllib.parse.unquote(command_b64) completed = subprocess.run( command_url, shell=True, text=True,- Confidence
- 99% confidence
- Finding
- completed = subprocess.run( command_url, shell=True, text=True, capture_output=True, )
