old-tickets
Free tickets for everyone! Support tickets that you should resolve!
I captured the request in Burp Suite to see what headers were involved, but there was nothing special.

In a pentesting engagement, you need to perform different types of requests on the website to see if there are any errors or something interesting, and there are indeed some. When I make a POST request, I find an error in the source code. It seems that a parameter (code) is missing.

I added code as a new parameter, and this time I didn't get an error, but I also didn't get any response. After some time, I checked the source code and found an interesting line with a hash. I sent this hash as the code parameter, and now I have something interesting.

My first thought was that all I needed to do was add 1 and encode it as MD5, but that didn't work. After some attempts, I decided to make a script.
Last updated