Jump to content

Recommended Posts

Posted

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

Posted

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 :)

Posted
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?

Posted (edited)

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

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...