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
Would be a nice feature, if JWTs in multiple locations can appear with an option to select one for testing.
I'm currently testing an website which is sending two JWTs (access and refresh token) on the same time.
Example request:
GET /api/v1/getpage HTTP/1.1Host: xyzCookie: refresh=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:105.0) Gecko/20100101 Firefox/105.0Accept: application/json, text/plain, */*Accept-Language: en-US,en;q=0.5Accept-Encoding: gzip, deflateAuthorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...Connection: close
As you can see, there are JWTs in cookie and authorization header. jwt_tool doesn't work in this case and quits with: Too many tokens! JWT in more than one place: cookie, header, POST data
The text was updated successfully, but these errors were encountered:
If anybody stumbles upon this (after all this time) - one can use the Burp Addon ReShaper with the "Then"-Action Set-Value, e.g. using a cookie as source and set a header with the identical value. Match/Replace is also possible.
If anybody stumbles upon this (after all this time) - one can use the Burp Addon ReShaper with the "Then"-Action Set-Value, e.g. using a cookie as source and set a header with the identical value. Match/Replace is also possible.
Thanks for this suggestion. Nevertheless, linking to login protected website isn't very helpful.
Would be a nice feature, if JWTs in multiple locations can appear with an option to select one for testing.
I'm currently testing an website which is sending two JWTs (access and refresh token) on the same time.
Example request:
As you can see, there are JWTs in cookie and authorization header. jwt_tool doesn't work in this case and quits with:
Too many tokens! JWT in more than one place: cookie, header, POST data
The text was updated successfully, but these errors were encountered: