Captcha2 | the Missing Lake

solving captchas that require identifying two animals from their images and submitting the captcha value in the format animal1-animal2

let's view the GET REQUEST in burp

we get the src of the 2 images.
so the difference between the first captcha challenge and this one is that the first one involves extracting the text from the image but this one involves recognizing the animal from the image.
if we run the request multiple times in the browser and view the src image of the animals we can notice that each animal has a unique image src so what we can do is build an object which has key value pair representing the animal name as the key and the image src as the image src.
let's build a script like the previous one but this time instead of sending the extracted text as the captcha value we will map animal names to their respective image src strings and then extract the src strings from the HTML response. We identify the animals in the captcha image based on their src strings and concatenate their names to form the captcha value. The script continues to send captchas until 100 are solved.
first let's view the POST Request in burp and then build the script

Script
let's run the script


and we have got the flag

Flag
Last updated
Was this helpful?