subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
# DNS resolution test try: start = time.time() result = subprocess.run( ["getent", "hosts", "google.com"], capture_output=True, text=True, timeout=5 )- Confidence
- 90% confidence
- Finding
- result = subprocess.run( ["getent", "hosts", "google.com"], capture_output=True, text=True, timeout=5 )
