seasoned Posted November 20, 2017 Posted November 20, 2017 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
Griunvaldas Posted November 20, 2017 Posted November 20, 2017 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 :)
seasoned Posted November 20, 2017 Author Posted November 20, 2017 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?
ScythLab Posted November 26, 2017 Posted November 26, 2017 (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 November 26, 2017 by ScythLab
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now