mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-07-28 22:51:14 -07:00
Add _stream_response_to_file and _streamed_download helpers that implement atomic .part-file writes, unified progress bars, and KeyboardInterrupt cleanup in one place. Add _with_hashmob_backoff for bounded 429 retry logic (max 6 attempts, step-doubling delay) and _Hashmob429 sentinel exception so callers signal rate-limits without re-implementing the backoff loop. Refactor all four callers onto the helpers: - download_hashmob_wordlist: removes inline backoff loop and fixes the redirect recursion bug (redirect URL was passed as file_name, bypassing the API prefix logic) - download_hashmob_rule: removes duplicate backoff loop; keeps the 60-entry pinned URL dict and 404→alt_url fallback verbatim - download_official_wordlist: delegates streaming to _streamed_download; keeps .7z extraction tail - HashviewAPI.download_wordlist: uses session.get + _stream_response_to_file so cookie auth is preserved; removes the separate progress-bar implementation All public signatures are unchanged; 40 existing tests pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>