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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock