External Script Fetching
High
- Category
- Supply Chain
- Content
## Remote Code Execution - **Never pipe untrusted content to a shell** (`curl | bash`, `wget | sh`). Always download first, inspect, then execute. - Avoid `eval()` on untrusted input in any language. - Be cautious with `source` or `.` commands on remote scripts.
- Confidence
- 90% confidence
- Finding
- Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
