External Script Fetching
High
- Category
- Supply Chain
- Content
```bash # Prometheus — CPU utilization over last 30 days curl -s "$PROMETHEUS_URL/api/v1/query_range" \ --data-urlencode 'query=avg(rate(node_cpu_seconds_total{mode!="idle"}[5m])) by (instance)' \ --data-urlencode "start=$(date -d '30 days ago' +%s)" \ --data-urlencode "end=$(date +%s)" \- Confidence
- 90% confidence
- Finding
- Remote code is downloaded and executed. This bypasses code review and could introduce malicious code.
