Skip to content

Instantly share code, notes, and snippets.

@Sarverott
Created September 8, 2023 19:38
Show Gist options
  • Save Sarverott/beb2b9ee084b647309c64ad83c4770d1 to your computer and use it in GitHub Desktop.
Save Sarverott/beb2b9ee084b647309c64ad83c4770d1 to your computer and use it in GitHub Desktop.
//espesialy helpfull to extract large amounts of google dorked objects to research
console.log(
Array.from(
document.querySelectorAll(".yuRUbf a")
).filter(
(x)=>!x.href.includes("google")
).map(
(x)=>x.href
).join("\n")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment