Skip to content

Instantly share code, notes, and snippets.

@DragorWW
Created September 24, 2015 03:39
Show Gist options
  • Save DragorWW/cccd25142ae59fcebf6a to your computer and use it in GitHub Desktop.
Save DragorWW/cccd25142ae59fcebf6a to your computer and use it in GitHub Desktop.

Revisions

  1. DragorWW created this gist Sep 24, 2015.
    91 changes: 91 additions & 0 deletions ingress-passcode.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,91 @@
    // go to https://www.ingress.com/intel
    // open passcode popup
    // open console
    // add jquery
    var jq = document.createElement('script');
    jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
    document.getElementsByTagName('head')[0].appendChild(jq);

    // add pascode
    // passcode by this list - http://pastebin.com/XQLGzRqi
    pass = [
    'Cube8aa87xd2',
    'eVoLvE7Yo65nm9',
    'phillips6wc29mc7'
    'voynich6sx52zr5',
    'kureze2sg38gt2',
    'chaotic5gg23pf9',
    'blue3dg99cm6',
    'ada3zc36qq9',
    'moyer4wr38qz8',
    'tycho9uo99qa2',
    'voynich8cg82pb6',
    'hubert6db54fa6',
    'wolfe7jq38cj3',
    'green7dv85mp8',
    'timezero2kk78gx5',
    'Moyer5pp56fg2',
    'johnson3ba26qb2',
    'roland8cx62mk4',
    'niantic9ns77ww9',
    'green3ou25jt4',
    'evolve5uu33zd4',
    'jarvis5ye63mv9',
    'cern5wu99oq2',
    'spacetime7ap46rr6',
    'CASSANDRA2YU35CP6',
    'resonate3yd72he7',
    'niantic4rv29wc6',
    'portal7cc88cd2',
    'glyphs6gj75yq2',
    'tycho7vu99ta2',
    'resonate6wb48ec4',
    'jackland8vf92qz5',
    'ezekiel7eu89au4',
    'drone5sg25ez6',
    'kureze3ft26jc6',
    'ni7up28fu6',
    'hulong7tr85ub6',
    'MINOTAUR8DM83GG5',
    'hubert4su42qt2',
    'inveniri2hc78yy4',
    'drone9rc88jy5',
    'glyph7jb25yw3',
    'ingress9tu32jk7',
    'powercube3hu72ut7',
    'symbols4ye57bs7',
    'evolution6xu68ru7',
    'ezekiel3xh34ug4',
    'susanna3ku75cm9',
    'ingress3nd85fu9',
    'blue2xc26da2',
    'artifact3ne73hh3',
    'creativity2pc98zp5',
    'inveniri2he69ar3',
    'johnson4yn13db2',
    'lightman4tm34zf3',
    'algorithm9ek27ux3',
    'glyph6yt84kt8',
    'creative3vk97yv4',
    'field4mo46jx6',
    'deaddrop7dt73am6',
    'ada9yv83mp5',
    'algorithm9gh35cj3',
    'bletchley9ob65ca4',
    'conflict5av38pw2',
    'field5jk36yh6',
    'johnson3fx84aw9',
    'lightman8nd48zb2',
    'message5ka73rp4',
    'vi8zu85il7',
    'vi9bb02fk7',
    'vi9rp62ex1',
    ];

    pass.forEach(function(pass,i) {
    setTimeout(function() {
    console.log('enter passcode:', pass, i);
    $('#passcode').val(pass);
    $('#submit').click()
    },i*3000);
    });