Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.i = 98
- names = ["gaius", "masklinn", "_delirium", "sant0sk1", "rms", "joshuacc", "btilly", "acangiano", "edw519", "aaronbrethorst", "duck", "wmf", "mbrubeck", "ajross", "cletus", "mixmax", "llambda", "gojomo", "timf", "mahmud", "shawndumas", "protomyth", "tokenadult", "DanielBMarkham", "nreece", "ck2", "ukdm", "petercooper", "michaelochurch", "SwellJoe", "ph0rque", "peter123", "robg", "stcredzero", "patio11", "Alex3917", "jerf", "DanBC", "jrockway", "_pius", "revorad", "johns", "ChuckMcM", "Garbage", "jacques_chester", "swombat", "nostrademons", "danilocampos", "Tichy", "rbanffy", "pyre", "scott_s", "bane", "ColinWright", "yummyfajitas", "potatolicious", "sp332", "ssclafani", "mtgx", "jacquesm", "jashkenas", "evo_9", "fogus", "blasdel", "sliverstorm", "philwelch", "RyanMcGreal", "anigbrowl", "wheels", "tlrobinson", "grellas", "steveklabnik", "tptacek", "bensummers", "rayiner", "InclinedPlane", "jlgreco", "icey", "danso", "staunch", "DanielRibeiro", "jamesbritt", "wallflower", "sethbannon", "cperciva", "wglb", "rdl", "lionhearted", "raganwald", "noonespecial", "mcantelon", "taylorbuley", "mikeash", "Anon84", "jonknee", "davidw", "pavel_lishin", "kenjackson", "abraham", "jgrahamc"]
- window.interval = setInterval(function(){
- reset_button_text = $("#btn-reset").text();
- public_address_text = $("#public-address").val();
- if(reset_button_text == "Running..."){
- console.log("running...");
- } else if(reset_button_text == "Clear & reset" && public_address_text != ""){
- // check to see if we've got it
- if(public_address_text == "1GXXH7FbY7nCJDRc72SMyYykgtEUi5GxfR"){
- // if(public_address_text == "1LB5B5QXJacesNrTqSsQsR6neuY3rAfC1u"){
- alert('found it! pw=' + window.pass);
- clearInterval(window.interval)
- } else {
- // we didn't get it
- // increment i and click reset so we can go again
- console.log(public_address_text + " != 1GXXH7FbY7nCJDRc72SMyYykgtEUi5GxfR" )
- window.i++;
- $("#btn-reset").click();
- }
- } else {
- name = names[i];
- window.pass = name.substring(0,name.length-2);
- console.log("trying pw=" + window.pass + " (i=" + window.i + ")");
- $("#passphrase").val(pass).keyup();
- $("#btn-submit").click();
- }
- }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment