Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cracker0dks committed Dec 5, 2022
2 parents d027c26 + 5f7e935 commit 5481e04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Doc on how it is solved: [HERE](docs/howToSolveNew6DigitCaptchasWalkthrough.md)
### 6 Digits Captcha
![ks](/docs/filejoker.png)

Doc on how it is solved: coming soon!
Doc on how it is solved: [HERE](docs/howToSolveGeoCaptchasWalkthrough.md)

## Old captchas (not supported anymore)
Download v1.x to get the code for solving this captchas!
Expand Down
8 changes: 5 additions & 3 deletions docs/howToSolveGeoCaptchasWalkthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@ Now we count the pixels that are not black:

Now we assign these counts to our list. This can be done because every shape has less pixels the more corners it has:

```Circle > 3850 px
```
Circle > 3850 px
6 Corners > 3300 px
5 Corners > 3000 px
4 Corners > 2500 px
Circle > 0```
Circle > 0
```

In this case 3491 > 3300 ... so we guess it as 6 corner shape (Hexagon)
So we get result like this for the whole captcha:
Expand All @@ -86,4 +88,4 @@ So we get result like this for the whole captcha:
## Conclution ##

In my tests this is working for like 95% of the shapes I guess. Recognize rectangels and circles is very easy because the difference of the pixels to the next shape is very big.
In between it is not always be correct but it should be sufficient.
In between it is not always be correct but it should be sufficient.

0 comments on commit 5481e04

Please sign in to comment.