0% found this document useful (0 votes)
134 views1 page

Raw

This document provides instructions for using a JavaScript script to scrape millions of lines of combos from anonfiles.com. It describes opening developer tools in a browser, pasting the provided script into the console, and letting it run to automatically scrape URLs and output them to a textarea. The script loads more results and scrapes new URLs every 1.5 seconds. A video and pastebin link are provided for demonstration. The script allows easily scraping large amounts of combos with just a few clicks.

Uploaded by

Subodh Ghule
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
134 views1 page

Raw

This document provides instructions for using a JavaScript script to scrape millions of lines of combos from anonfiles.com. It describes opening developer tools in a browser, pasting the provided script into the console, and letting it run to automatically scrape URLs and output them to a textarea. The script loads more results and scrapes new URLs every 1.5 seconds. A video and pastebin link are provided for demonstration. The script allows easily scraping large amounts of combos with just a few clicks.

Uploaded by

Subodh Ghule
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

__ __ ____ _ _ _ _ _ _ ____ _

| \/ |_ __| __ ) _ __(_) | (_) __ _ _ __ | |_( ) / ___|| |__ ___ _ __


| |\/| | '__| _ \| '__| | | | |/ _` | '_ \| __|/ \___ \| '_ \ / _ \| '_ \
| | | | |_ | |_) | | | | | | | (_| | | | | |_ ___) | | | | (_) | |_) |
|_| |_|_(_)|____/|_| |_|_|_|_|\__,_|_| |_|\__| |____/|_| |_|\___/| .__/
|_|
Get Free Premium Accounts Daily On Our Discord Server!

Discord > https://discord.gg/yzWPGnRXkK


Telegram for Backup > https://t.me/+ArjwFnAYeXYzMDM1

So I recently done javaScript course and I made this simple script to get Millions
of combos lines

Video: https://streamable.com/oy05sh

1- First open developer tools in your browser ( Curl + Shift + I ) Or ( F12 )


2- Put this script on the console tap:
let keyword = 'combo';
let domain = 'anonfiles.com';
location.href = `https://duckduckgo.com/?q=site%3A+https%3A%2F%2F${domain}%2F+%22$
{keyword}%22&t=h_&ia=web`;

3- It will open duckduckgo then paste this copy in console tap as will:
ddplace=document.querySelector(".search-filters-
wrap");ddmore=document.querySelector(".result--more__btn");
document.querySelector("#search_form_input").value = "Scraping.....";
function load_more(){
if (document.querySelector(".result--more__btn"))
{document.querySelector(".result--more__btn").click()}
else{document.querySelector("#search_form_input").value = "Scraping Done Made
By: t.me/I01270"}}
function ddscrap_func(){
ddscrap = document.querySelectorAll(".eVNpHGjtxRBq_gLOfGDr");ddresult = [];
for(let i=0; i<ddscrap.length; i++){ddresult.push(ddscrap.href);}
ddinput.value = ddresult.join("\n");ddheight =
16*ddresult.length;ddinput.style.height = `${ddheight}px`;}
ddinput = document.createElement("textarea");ddinput.style.width =
"1000px";ddplace.after(ddinput);ddscrap_func();
setInterval(ddscrap_func, 1500);setInterval(load_more, 1000);

3- It will start scraping URLs just wait and enjoy...

Video: https://streamable.com/oy05sh
Code: https://pastebin.com/raw/dCrvh5dA

You might also like