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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...