ctf-writeup/KnightCTF 2023/GET Me
Muhammad Daffa e510464bfe feat: added knightctf 2023 2023-01-24 23:02:54 +07:00
..
README.md feat: added knightctf 2023 2023-01-24 23:02:54 +07:00

README.md

GET Me

Can you GET the flag from the API ?

About the Challenge

We have been given a website, and if we open the website the response like this

{
    "success":false,
    "message":"Sorry ! You can't GET it :P"
}

How to Solve?

First i tried to change the HTTP request method from GET to POST. And then here is the response

{
    "success":false,
    "message":"You should send me a url !"
}

And then i tried to add a parameter named url and the value of the parameter i just using random url, for example https://google.com. And here is the response.

{
    "success":false,
    "message":"Looking for flag ? Visit https:\/\/hackenproof.com\/user\/security"}

And after stuck a little bit, i open hackenproof and register to that website and got the flag

KCTF{H4ck3nPr00f3d_bY_Kn16h75qu4d}