-
Hello PD, Recently in the latest version of httpx the redirection system had some changes, one of the changes is that when we use Previously, only the final redirected URL was in the output, but this recent change makes it hard to pipe httpx to other tools, needs some more grepping on our side especially if the output is in If possible provide a flag to only print the final redirected URL (the one that is inside brackets). Kind Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@HolyBugx here is what changed:- Previously when Now we added support to also print the Final URL as additional information, the output of the probe is still same as before. If you are looking to parse output,
|
Beta Was this translation helpful? Give feedback.
-
subfinder -d hackerone.com | httpx -follow-redirects -json | jq -r 'if (.["final-url"]) then .["final-url"] else .url end' |
Beta Was this translation helpful? Give feedback.
subfinder -d hackerone.com | httpx -follow-redirects -json | jq -r 'if (.["final-url"]) then .["final-url"] else .url end'