Jump to content

LF AUTO-CAPTCHA script


seasoned

Recommended Posts

Hello friends. 

I'm looking for an auto-captcha script (any server). I just want to see the string attached. 

Not the captcha alarm, but captcha auto - answering. 

 

It would be great if someone could help me out. Thanks

Link to comment
Share on other sites

In most servers CAPTCHA is sent as image, so OCR (Optical Character Recognizing) should be used to decode that.

I don't think you are going to get this shared :)

Link to comment
Share on other sites

5 hours ago, Griunvaldas said:

In most servers CAPTCHA is sent as image, so OCR (Optical Character Recognizing) should be used to decode that.

I don't think you are going to get this shared :)

 

In case of numbers or letters, where you are asked to type smth, is there any solution?

Link to comment
Share on other sites

How does it help you?

 

Simple code for simple captcha system:

var
  html: string;
  p1, p2: Integer;
  number: string;
begin
  html := ....
  if (Pos(html, 'CAPTHCA') > 0) then
  begin
    p1 := Pos(html, 'number: ');
    p1 := p1 + Length('number: ');
    p2 := Pos(html, ' ', p1);
    number := Copy(html, p1, p2 - p1);
    ByPassToServer('someact=' + number);
  end;
end;

Edited by ScythLab
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...