mcpbeat

Strix•SSRF 测试

asdfgh1445/strix•ssrf 测试

Strix SSRF 测试手册,覆盖云元数据访问、内网服务发现与协议走私;触发名:strix-ssrf

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
715
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/asdfgh1445/ctf-super-hub --skill Strix•SSRF 测试

The instruction itself

23 sections, as written by the author

SSRF

Server-Side Request Forgery enables the server to reach networks and services the attacker cannot. Focus on cloud metadata endpoints, service meshes, Kubernetes, and protocol abuse to turn a single fetch into credentials, lateral movement, and sometimes RCE.

Attack Surface

Scope

  • Outbound HTTP/HTTPS fetchers (proxies, previewers, importers, webhook testers)
  • Non-HTTP protocols via URL handlers (gopher, dict, file, ftp, smb wrappers)
  • Service-to-service hops through gateways and sidecars (envoy/nginx)
  • Cloud and platform metadata endpoints, instance services, and control planes

Direct URL Params

  • url=, link=, fetch=, src=, webhook=, avatar=, image=

Indirect Sources

  • Open Graph/link previews, PDF/image renderers
  • Server-side analytics (Referer trackers), import/export jobs
  • Webhooks/callback verifiers

Protocol-Translating Services

  • PDF via wkhtmltopdf/Chrome headless, image pipelines
  • Document parsers, SSO validators, archive expanders

Less Obvious

  • GraphQL resolvers that fetch by URL
  • Background crawlers, repository/package managers (git, npm, pip)
  • Calendar (ICS) fetchers

High-Value Targets

AWS

  • IMDSv1: http://169.254.169.254/latest/meta-data//iam/security-credentials/{role}, /user-data
  • IMDSv2: requires token via PUT /latest/api/token with header X-aws-ec2-metadata-token-ttl-seconds, then include X-aws-ec2-metadata-token on subsequent GETs
  • If sink cannot set headers or methods, seek intermediaries that can
  • ECS/EKS task credentials: http://169.254.170.2$AWS_CONTAINER_CREDENTIALS_RELATIVE_URI

GCP

  • Endpoint: http://metadata.google.internal/computeMetadata/v1/
  • Required header: Metadata-Flavor: Google
  • Target: /instance/service-accounts/default/token

Azure

  • Endpoint: http://169.254.169.254/metadata/instance?api-version=2021-02-01
  • Required header: Metadata: true
  • MSI OAuth: /metadata/identity/oauth2/token

Kubernetes

  • Kubelet: 10250 (authenticated) and 10255 (deprecated read-only)
  • Probe /pods, /metrics, exec/attach endpoints
  • API server: https://kubernetes.default.svc/
  • Authorization often needs service account token; SSRF that propagates headers/cookies may reuse them
  • Service discovery: attempt cluster DNS names (svc.cluster.local) and default services (kube-dns, metrics-server)

Internal Services

  • Docker API: http://localhost:2375/v1.24/containers/json (no TLS variants often internal-only)
  • Redis/Memcached: dict://localhost:11211/stat, gopher payloads to Redis on 6379
  • Elasticsearch/OpenSearch: http://localhost:9200/_cat/indices
  • Message brokers/admin UIs: RabbitMQ, Kafka REST, Celery/Flower, Jenkins crumb APIs
  • FastCGI/PHP-FPM: gopher://localhost:9000/ (craft records for file write/exec when app routes to FPM)

Key Vulnerabilities

Protocol Exploitation

Gopher

  • Speak raw text protocols (Redis/SMTP/IMAP/HTTP/FCGI)
  • Use to craft multi-line payloads, schedule cron via Redis, or build FastCGI requests

File and Wrappers

  • file:///etc/passwd, file:///proc/self/environ when libraries allow file handlers
  • jar:, netdoc:, smb:// and language-specific wrappers (php://, expect://) where enabled

Address Variants

  • Loopback: 127.0.0.1, 127.1, 2130706433, 0x7f000001, ::1, [::ffff:127.0.0.1]
  • RFC1918/link-local: 10/8, 172.16/12, 192.168/16, 169.254/16
  • Test IPv6-mapped and mixed-notation forms

URL Confusion

  • Userinfo and fragments: http://internal@attacker/ or http://attacker#@internal/
  • Scheme-less/relative forms the server might complete internally: //169.254.169.254/
  • Trailing dots and mixed case: internal. vs INTERNAL, Unicode dot lookalikes

Redirect Abuse

  • Allowlist only applied pre-redirect: 302 from attacker → internal host
  • Test multi-hop and protocol switches (http→file/gopher via custom clients)

Header and Method Control

  • Some sinks reflect or allow CRLF-injection into the request line/headers
  • If arbitrary headers/methods are possible, IMDSv2, GCP, and Azure become reachable

Bypass Techniques

Address Encoding

  • Decimal, hex, octal representations of IP addresses
  • IPv6 variants, IPv4-mapped IPv6, mixed notation

DNS Rebinding

  • First resolution returns allowed IP, second returns internal target
  • Use short TTL DNS records under attacker control

URL Parser Differentials

  • Different parsing between allowlist checker and actual fetcher
  • Exploit inconsistencies in scheme, host, port, path handling

Redirect Chains

  • Initial URL passes allowlist, redirect targets internal host
  • Protocol downgrade/upgrade through redirects

Blind SSRF

  • Use OAST (DNS/HTTP) to confirm egress
  • Derive internal reachability from timing, response size, TLS errors, and ETag differences
  • Build a port map by binary searching timeouts (short connect/read timeouts yield cleaner diffs)

Chaining Attacks

  • SSRF → Metadata creds → cloud API access (list buckets, read secrets)
  • SSRF → Redis/FCGI/Docker → file write/command execution → shell
  • SSRF → Kubelet/API → pod list/logs → token/secret discovery → lateral movement

Testing Methodology

  • Identify surfaces - Every user-influenced URL/host/path across web/mobile/API and background jobs
  • Establish oracle - Quiet OAST DNS/HTTP callbacks first
  • Internal addressing - Pivot to loopback, RFC1918, link-local, IPv6, hostnames
  • Protocol variations - Test gopher, file, dict where supported
  • Parser differentials - Test across frameworks, CDNs, and language libraries
  • Redirect behavior - Single-hop, multi-hop, protocol switches
  • Header/method control - Can you influence request headers or HTTP method?
  • High-value targets - Metadata, kubelet, Redis, FastCGI, Docker, Vault, internal admin panels

Validation

  • Prove an outbound server-initiated request occurred (OAST interaction or internal-only response differences)
  • Show access to non-public resources (metadata, internal admin, service ports) from the vulnerable service
  • Where possible, demonstrate minimal-impact credential access (short-lived token) or a harmless internal data read
  • Confirm reproducibility and document request parameters that control scheme/host/headers/method and redirect behavior

False Positives

  • Client-side fetches only (no server request)
  • Strict allowlists with DNS pinning and no redirect following
  • SSRF simulators/mocks returning canned responses without real egress
  • Blocked egress confirmed by uniform errors across all targets and protocols

Impact

  • Cloud credential disclosure with subsequent control-plane/API access
  • Access to internal control panels and data stores not exposed publicly
  • Lateral movement into Kubernetes, service meshes, and CI/CD
  • RCE via protocol abuse (FCGI, Redis), Docker daemon access, or scriptable admin interfaces

Pro Tips

  • Prefer OAST callbacks first; then iterate on internal addressing and protocols
  • Test IPv6 and mixed-notation addresses; filters often ignore them
  • Observe library/client differences (curl, Java HttpClient, Node, Go); behavior changes across services and jobs
  • Redirects are leverage: control both the initial allowlisted host and the next hop
  • Metadata endpoints require headers/methods; verify if your sink can set them or if intermediaries add them
  • Use tiny payloads and tight timeouts to map ports with minimal noise
  • When responses are masked, diff length/ETag/status and TLS error classes to infer reachability
  • Chain quickly to durable impact (short-lived tokens, harmless internal reads) and stop there

Summary

Any feature that fetches remote content on behalf of a user is a potential tunnel to internal networks and control planes. Bind scheme/host/port/headers explicitly or expect an attacker to route through them.

How to use it

Copy the folder

Take asdfgh1445/strix•ssrf 测试 from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.