Blog Post
Stuck on Q4. What tool to use to analyse the Application.
- steven2 months ago
Silver I
try to analyse the web-calls, etc. imagine how the login process could be. try to solve Q5 first (and enjoy the rabbit hole).
- CyberSharpe28 days ago
Bronze III
Shes a tasty one for sure. Hardest one yet.
Any other suggested hints to move in the right direction?- steven28 days ago
Silver I
hmm… my remarks above are enough indication :) keyword: analyze the flow
- netcat27 days ago
Silver II
If you're clueless like I am (I would have preferred ghidra and a x64-dbg, which - I'm 100% convinced - are just enough to solve the challenge. Functions like write_token, getToken etc. are there. Or try to extract all GIF and PNG images, but that road leads nowhere, too.), then you'll write a reverse proxy in python, and let the traffic flow via that reverse proxy. Or just use netcat to read the packets from the client, and then send them to the API, and then answer back. Since it's all http with text/ascii it can be done.
Pretty sure the official solution will be much simpler.- CyberSharpe27 days ago
Bronze III
Burpsuite is king here and all you need.
- netcat23 days ago
Silver II
Oh yeah, burp is used in the official solution.