Created
March 7, 2017 03:26
-
-
Save Kowiz/b7ce0d54e117abd54084ad30c7a67f97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a = document.getElementsByTagName("a"); | |
for(i=0;i<a.length;i++){ | |
if(a[i].innerHTML == "Reveal Key"){ | |
a[i].click(); | |
} | |
} | |
var string=""; | |
var input= document.getElementsByTagName("input"); | |
for(i=1;i<input.length;i=i+2){ | |
if(input[i].type == "text"){ | |
string += input[i].value+","; | |
} | |
} | |
console.log(string); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment