captchaforge 0.2.36

[DO NOT USE — UNDER ACTIVE DEVELOPMENT, NOT PRODUCTION-READY] Captcha solver scaffolding for chromiumoxide-driven browsers. The architecture is in place (vendor solvers, retry-loop iframe walking, VLM provider abstraction, real-WAF bench harness) but the live-vendor success rate is still 0% — Cloudflare Turnstile / hCaptcha / reCAPTCHA detect us at a TLS / CDP fingerprint layer that no flag-based stealth has cleared. Watch the repo; do not depend on this for any real workload.
Documentation
name: Fuzz

on:
  schedule:
    - cron: '0 3 * * 0'  # Weekly on Sunday at 3am
  workflow_dispatch:

env:
  CARGO_TERM_COLOR: always

jobs:
  fuzz:
    name: Fuzz Testing
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@nightly
      - uses: Swatinem/rust-cache@v2
      - name: Install cargo-fuzz
        run: cargo install cargo-fuzz
      - name: Run fuzz_detect (5 min)
        run: cd fuzz && cargo fuzz run fuzz_detect -- -max_total_time=300
      - name: Run fuzz_solve_config (5 min)
        run: cd fuzz && cargo fuzz run fuzz_solve_config -- -max_total_time=300
      - name: Run fuzz_selector (5 min)
        run: cd fuzz && cargo fuzz run fuzz_selector -- -max_total_time=300
      - name: Run fuzz_pattern_key (5 min)
        run: cd fuzz && cargo fuzz run fuzz_pattern_key -- -max_total_time=300