You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the process of investigating something unrelated I noticed that one of our directory entries has a landing page URL https://organization.tld/securedrop/ which redirects to https://securedrop.organization.tld. The landing page scanner should detect a redirect like this and behave accordingly.
This might actually be a sort of complicated problem, since presently we extract the domain from the landing page URL as a substring and ask pshtt to scan it as step 1 and then do an HTML scrape of the actual URL as step 2. We may need to reverse those steps in order to follow a redirect and scan the correct domain. (This will also stop us from using pshtt's bulk scan API, which probably doesn't actually give us a performance boost anyway, since it requires the same number of HTTP requests.)
The text was updated successfully, but these errors were encountered:
In the process of investigating something unrelated I noticed that one of our directory entries has a landing page URL
https://organization.tld/securedrop/
which redirects tohttps://securedrop.organization.tld
. The landing page scanner should detect a redirect like this and behave accordingly.This might actually be a sort of complicated problem, since presently we extract the domain from the landing page URL as a substring and ask
pshtt
to scan it as step 1 and then do an HTML scrape of the actual URL as step 2. We may need to reverse those steps in order to follow a redirect and scan the correct domain. (This will also stop us from usingpshtt
's bulk scan API, which probably doesn't actually give us a performance boost anyway, since it requires the same number of HTTP requests.)The text was updated successfully, but these errors were encountered: