98
Open source project fools AI scrapers with poisoned font
(www.theregister.com)
A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.
Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.
Subcommunities on Beehaw:
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
It’s amazing how many people who work in web are clueless about WCAG. Screen readers weren’t even an afterthought here.
Why couldn't a screen reader still work if the words that are on the screen are the correct ones? Does a screen reader not actually read the screen?
It (usually) does not, at least not for websites. Reading the screen would require a lot of computing power and be prone to mistakes, especially with unusual fonts and noisy backgrounds.
Instead, screen readers read a website‘s HTML source code which also gives the developer the chance to annotate how certain elements should be read. Accessibility on the web has been a huge topic for years and serving obfuscated HTML that only works for seeing users goes against everything we have been fighting for.
It seems with today's computer power we could do it, but I understand accessibility needs to work for everyone. I wish I had a better solution.
If you can use the page code instead then you have the information of which blocks of text belong together, and you know with 100% accuracy what character the text contains. And you also have additional information such as which elements are interactive, and, if semantic tags are used correctly, which part is the header, main content, or such.
Besides, scraping can be done with OCR too. Both softwares can use the same tricks, so if screen readers can work using a workaround, then scraping can work with that same workaround too.