Andy Reid@lemmy.world to Technology@lemmy.worldEnglish · 9 months agoAI companies are violating a basic social contract of the web and and ignoring robots.txtwww.theverge.comexternal-linkmessage-square39fedilinkarrow-up17arrow-down10cross-posted to: technology@beehaw.org
arrow-up17arrow-down1external-linkAI companies are violating a basic social contract of the web and and ignoring robots.txtwww.theverge.comAndy Reid@lemmy.world to Technology@lemmy.worldEnglish · 9 months agomessage-square39fedilinkcross-posted to: technology@beehaw.org
minus-squareBrianTheeBiscuiteer@lemmy.worldlinkfedilinkEnglisharrow-up1·9 months agoIf it doesn’t get queried that’s the fault of the webscraper. You don’t need JS built into the robots.txt file either. Just add some line like: here-there-be-dragons.html Any client that hits that page (and maybe doesn’t pass a captcha check) gets banned. Or even better, they get a long stream of nonsense.
minus-square4am@lemm.eelinkfedilinkEnglisharrow-up1·9 months agoserver { name herebedragons.example.com; root /dev/random; }
minus-squarePlexSheep@feddit.delinkfedilinkEnglisharrow-up1·9 months agoNice idea! Better use /dev/urandom through, as that is non blocking. See here.
minus-squaregravitas_deficiency@sh.itjust.workslinkfedilinkEnglisharrow-up0arrow-down1·9 months agoI actually love the data-poisoning approach. I think that sort of strategy is going to be an unfortunately necessary part of the future of the web.
If it doesn’t get queried that’s the fault of the webscraper. You don’t need JS built into the robots.txt file either. Just add some line like:
Any client that hits that page (and maybe doesn’t pass a captcha check) gets banned. Or even better, they get a long stream of nonsense.
server {
name herebedragons.example.com; root /dev/random;
}
Nice idea! Better use
/dev/urandom
through, as that is non blocking. See here.I actually love the data-poisoning approach. I think that sort of strategy is going to be an unfortunately necessary part of the future of the web.