dns-networking
Facilitates debugging of DNS resolution and network connectivity issues, enhancing troubleshooting capabilities for network professionals.
Install this skill
Security score
The dns-networking skill was audited on Feb 9, 2026 and we found 48 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 371 | ```bash |
Curl to non-GitHub URL
| 131 | curl -sI -o /dev/null -w "%{http_code}" https://example.com |
Curl to non-GitHub URL
| 186 | curl -v https://api.example.com/endpoint |
Curl to non-GitHub URL
| 200 | curl -sI https://api.example.com/endpoint |
Curl to non-GitHub URL
| 203 | curl -sIL https://example.com |
Curl to non-GitHub URL
| 206 | curl --resolve example.com:443:203.0.113.50 https://example.com |
Curl to non-GitHub URL
| 209 | curl --interface eth1 https://example.com |
Curl to non-GitHub URL
| 216 | curl --http1.1 https://example.com |
Curl to non-GitHub URL
| 217 | curl --http2 https://example.com |
Curl to non-GitHub URL
| 220 | curl --tlsv1.2 https://example.com |
Curl to non-GitHub URL
| 221 | curl --tlsv1.3 https://example.com |
Curl to non-GitHub URL
| 224 | curl -k https://self-signed.example.com |
Curl to non-GitHub URL
| 227 | curl -H "Host: example.com" https://203.0.113.50/ |
Curl to non-GitHub URL
| 230 | curl -X OPTIONS -H "Origin: http://localhost:3000" \ |
Curl to non-GitHub URL
| 309 | curl -x http://proxy.example.com:8080 https://httpbin.org/ip |
Curl to non-GitHub URL
| 312 | curl --socks5 localhost:1080 https://httpbin.org/ip |
Curl to non-GitHub URL
| 315 | curl -x http://proxy:8080 https://httpbin.org/ip |
Curl to non-GitHub URL
| 316 | curl https://httpbin.org/ip # Compare with direct |
Curl to non-GitHub URL
| 319 | curl -v -x http://proxy:8080 https://example.com 2>&1 | grep -i "proxy\|connect" |
External URL reference
| 131 | curl -sI -o /dev/null -w "%{http_code}" https://example.com |
External URL reference
| 186 | curl -v https://api.example.com/endpoint |
External URL reference
| 197 | " https://api.example.com/endpoint |
External URL reference
| 200 | curl -sI https://api.example.com/endpoint |
External URL reference
| 203 | curl -sIL https://example.com |
External URL reference
| 206 | curl --resolve example.com:443:203.0.113.50 https://example.com |
External URL reference
| 209 | curl --interface eth1 https://example.com |
External URL reference
| 216 | curl --http1.1 https://example.com |
External URL reference
| 217 | curl --http2 https://example.com |
External URL reference
| 220 | curl --tlsv1.2 https://example.com |
External URL reference
| 221 | curl --tlsv1.3 https://example.com |
External URL reference
| 224 | curl -k https://self-signed.example.com |
External URL reference
| 227 | curl -H "Host: example.com" https://203.0.113.50/ |
External URL reference
| 230 | curl -X OPTIONS -H "Origin: http://localhost:3000" \ |
External URL reference
| 232 | -v https://api.example.com/endpoint |
External URL reference
| 294 | export HTTP_PROXY=http://proxy.example.com:8080 |
External URL reference
| 295 | export HTTPS_PROXY=http://proxy.example.com:8080 |
External URL reference
| 299 | export http_proxy=http://proxy.example.com:8080 # lowercase also works |
External URL reference
| 302 | export HTTPS_PROXY=http://user:[email protected]:8080 |
External URL reference
| 309 | curl -x http://proxy.example.com:8080 https://httpbin.org/ip |
External URL reference
| 312 | curl --socks5 localhost:1080 https://httpbin.org/ip |
External URL reference
| 315 | curl -x http://proxy:8080 https://httpbin.org/ip |
External URL reference
| 316 | curl https://httpbin.org/ip # Compare with direct |
External URL reference
| 319 | curl -v -x http://proxy:8080 https://example.com 2>&1 | grep -i "proxy\|connect" |
External URL reference
| 329 | git config --global http.proxy http://proxy:8080 |
External URL reference
| 330 | git config --global https.proxy http://proxy:8080 |
External URL reference
| 335 | npm config set proxy http://proxy:8080 |
External URL reference
| 336 | npm config set https-proxy http://proxy:8080 |
External URL reference
| 339 | pip install --proxy http://proxy:8080 package-name |