RECAPAChA V3

Hi ,
i tried to bypass Recapatcha V3 by doing this

BLOCK:HttpRequest
LABEL:CONECT
  url = "https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LcMbO8ZAAAAAOlmNEPLCtdhqbGu7tvXT890fW_8&co=aHR0cHM6Ly93d3cudnBuY2l0eS5jb206NDQz&hl=en&v=-TriQeni1Ls-Mdq_ssN2cUL5&size=invisible&cb=mp4vunx9wtvq"
  TYPE:STANDARD
  $""
  "application/x-www-form-urlencoded"
ENDBLOCK

BLOCK:Parse
LABEL:TK
  input = @data.SOURCE
  leftDelim = "type=\"hidden\" id=\"recaptcha-token\" value=\""
  rightDelim = "\""
  MODE:LR
  => VAR @TK
ENDBLOCK

BLOCK:HttpRequest
LABEL:POST
  url = "https://www.google.com/recaptcha/api2/reload?k=6LcMbO8ZAAAAAOlmNEPLCtdhqbGu7tvXT890fW_8"
  method = POST
  TYPE:STANDARD
  $"v=TriQeni1LsMdqssN2cUL5&reason=q&c=<TK>&k=&co=&hl=en&size=invisible&chr=%5B89%2C64%2C27%5D&vh=13599012192&bg="
  "application/x-www-form-urlencoded"
ENDBLOCK

BLOCK:Parse
LABEL:TR
  input = @data.SOURCE
  leftDelim = "[\"rresp\",\""
  rightDelim = "\""
  MODE:LR
  => VAR @TR
ENDBLOCK

but i still have this

Screenshot 2021-10-04 154453

can anyone help me with that ?

1 Like

Add the

&k=<sitekey>

in the post data

it doesn’t work for me my friend

maybe it uses V2 not V3

@maxweel You Have Done it pretty much wrong my friend, replace your Lilicode with this

BLOCK:HttpRequest
LABEL:CONECT
  url = "https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LcMbO8ZAAAAAOlmNEPLCtdhqbGu7tvXT890fW_8&co=aHR0cHM6Ly93d3cudnBuY2l0eS5jb206NDQz&hl=en&v=-TriQeni1Ls-Mdq_ssN2cUL5&size=invisible&cb=mp4vunx9wtvq"
  TYPE:STANDARD
  $""
  "application/x-www-form-urlencoded"
ENDBLOCK

BLOCK:Parse
LABEL:TK
  input = @data.SOURCE
  leftDelim = "#recaptcha-token"
  rightDelim = "innerText"
  xPath = "//*[@id=\"recaptcha-token\"]"
  pattern = "id=\"recaptcha-token\" value=\"(.*?)\""
  outputFormat = "[1]"
  MODE:Regex
  => VAR @TK
ENDBLOCK

BLOCK:HttpRequest
LABEL:POST
  url = "https://www.google.com/recaptcha/api2/reload?k=6LcMbO8ZAAAAAOlmNEPLCtdhqbGu7tvXT890fW_8"
  method = POST
  customHeaders = {("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36"), ("Pragma", "no-cache"), ("Accept", "*/*"), ("Accept-Language", "en-US,en;q=0.8"), ("referer", "https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LcMbO8ZAAAAAOlmNEPLCtdhqbGu7tvXT890fW_8&co=aHR0cHM6Ly93d3cudnBuY2l0eS5jb206NDQz&hl=en&v=-TriQeni1Ls-Mdq_ssN2cUL5&size=invisible&cb=mp4vunx9wtvq")}
  TYPE:STANDARD
  $"v=TriQeni1LsMdqssN2cUL5&reason=q&c=<TK>&k=6LcMbO8ZAAAAAOlmNEPLCtdhqbGu7tvXT890fW_8&co=&hl=en&size=invisible"
  "application/x-www-form-urlencoded"
ENDBLOCK

BLOCK:Parse
LABEL:TR
  input = @data.SOURCE
  leftDelim = "[\"rresp\",\""
  rightDelim = "\""
  pattern = "\\[\"rresp\",\"(.*?)\""
  outputFormat = "[1]"
  MODE:Regex
  => VAR @TR
ENDBLOCK

It is detecting u as a human because the min score for v3 is 0.3

greetings, I tried to solve it this way with recapatch but it doesn’t work, does it work otherwise or is it impossible to bypass recapatch?