Skip to content

Instantly share code, notes, and snippets.

@xputerax
Last active September 1, 2017 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xputerax/0718b046c0e1e2a483551e9100b690d3 to your computer and use it in GitHub Desktop.
Save xputerax/0718b046c0e1e2a483551e9100b690d3 to your computer and use it in GitHub Desktop.
Scrape yougetsignal.com reverse IP result
// run in developer console
var resultset = document.getElementById('results');
var children = resultset.children;
var output = new Array();
for(var i = 1; i<children.length; i++){
var c = children.item(i);
output.push('http://'+c.children[0].innerHTML);
}
console.log(output.join("\n"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment