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…
Methodology for detecting client SOC patches, attacker activity, and security-state changes that occur DURING a red-team engagement — and converting those observations into deliverable findings. Built from authorized red-team work where the client patched a confirmed SQLi within
$ npx -y skills add elementalsouls/Claude-BugHunter --skill mid-engagement-ir-detection --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/mid-engagement-ir-detectionContext preview
The summary Claude sees to decide when to auto-load this skill.
Methodology for detecting client SOC patches, attacker activity, and security-state changes that occur DURING a red-team engagement — and converting those observations into deliverable findings. Built from authorized red-team work where the client patched a confirmed SQLi within
name: mid-engagement-ir-detection description: Methodology for detecting client SOC patches, attacker activity, and security-state changes that occur DURING a red-team engagement — and converting those observations into deliverable findings. Built from authorized red-team work where the client patched a confirmed SQLi within 30 minutes of detection AND an external attacker locked multiple new accounts during a single test session. Use when (a) running ANY active engagement against a monitored target, (b) a previously-confirmed finding stops reproducing, (c) baseline timing shifts unexpectedly, or (d) you notice response patterns changing during testing. sources: authorized-engagement report_count: 1
Trigger when:
DO NOT use for:
---
In a real red-team engagement against a competent SOC, the security state of the target is **not static**. It changes during your test in response to your traffic. These state changes are:
1. **Themselves valuable findings** (positive operational observations about IR responsiveness) 2. **Confirmation evidence** (mid-engagement patch = the original vulnerability was real) 3. **Classification signals** (WAF rule deployment vs code fix — different remediation depth)
Anti-pattern: treating reproduction failure as evidence the original signal was a false positive. **Original PoC artifacts captured before the change are still the vulnerability finding.**
---
# Capture pre-test fingerprint of the target
fingerprint = {
"ts_pre": time.time(),
"ip_seen": "<operator-src-ip>",
"baseline_response_time_ms": <measure>,
"baseline_response_size_bytes": <measure>,
"response_headers": <capture set>,
"waf_cookies": <list>,
"lockout_count_in_state": <count from o365_attempts.json>,
}Persist to `engagement_log/fingerprint_pre.json`.
Log every test result with full context (timestamp, IP, payload, response code, response size, response time, headers if relevant) to JSONL append-only.
fingerprint_post = same structure
delta = {
"baseline_time_change_ms": post.time - pre.time,
"baseline_size_change_bytes": post.size - pre.size,
"new_headers_appeared": post.headers - pre.headers,
"new_waf_cookies": post.cookies - pre.cookies,
"new_lockouts": post.locked_count - pre.locked_count,
}If any delta is significant — **investigate, don't retract**.
---
**Symptoms:**
**Confirmation:** retry with WAF-evasion variants:
If WAF-evasion variants restore the signal, the mitigation is at the WAF layer (bypassable).
If even WAF-evasion variants stay blocked, the mitigation is likely in code.
**Finding template:**
Subject: Mid-engagement mitigation deployed for <vulnerability X> Observation: At engagement timestamp T0, vulnerability <X> on <endpoint> was confirmed via <PoC>. At T0+<minutes>, recheck via the original payload no longer reproduces the timing/error/size differential. <WAF-evasion variant> [does/does not] restore the signal. Description: This pattern is consistent with the client SOC observing engagement traffic and deploying a mitigation in real time. Mitigation depth assessment: [at-WAF, bypassable] vs [in-code, durable]. Impact (positive): Client SOC has both detection-grade visibility into application traffic AND the authority to deploy mitigations within ~<minutes> of detection. Impact (caveat): The original vulnerability did exist and was exploitable for at least the engagement window before mitigation. If the mitigation is at the WAF layer only, the underlying code-level flaw remains exploitable via alternative payloads. Recommendation: 1. Verify the mitigation is in code (parameterized queries, input sanitization), not just at the WAF layer. 2. Audit the codebase for the same root cause across sister applications. 3. (Positive) Document the IR responsiveness as a capability metric.
**Symptoms:**
**Math check:**
A 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…