ctf-writeup/2023/Hackpack CTF 2023/HackerChat
daffainfo e6c48e50f1 feat: grouped the challs 2024-01-09 16:59:32 +07:00
..
images feat: grouped the challs 2024-01-09 16:59:32 +07:00
README.md feat: grouped the challs 2024-01-09 16:59:32 +07:00

README.md

HackerChat

HackerChat is the hottest new chat app for hackers. Can you recover the secret message sent to the HackerChat admin?

About the Challenge

We are given a website that has multiple functionality such as send msg to another user, login, register, etc.

preview

How to Solve?

Register first and then login to the website and you will see this page

dashboard

You will notice there are 2 API endpoints when accessing dashboard page

  • /api/chat
  • /api/search

There is a SQL injection vulnerability on /api/search endpoint on search_term parameter. Input ' or true-- in that parameter to print all the user information

sqli

As we can see, we found admin username and there is an interesting notes there

secret reminder: 8vqB5xhrTdPzPDXpSpOTY3oTB3ExpZJdrsFGm/hq/yE=

The secret reminder refers to the JWT secret, which is required in order to modify the value of the Authorization token from your username (For example testiiii) to admin

jwt

Now, go to /api/chat history and don't forget to change the Authorization token and voilà you will obtain the flag

flag

flag{Unbr34k4bl3_Ch@t_S3curity_uWu_2lgla}