Created
September 8, 2023 19:38
-
-
Save Sarverott/beb2b9ee084b647309c64ad83c4770d1 to your computer and use it in GitHub Desktop.
This file contains 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
//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