HOW TO SOLVE TEXT BASED CAPTCHA IN OB2 ? OCR

Hello @Shieldx1
Here’s how to solve it :

Using your link that you put in your topic (captcha).
I have use this too : How to solve image captchas

BLOCK:HttpRequest
  url = "https://www.smsmatrix.com/cgi-bin/gen_captcha?1658761137"
  TYPE:STANDARD
  $""
  "application/x-www-form-urlencoded"
ENDBLOCK

BLOCK:ByteArrayToBase64String
  bytes = @data.RAWSOURCE
  => VAR @BASE64
ENDBLOCK

BLOCK:SolveImageCaptcha
  base64 = @BASE64
  => VAR @SOLUTION
ENDBLOCK

Capture

1 Like