-
-
Notifications
You must be signed in to change notification settings - Fork 799
Wayback upgrade #2909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
liquidsec
wants to merge
34
commits into
blasthttp-integration-clean
Choose a base branch
from
wayback-upgrade
base: blasthttp-integration-clean
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Wayback upgrade #2909
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
39d8a5a
add parameter emmision to wayback
liquidsec 27f1409
mods to the wayback parameter extraction
liquidsec aac9674
more features / bug fixes for new wayback
liquidsec 251d48d
allow from-wayback tag to propagate
liquidsec ca211fc
update docs for wayback
liquidsec de97820
add waf string 4xx filtering
liquidsec d448bca
add Akamai WAF string to waf_strings helper
liquidsec 9b81791
add directory listing excavate submodule
liquidsec 1991e28
improve wayback CDX error logging and increase timeout
liquidsec 5d0cde7
add rate limiting, retry, and bloom filter dedup to wayback archive f…
liquidsec c0ccda5
add CDX server-side filters and 100k URL limit to wayback module
liquidsec b55d2a1
fixing wayback rate limiting
liquidsec ab154c8
improving wayback delay system
liquidsec 454f169
make cpu heavy processing non-blocking
liquidsec ec111a9
make max_records configurable, fix archive retry logic, demote log level
liquidsec 630bbb5
fix _event_host() using resolved IP instead of URL hostname
liquidsec b11d3ef
skip URL collapse when there are no URLs to process
liquidsec 4ab6588
ruff format
liquidsec 786bc09
add timeout and recovery protections to run_in_executor_mp
liquidsec d4e7a58
ruff check fixes
liquidsec 036a187
Fix three test failures: dedup, validation, and wildcard defense
liquidsec e72cc93
Speed up wayback archive fetching with HEAD pre-check and reactive ra…
liquidsec cb53d78
Fix pytest hanging after test_run_in_executor_mp
liquidsec 86e4ae9
Kill stuck process pool workers on timeout instead of leaking them
liquidsec 5e917fe
Fix wayback module for URL DictHostEvent migration, rename wayback-in…
liquidsec 9b3b3f4
Replace archive_url inheritance with tag-based parent traversal
liquidsec bce4b86
Fix tests for blasthttp migration: httpx_mock→blasthttp_mock, whiteli…
liquidsec 5758f3b
Merge branch 'blasthttp-integration-clean' into wayback-upgrade
liquidsec 75c7cb9
Merge branch 'blasthttp-integration-clean' into wayback-upgrade
liquidsec 25d60bc
Merge branch 'blasthttp-integration-clean' into wayback-upgrade
liquidsec 670766d
Merge branch 'blasthttp-integration-clean' into wayback-upgrade
liquidsec a23a312
Skip non-HTTP archived URLs in wayback, truncate sanitization warnings
liquidsec 246f74e
Merge branch 'blasthttp-integration-clean' into wayback-upgrade
liquidsec 53cbb3d
Merge branch 'blasthttp-integration-clean' into wayback-upgrade
liquidsec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This timeout needs to be applied one level deeper, because it cancels the awaiting of the coroutine, but leaves the stuck task executing in the process pool, thereby taking up a child process indefinitely.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it was already only cpu-bound tasks, there was no network requests here