20 comments

  • janmo13 minutes ago
    There is also a technique where they ask you to press: Win + R + CRTL + V + ENTER to verify that you are human.<p>This will install malware code that was put in the clipboard by using javascript.
  • denuoweb19 minutes ago
    Lots of people suggesting that double click here means to click the mouse twice quickly but I believe it refers to clicking submit (once), then clicking the pop up button (once), to get two total clicks.
  • steven_noble13 minutes ago
    The article’s headline says it’s a new technique. The article’s body does not really say this.
  • maxrmk9 hours ago
    This is clever, and I got a good laugh out of their example video. The demo UI of &quot;Double click here&quot; isn&#x27;t very convincing - I bet there&#x27;s a version of this that gets people to double click consistently though.
    • seanwilson4 hours ago
      Why stop at double-click? &quot;Click here 10 times quickly to confirm you&#x27;re human&quot;. Or some kind of clicker game.
      • temporallobe3 hours ago
        Like in reCAPTCHA (v2 at least) where it asks users to click on tiles to identify common objects like bridges or motorcycles. Surely one could conjure up a fake version of this.
    • chatmasta7 hours ago
      The exploit would be more effective if it obfuscated the UI on the authorization (victim) page. Right now, even if you double click a convincing button, it’s extremely obvious that you just got duped (no pun intended).<p>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.<p>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.<p>Back in the day, this trick was used for clickjacking Digg upvotes.
      • joshfraser7 hours ago
        You can change the visibility of the target page so they wouldn&#x27;t know
        • chatmasta4 hours ago
          How? You don&#x27;t control the DOM on that. You can adjust the window prior to changing its location but that&#x27;s it.
          • pockmarked192 hours ago
            It’s an HN truth, it means it needs no evidence or explanation.
    • bee_rider7 hours ago
      Hmm. I guess it is never impossible that there’s a version of something that will trick people consistently. But, I’m kinda struggling to recall a time I’ve needed to double click on a website.<p>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.<p>Telling people to double click is, I think, mostly dead.
      • foobazgt7 hours ago
        My mother constantly struggles between when to double click or not after decades of using computers. This is probably an issue that will die out with her generation, though.<p>Entirely separate, a common failure mode of dying mice is that they start generating spurious clicks. I&#x27;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.
        • JadeNB6 hours ago
          &gt; Entirely separate, a common failure mode of dying mice is that they start generating spurious clicks.<p>Speaking of things dying out, it&#x27;s been so long since I used anything but a trackpad that I thought at first this was some strange claim about rodents!
      • chatmasta7 hours ago
        It doesn’t need to be a literal double click. It could be something like a CAPTCHA “confirm you’re human,” where you click once, it appears to load, and then you click a confirm button. Do it fast enough and it might appear like a double click.<p>Not sure this would work with the exploit though.
      • hansvm5 hours ago
        YouTube gets me to double-click on occasion:<p>- The page mostly loads<p>- An ad starts playing<p>- I attempt to hit &quot;pause&quot; while I go handle a thing or two [0]<p>- As I&#x27;m about to click &quot;pause&quot;, the layout shifts to the left exactly enough for me to unmute the ad<p>- I immediately click again to stop listening to whatever scam is currently being peddled<p>[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&#x27;t a real person watching the ad (browser not focused, ad muted, ...).
      • dylan6046 hours ago
        Google drive and similar sites use double click for folders to open similar to a regular OS would. Single click tends to show some metadata where the double click does the actual navigation.<p>it pisses me off
  • joshfraser6 hours ago
    Back in 2013 I discovered that you could use clickjacking to trick someone into buying anything you wanted from Amazon (assuming they were signed in). It took them almost a year to fix the issue. They never paid me a bounty.<p><a href="https:&#x2F;&#x2F;onlineaspect.com&#x2F;2014&#x2F;06&#x2F;06&#x2F;clickjacking-amazon-com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;onlineaspect.com&#x2F;2014&#x2F;06&#x2F;06&#x2F;clickjacking-amazon-com&#x2F;</a>
    • superq5 hours ago
      On that note, <a href="https:&#x2F;&#x2F;github.com&#x2F;aws&#x2F;aws-codedeploy-agent&#x2F;issues&#x2F;30">https:&#x2F;&#x2F;github.com&#x2F;aws&#x2F;aws-codedeploy-agent&#x2F;issues&#x2F;30</a>
    • paulpauper4 hours ago
      Bug bounties are kind of a joke. they will invent almost any reason to not pay. it has to be something where the site is malfunctioning, not CSS tricks, which has to do with the browser , not the vendor. Clickjacking can work on any site, not just Amazon.
  • efortis3 days ago
    I think the suggested mitigation will only work when the user double-clicks without moving the mouse.<p>So I&#x27;d try adding a small timeout when the tab is visible:<p><pre><code> document.addEventListener(&quot;visibilitychange&quot;, () =&gt; { if (!document.hidden) setTimeout(enableButtons, 200) })</code></pre>
    • efortis7 hours ago
      and `disableButtons` on `document.hidden`
  • cryptonector1 hour ago
    And this is a great reason to us Firefox&#x27;s containers feature.
  • lapcat1 hour ago
    It appears that you can replace double-click with command-click, and listen for keydown rather than mousedown.
  • jmull3n1 hour ago
    This would be super effective as a form submit button that doesn’t respond, tricking the user into rage clicking
  • sharpshadow11 hours ago
    New fear unlocked lazy cookie consent banners.
  • Dwedit4 hours ago
    In other words, a social engineering attack to trick people into authorizing something they did not want to authorize.<p>Related XKCD: <a href="https:&#x2F;&#x2F;www.explainxkcd.com&#x2F;wiki&#x2F;index.php&#x2F;2415:_Allow_Captcha" rel="nofollow">https:&#x2F;&#x2F;www.explainxkcd.com&#x2F;wiki&#x2F;index.php&#x2F;2415:_Allow_Captc...</a>
  • Vortigaunt7 hours ago
    Thankfully this shouldn&#x27;t become a large problem, because websites simply don&#x27;t load that quick
    • joshfraser7 hours ago
      It could be preloaded
      • cryptonector1 hour ago
        I understood GP&#x27;s joke, but I don&#x27;t understand yours.
  • gwbas1c8 hours ago
    I&#x27;m a little skeptical that this is a real exploit.<p>When I watched the Salesforce video, <i>the exploit was demonstrated by pointing the browser at a file on disk,</i> not on a public website. I also don&#x27;t understand the &quot;proof,&quot; IE, something showed up in the salesforce inbox, but I don&#x27;t understand how that shows that the user was hacked. It appears to be an automated email from an identity provider.<p>I also don&#x27;t understand when the popup is shown, and what the element is when the popup is closed.<p>Some slow-mo with highlighting on the fake window, and the &quot;proof of exploit,&quot; might make this easier to understand and demonstrate
    • akersten8 hours ago
      It&#x27;s also not a novel threat model. For example prior art, the browser confirmation dialogs in Firefox at least don&#x27;t enable their buttons until the window has had focus for 500ms or so. Possibly to avoid inadvertently unintentionally clicking &quot;run&quot; on a recently downloaded item, but it solves for this too and I wouldn&#x27;t be shocked if this was on their mind too.<p>If I were running some site where pressing a button does some kind of auth that I really want a user to read, that seems like a reasonable mitigation compared to the hyperbole found in the article:<p>&gt; This technique seemingly affects almost every website
  • yellow_lead10 hours ago
    Am I mistaken or does this require the user to allow pop-ups?
    • gruez10 hours ago
      Default configuration for most browsers is to allow popups if it was initiated by a user action.
  • gnabgib4 days ago
    Title: <i>DoubleClickjacking: A New Era of UI Redressing</i>
  • krunck10 hours ago
    Browser content should never be able to modify the configuration of my desktop window layout by opening a new window. There I said it.
    • KTibow7 hours ago
      TFA doesn&#x27;t use separate windows, only separate tabs.
    • NoMoreNicksLeft8 hours ago
      Agreed, but I think this was a workaround for early web apps that existed in the primitive days. You&#x27;d need two webpages of the same site open to complete some task, but the apps weren&#x27;t sophisticated enough to do that within a single window&#x2F;tab. Once they did it back then, now too many web apps and workflows would suffer if they just killed that functionality entirely, too many users would scream.
  • bangaladore9 hours ago
    Bit off topic, but what&#x27;s the reasoning behind messing with the native browser scroll here. Almost gets me motion sick when scrolling through this article.
    • packtreefly8 hours ago
      It is the height of irony to me that a blog post complaining about clickjacking is presented on a website that is guilty of scrolljacking.
      • thoughtpalette8 hours ago
        I thought the same. Glad to see it called out here. Maybe that&#x27;s the post for next week...
        • mediumsmart7 hours ago
          the scrolling is almost normal in librewolf - but that is with privacy badger blocking 14 trackers on that page ...
    • technion8 hours ago
      Marketing people have demanded this on many websites sites I&#x27;ve been involved with. Don&#x27;t ask me why.
      • btown7 hours ago
        My hypothesis on this is that marketers who have personal MacBooks but are forced to use Windows computers at work, with mice with notched scroll wheels, find JS-driven smooth scrolling to be superior to the native snapping experience they see at work on many websites. But it wreaks havoc on people who already have computers with native high-resolution trackpads. Alas, the folks at big companies care more about their at-work than at-home experience, and it&#x27;s been cargo-culted to smaller companies now as well. The conversation &quot;detect if there is indeed a trackpad being used&quot; never even comes up.
      • ndriscoll8 hours ago
        Maybe the industry should develop a secret header we can all have our browser send to disable this sort of thing. Like `X-Shibboleet: true`.
      • dmix8 hours ago
        What is it? Smooth scrolling?
        • bangaladore8 hours ago
          From the html:<p>&#x2F;&#x2F; SmoothScroll for websites v1.2.1
          • hombre_fatal7 hours ago
            You&#x27;d think the library would first check for macOS&#x2F;iOS which already has far superior smooth scrolling.
          • braiamp8 hours ago
            And this is why NoScript is a required extension. Matrix if you use Chromium based browsers.
    • p3rls3 hours ago
      Nah in my opinion it needs more acceleration, really why not just basically remap my mousewheel to home&#x2F;end
  • IshKebab11 hours ago
    Eh, it&#x27;s hardly seamless, and double clicking is extremely uncommon on the web so that would be a big red flag.
    • Etheryte10 hours ago
      I couldn&#x27;t even begin to count how many bug reports I&#x27;ve seen over the years that start with &quot;when I accidentally double-click foo, bar happens&quot;. It might not be an intentional usage pattern, sure, but that doesn&#x27;t mean it doesn&#x27;t happen a lot.
      • kevinsync7 hours ago
        Yeah, I have no data beyond anecdotal to back this up, but I witness A LOT of people double-clicking everything, regardless of what it is. I assume it&#x27;s because they only got so far in &quot;computer&quot; as to learn &quot;click + drag to move, double-click to open a program or file&quot;. Link on a web page? I want to open that!
    • uhoh-itsmaciek10 hours ago
      Google Drive uses it as an interaction pattern. I find that baffling, but while uncommon, it&#x27;s not totally absent. And as others have pointed out, many users carry over their expectation of having to double-click from desktop interfaces.
    • recursive9 hours ago
      I double click to select text all the time. Get your flags ready.
      • bangaladore8 hours ago
        I&#x27;d laugh if an effective way to present this is:<p>CAPTCHA:<p>Please copy `qwertyuiopasdfhkl`<p>Into here `&lt;textbox&gt;`<p>Edit: Quick (ai mockup) concept... <a href="https:&#x2F;&#x2F;imgur.com&#x2F;mc0IdEA" rel="nofollow">https:&#x2F;&#x2F;imgur.com&#x2F;mc0IdEA</a> Obviously it would be most effective with a longer string though.
    • kazinator9 hours ago
      Web browsers and the applications on them have become extremely memory hungry. Memory management pauses are common and people click multiple times irately.
    • giantrobot11 hours ago
      Double clicking on the web is extremely common with older less technically adept users. This same cohort is also the most susceptible to scams.
      • bangaladore9 hours ago
        Another obvious case of double click is to select all text in a given area. This one is a bit more obscure though.<p>Edit: Actually that&#x27;s generally I guess triple click. Double to select a word.
      • waltwalther10 hours ago
        This. I have told my eighty-year-old parents this many times over the years, but it doesn&#x27;t seem to stick.
        • Moru10 hours ago
          I see a lot of people doubleclicking on the web. Both young and old.
        • NotYourLawyer10 hours ago
          I’ve tried to explain it many times too, but I can’t really articulate a good, comprehensive rule for when to single and when to double click.
          • cobbal9 hours ago
            Another complicating factor that many less-tech-literate don&#x27;t have a good internal model for is window focus. I&#x27;ve seen several people try and single-click on a not focused web button, only for nothing to happen. When they click again, the button is activated. They then learn to always double click that button.<p>Having a mental model of &quot;this button needs to be double clicked&quot; gets them the result they want, even if that&#x27;s not a very accurate reflection of the computer.
          • wat100007 hours ago
            In theory: if you’re clicking on a UI element that has some notion of being selected, then a single-click selects it, and you need a double-click to take an action on it. If there’s no notion of selection, then a single click takes an action.<p>In practice: adherence to this ranges from perfect to abysmal. And users who don’t understand the computer well may not know how to think about whether a given UI element is selectable or not.
          • Pxtl8 hours ago
            When you&#x27;re on windows and not in the browser, you double-click to launch a file or program in the Explorer (which also is what runs the desktop). Single-click is select.<p>So, the rule:<p>List of files on your computer or desktop? Double-click. Otherwise? Don&#x27;t.
            • NotYourLawyer7 hours ago
              What if I’m opening an email in Outlook? What if I’m looking at something in Control Panel? (That one’s a trick question, since the answer has changed in modern Windows versions.)
              • Pxtl6 hours ago
                I&#x27;d say don&#x27;t do that. Who reads emails?<p>Although seriously, I find I never break out of the preview in Outlook email. The only spot in Outlook where I really <i>need</i> to double-click is the calendar. Which is annoying.
    • doublerabbit10 hours ago
      &gt; double clicking is extremely uncommon on the web so that would be a big red flag.<p>You&#x27;ve never had a slow internet connection have you? I&#x27;ve seen double clicking from all users in the office. Comes from frustration.<p>How many times have you tried to open an application; for it not open? So you click the icon again only for two windows to split open?<p>Young, old, even techs. It&#x27;s not as uncommon as you think.
      • psygn895 hours ago
        I&#x27;ve had a few worn mouses register double clicks upon a single click. It happens inhumanly fast and users won&#x27;t realize it until using an app that reacts to double clicks.
      • portaouflop9 hours ago
        I’ve even triple or quadruple clicked sometimes with disastrous results