116 points by shinzub 4 days ago | 60 comments
joshfraser 3 hours ago
https://onlineaspect.com/2014/06/06/clickjacking-amazon-com/
superq 2 hours ago
paulpauper 2 hours ago
maxrmk 6 hours ago
seanwilson 58 minutes ago
temporallobe 36 seconds ago
chatmasta 4 hours ago
Sure, maybe the attacker can abuse the access privileges before you have a chance to revoke them. But it’s not exactly a smooth clickjacking.
I’d start by changing the dimensions of the parent window (prior to redirecting to victim) to the size of the button on the target page - no need to show everything around it (assuming you can make it scroll to the right place). And if the OAuth redirects to the attacker page, it can restore the size to the original.
Back in the day, this trick was used for clickjacking Digg upvotes.
joshfraser 4 hours ago
chatmasta 2 hours ago
bee_rider 4 hours ago
Actually the double-click action is pretty rare nowadays, right? In particular, I use it a lot to select a word in a terminal, but most of the time when I am getting UI instructions it is from a website about how to use the website itself, and since that’s a website it has to be abstract enough to also make sense for mobile users.
Telling people to double click is, I think, mostly dead.
hansvm 2 hours ago
- The page mostly loads
- An ad starts playing
- I attempt to hit "pause" while I go handle a thing or two [0]
- As I'm about to click "pause", the layout shifts to the left exactly enough for me to unmute the ad
- I immediately click again to stop listening to whatever scam is currently being peddled
[0] For some videos I like to read the description before watching. For all videos I like to make it as obvious as possible to Google that there isn't a real person watching the ad (browser not focused, ad muted, ...).
foobazgt 4 hours ago
Entirely separate, a common failure mode of dying mice is that they start generating spurious clicks. I've had a couple of logitechs do this to me. And the thing about scams is you can often legit make money off of very low success rates.
JadeNB 3 hours ago
Speaking of things dying out, it's been so long since I used anything but a trackpad that I thought at first this was some strange claim about rodents!
chatmasta 4 hours ago
Not sure this would work with the exploit though.
dylan604 4 hours ago
it pisses me off
Vortigaunt 4 hours ago
joshfraser 4 hours ago
efortis 4 days ago
So I'd try adding a small timeout when the tab is visible:
document.addEventListener("visibilitychange", () => {
if (!document.hidden)
setTimeout(enableButtons, 200)
})
efortis 4 hours ago