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
I have a page for authentication that takes a JWT string. If the JWT is valid, it generates a UUID and redirects me to another page where the UUID is used to log me in, returning a 30x status code. However, if the JWT is invalid, it returns a 200 OK status code along with a message in HTML.
This extension doesn't handle the expected redirect for valid requests properly. Instead, it treats the 200 OK response for invalid JWTs as if it were a valid response. This causes numerous false positive issues. I believe the extension should check whether the current JWT request is valid before determining the response's validity. It can ask users or give us two options as an example:
Scanning with a valid JWT
Scanning with an invalid JWT
I think in the future a config panel with profile conditions of what should be count as valid for a specific path and target is the best solution.
The text was updated successfully, but these errors were encountered:
I have a page for authentication that takes a JWT string. If the JWT is valid, it generates a UUID and redirects me to another page where the UUID is used to log me in, returning a 30x status code. However, if the JWT is invalid, it returns a 200 OK status code along with a message in HTML.
This extension doesn't handle the expected redirect for valid requests properly. Instead, it treats the 200 OK response for invalid JWTs as if it were a valid response. This causes numerous false positive issues. I believe the extension should check whether the current JWT request is valid before determining the response's validity. It can ask users or give us two options as an example:
I think in the future a config panel with profile conditions of what should be count as valid for a specific path and target is the best solution.
The text was updated successfully, but these errors were encountered: