Skip to content

Instantly share code, notes, and snippets.

@szepeviktor
Created September 19, 2021 09:27
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 szepeviktor/93ba30c30a888892a481be82608e0b9b to your computer and use it in GitHub Desktop.
Save szepeviktor/93ba30c30a888892a481be82608e0b9b to your computer and use it in GitHub Desktop.
research-scanner.com IP addresses
// https://www.shodan.io/search?query=hostname%3Aresearch-scanner.com
var list=[]; document.querySelectorAll(".l-search-results .result .heading .title").forEach(function (item) {list.push(item.textContent.trim());}); console.info(list.join("\n"));
// https://www.greynoise.io/viz/query/?gnql=metadata.rdns%3Aresearch-scanner.com
var list=[]; document.querySelectorAll(".query-results .ip-wrapper div > p:first-child > label.ml-2").forEach(function (item) {list.push(item.nextSibling.textContent.trim());}); console.info(list.join("\n"));
@szepeviktor
Copy link
Author

💡 Both services need free registration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment