This repository was archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
bq solve_captcha
Liam Jack edited this page Aug 21, 2015
·
1 revision
/bq/solve_captcha
Used to attempt to answer a captcha previously provided by /bq/get_captcha
-
captcha_id: Name ofZIPfile, without the.zip(Format:[USERNAME]~[TIMESTAMP]) -
captcha_solution: Explained in Notes (Example:000111100`) usernametimestampreq_token
find_friends_enabled
Supposing we have the following Captcha:
And we select all the images containing a ghost:
Taking a look at the image correspondance table:
| Column 1 | Column 2 | Column3 | |
|---|---|---|---|
| Row 1 | image0.png |
image1.png |
image2.png |
| Row 2 | image3.png |
image4.png |
image5.png |
| Row 3 | image6.png |
image7.png |
image8.png |
We have selected image3.png, image4.png, image5.png, image6.png.
Store this in a table for each image write 1 when there is a ghost in the image and 0 when there isn't.
image0.png |
image1.png |
image2.png |
image3.png |
image4.png |
image5.png |
image6.png |
image7.png |
image8.png |
|
|---|---|---|---|---|---|---|---|---|---|
| Value | 0 |
0 |
0 |
1 |
1 |
1 |
1 |
0 |
0 |
And there, ladies and gentlemen, is your captcha_solution string: 000111100 !