Script Request

Subscribe to Script Request 7 posts, 5 voices

 
Beaker User

If anyone fancies doing me a lil script i need one for image verifications. I admit it is for an online game, i script it, but they have image verifications every certain amount of clicks, the game is www.codeofconflict.com if anyone can make a greasemonkey script that will automatically get me past it, or anything so i don't have to type it in myself,i would be very grateful

 
Joel H Scriptwright

I don't want to make a fake login to the game to test it, but my guess is that it's not possible; if they are what I think they are (what letters appear in this image?) then they are designed to not be scriptable.

-Joel

 
LouCypher Scriptwright

Joel is right. If JS can read images, there would be no image verifications in the first place.

 
Descriptor Scriptwright

Usually the images are randomly generated on the server and the code is part of the session ID, no way to crack it unless maybe you know what key the server is using, or by making many random guesses.
JavaScript can not possibly "read" images at all.

I can't imagine why a game would use it, they must have a problem with spammers, or maybe it's to prevent bots?

 
Beaker User

Damn, its so people cant use an automouse or reloadevery on the game, so people have to play fairly, but i like to go and leave a script on, but the image verification stops it.... thought there would be a way around it, but guess i was wrong....

 
vOidSenses Scriptwright

well, there is, but not just by using a script, you need something to "read" the image code, it's called an OCR program, basically the program scans the image and tries to separate it's difference components, imagine you have a magazine, you put a scan of a page in the OCR program and the program converts to a file (normally people prefer pdf format) where the elements are divided and editable, it's like converting an image to a word document, with images and text... but people sometimes use it to pass verification images (when not too complex) to do it you need a macro program (which substitutes the script you want to make) which will use the result of the OCR program to pass the image verification, but it might be too complex to do

to give you an example there are people using this method to download stuff in rapidshare servers, basically they use a macro program that after downloading something will restart you internet connection (to give you a different ip address) go to the new download page and use the OCR program to pass the image verification in the site

 
Beaker User

Ah i see, very genius.... Any chance of a step by step guide on how to use it?