Blog Post
Stuck on Q4. What tool to use to analyse the Application.
- steven21 days 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).
- CyberSharpe8 days ago
Bronze III
Shes a tasty one for sure. Hardest one yet.
Any other suggested hints to move in the right direction?- steven8 days ago
Silver I
hmm… my remarks above are enough indication :) keyword: analyze the flow
- netcat7 days ago
Silver I
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.- CyberSharpe7 days ago
Bronze III
Burpsuite is king here and all you need.
- netcat2 days ago
Silver I
Oh yeah, burp is used in the official solution.