IceCTF - 45 - Toke - Web

Information#

Version#

By Version Comment
noraj 1.0 Creation

CTF#

Description#

I have a feeling they were pretty high when they made this website...

Solution#

  1. Register a user an login with it.
  2. With your browser network analyser loot at cookies in response header of the HTTP request: Set-Cookie: jwt_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJmbGFnIjoiSWNlQ1RGe2pXN190MEszbnNfNFJlX25PX3AxNENFX2ZPUl81M0NyRTdTfSIsInVzZXIiOiJhemEifQ.Zfl286kFvhPrNJG-dtoTjbPU7OxlUdTW_XKEL679uU0;.
  3. JWT stands for JSON Web Tokens and is composed of 3 parts:
    • Part1: Header, is base64 encoded, show hash algorithm.
    • Part2: Payload, base64 encoded, content.
    • Part3: Signature, signature, concatenation of header + content and then encoded with the hash algorithm contained in the header.
  4. So eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJmbGFnIjoiSWNlQ1RGe2pXN190MEszbnNfNFJlX25PX3AxNENFX2ZPUl81M0NyRTdTfSIsInVzZXIiOiJhemEifQ.Zfl286kFvhPrNJG-dtoTjbPU7OxlUdTW_XKEL679uU0 match with header.payload.signature.
  5. So we get:
1
2
3
4
5
printf "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9" | base64 -d
{"alg":"HS256","typ":"JWT"}

printf "eyJmbGFnIjoiSWNlQ1RGe2pXN190MEszbnNfNFJlX25PX3AxNENFX2ZPUl81M0NyRTdTfSIsInVzZXIiOiJhemEifQ" | base64 -d
{"flag":"IceCTF{jW7_t0K3ns_4Re_nO_p14CE_fOR_53CrE7S}","user":"aza"}

An introduction to JSON Web Tokens is available here.

Share