html - Greasemonkey script for auto-fill form and submit automatically -



html - Greasemonkey script for auto-fill form and submit automatically -

as title suggests, want brute-force (don't pay attention, useless information) using grease-monkey script trying each word/alphabet provide. think jquery more easier javascript , embed jquery in it. sec thing thats bugging me submit form specific value.

and there way store values...like if "abcd" did not work in input field page refresh un-intelligent script won't able observe word did not work already..and seek same "abcd" word again.

sorry vague details

var lasttried = parseint(gm_getvalue("last", "-1")); //gm_* not work on chrome best of knowledge, have utilize cookies in case. if((docik.location.href == addressa) || (docik.location.href == addressa?error)) //for example, pseudo code { if(lasttried < wordstotry.length){ lasttried++; form.data.value = wordstotry[lasttried]; //form.data.value more pseudo code, wordstotry array of words going provide gm_setvalue("last", lasttried.tostring()); form.submit(); } } else //address b { //success }

html firefox webforms greasemonkey

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -