It should be noted that the NoScript add-on for Firefox prevents this from working through it's Clickjacking-protection (and possibly a couple of more, cursor-specific tricks). People need to know that it does more than block JavaScript.
What website is useable these days though without Javascript?
Cursor:none abuse (trick users into clicking Facebook 'like')
21–30 of 69 posts
Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#22Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#23Interesting. Chrome's "Under the Hood > Content Settings > Mouse Cursor" setting doesn't affect this. I would have thought it would prevent this. Also, stuff like this is why we can't have nice things in browsers. You can't trust the internet.
Given what we've been seeing with attack sites, whether shock sites trying to just DoS the browser or silly tricks like making the browser POST to an irc server's irc port to spread the malicious URL, or just terrible ads and tracking that actively slow down the browser and ruin the surfing experience, I'm amazed that not more people see javascript as a built-in remote code execution vulnerability that only gains mor…
More and more of the applications we use and our private data live in the cloud. We now access our personal files, manage our bank and investment accounts, and make retail purchases on our web browser.
Browsing the web with JavaScript enabled by default allows code written by complete strangers to run on your browser!
Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#24If you give an id (or class) to your p tag that contains the links you said you wanted to make easier to click, then you could use css and easily add a :hover state. Then on the hover state just make the cursor normal so it's easier to click those links. Upon mouseout the cursor will go back to 'normal'. =)
Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#25It should be noted that the NoScript add-on for Firefox prevents this from working through it's Clickjacking-protection (and possibly a couple of more, cursor-specific tricks). People need to know that it does more than block JavaScript.
What website is useable these days though without Javascript?
Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#26I have some input on your todo list: If you give an id (or class) to your p tag that contains the links you said you wanted to make easier to click, then you could use css and easily add a :hover state. Then on the hover state just make the cursor normal so it's easier to click those links. Upon mouseout the cursor will go back to 'normal'. =)
Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#27Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#28Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#29Re: Cursor:none abuse (trick users into clicking Facebook 'like')
#30For everyone talking about JavaScript: As far as I can tell, this is fundamentally a CSS vulnerability. Something quite similar ought to be possible without JavaScript — it would just be a bit less elegant. For example, you could just make a pixel grid of divs to simulate mousemove events and position the fake cursor with CSS hover styles.