Graybeard
Well-Known Member
I found this on a referral website on Google News .> US coronavirus economic relief package - Schumer says vote could come on Sunday
I extracted the 'names' they used to a csv list the made a DOS *.txt file it's attached
the LINUX/UNIX file is /badbotlist.csv.txt
There are 2797 names badbotlist.csv
no guarantees but I looked and recognized many names I am currently blocking
USE WITH CAUTION
The script in the HTML source crashed my text editor the names are in one very long line
opens with Kate (LINUX) better edited in nano
Good luck to the winners --he made google news search for reason that the scraper, spy and link check bots were banned --could be
It may be just his googletag
I extracted the 'names' they used to a csv list the made a DOS *.txt file it's attached
the LINUX/UNIX file is /badbotlist.csv.txt
There are 2797 names badbotlist.csv
no guarantees but I looked and recognized many names I am currently blocking
USE WITH CAUTION
The script in the HTML source crashed my text editor the names are in one very long line
opens with Kate (LINUX) better edited in nano
Good luck to the winners --he made google news search for reason that the scraper, spy and link check bots were banned --could be
It may be just his googletag
Code:
<script>
function checkIfUserBot() {
let isUserBot = false;
const blackBotsList = "the list"for (let i = 0; i < blackBotsList.length; i++) {the list
if (window.navigator.userAgent.indexOf(blackBotsList[i]) != -1) {
isUserBot = true;
break;
}
}
return isUserBot;
}
<script>
const isUserBot = checkIfUserBot();
if (!isUserBot) {
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
... see source ...
</script>
Attachments
Last edited: