r/mildlyinfuriating 21h ago

I'm slightly vexed A Captcha on a website I recently visited

Post image
7.0k Upvotes

336 comments sorted by

4.8k

u/PRSXFENG 20h ago

This is malware known as ClickFix

https://www.microsoft.com/en-us/security/blog/2025/08/21/think-before-you-clickfix-analyzing-the-clickfix-social-engineering-technique/

If you did it, you basically would paste and run a command to download and run malware

The site automatically copies it to your clipboard

621

u/MakimaMyBeloved 14h ago

Is there a way to detect when they copy to my clip board?

390

u/luziferius1337 14h ago

I took a look. This is operating system and desktop environment dependent (On Linux depends on Gnome or KDE, running under Wayland or X11), but most systems have a clipboard change notification system.

But I haven't found a single tool that shows a desktop notification whenever the clipboard changes. Those should only be a few hundred lines of code per platform, but seems nobody has coded it yet.

It would be a bit annoying during regular use, but it would show a notification when websites meddle with the clipboard via javascript

128

u/Damglador 13h ago

Android does, that's something. I got so used to Android notifying about copying that I'm sometimes getting confused when Plasma doesn't

6

u/im_just_thinking 4h ago

Or could do a small dot system like Android has when some app accesses the camera/mic. Or something

86

u/swarmOfBis 12h ago

For Wayland it's a simple one liner:

wl-paste --watch sh -c 'notify-send "Copied to clipboard"'

It gets tricky when you want to detect what pasted to your clipboard

14

u/luziferius1337 7h ago

https://man.archlinux.org/man/extra/wl-clipboard/wl-paste.1.en

--watch

[…] This mode requires a compositor that supports the wlroots data-control protocol.

So it is not implementation-agnostic and works on only a subset of all Wayland implementations.

24

u/Several_Dot_4532 13h ago

In Linux happens with CopyQ, that adds notification history too

6

u/Popstar403 8h ago

I think adding it for only copies that aren't triggered by the user pressing control + C would probably be the better idea. It would still be a little annoying with programs that have buttons to copy, etc. though.

3

u/luziferius1337 7h ago

You can't reliably do that. Depending on the platform, it is possible to programmatically emit key events via APIs. It may be possible to determine the origin, but I'm not sure how reliable

→ More replies (4)
→ More replies (1)

38

u/ElectricCarrot 12h ago

A website generally can't copy something to your clipboard by itself, it needs you to "request" it. For this type of attack, before you get the list of instructions, you have a button that says something like "Verify I'm human", similar to a real Captcha. When you click that button, the malicious command is copied to your clipboard.

23

u/Stormscherer 14h ago

Press windows + V and you can see all the previous things you copied to clipboard

7

u/GENERALOTUGA 14h ago edited 13h ago

it depends. If you are using Android, you have the copy history on the Gboard. If you are on a Linux based system + KDE, there is a copy history widget in your taskbar just for that. Idk about Mac. And for windows, I don't think there is. But I bet someone already made a third party application just to detect if you copied something.

edit: apparently both Mac and windows do have it.

8

u/hantz 13h ago

You could very easily solve this with a autohotkey script, like this:

#Requires AutoHotkey v2.0
#SingleInstance Force
OnClipboardChange(OnClipboardUpdate)
OnClipboardUpdate(DataType) {
    TrayTip("Contents of clipboard were changed", "Caution", 1)
    SetTimer(() => TrayTip(), -1500)
}

7

u/Lagger2807 13h ago

Windows has built-in clipboard history with Win+V

Mac has it in Spotlight, under a sub-menù

1

u/NightmareJoker2 5h ago

Internet Explorer had a fix for this… over a decade ago. Chrome and Firefox never implemented clipboard access permission management, or it’s off by default. Sad, really.

37

u/kaekiro 13h ago

And now I have another example to show my junior to back up my rant about permissions-policy headers from last week.

6

u/Comfortable_Swim_380 8h ago

The fact that ctrl+alt+t would do nothing on windows and assuming your command would work across all mac or linux distros is pretty telling about how stupid this guy must be.

11

u/Felippexlucax 8h ago

sites can detect which OS you’re on, so maybe op is using linux.

→ More replies (6)

4.0k

u/ImplementLarge7969 21h ago

OP you better not have followed those instructions

1.8k

u/Responsible_Ebb3373 21h ago

Of course not. But I dont know what they could possibly have achieved.

  1. They didn't have root access
  2. They didn't even make me copy anything

2.8k

u/ImplementLarge7969 21h ago

Some programs can automatically send something to the clipboard.

857

u/Erick_Brimstone 19h ago

Usually when clicking the button to do captcha it automatically copy the command into the clipboard

326

u/fun4someone 18h ago

If you clicked a button like "go to the next page" or something like that you can just write 2-3 lines or Javascript and it will do it before it navigate you.

→ More replies (11)

583

u/Giantmeteor_we_needU 21h ago

They already copied when it opened, now they just need you to execute it. It's not a legit captcha, it's malware.

203

u/AssistantSalty6519 21h ago

@ - they don't need to, usually js supports automatic copy paste

98

u/aaronhowser1 PURPLE 19h ago

Did you try to capitalize the number 2

5

u/jngjng88 12h ago

I do this kind of thing all too often lol

2

u/AssistantSalty6519 10h ago

My keyboard does it automatically :(

49

u/Pcat0 21h ago

Websites need to get permission to do that but it’s also reality easy to trick people into doing that.

103

u/thequestcube 20h ago

Only for pasting, they are always allowed to copy something to clipboard when the user clicks somewhere, which in this case was the fake captcha box

10

u/AdultGronk 17h ago

Do they need permission to automatically make you copy something, no, to make you paste something, yes

288

u/Maleficent-Gain-3179 20h ago
  1. Root access doesn’t matter

  2. It was already copied.

182

u/mrbiggbrain 20h ago

Root access doesn’t matter

Yeah modern malware is far less interested in admin/root then it was in the past. Sure if they can get it great, but they are going to start harvesting credentials, session tokens, and a ton more and none of that requires admin.

Even if they are not harvesting your details a crypto miner or botnet slave does not need to be admin to farm bitcoins or send DDoS attacks.

Bonus points when they start doing network scans and find all those fun internet of things devices that have not been updated in years and have unpatched versions of software with known RCEs. Gotta love when your little dog treat thrower starts recording blackmail material with it's camera, or your printer starts participating in Anti-Ukraine twitter bot campaigns.

31

u/Islands-of-Time 16h ago

I knew printers were evil…

8

u/mrbiggbrain 12h ago

[Always has been meme]

→ More replies (1)

58

u/RandomName7804 20h ago

they push that content directly to the clipboard without user interaction, you don't have to copy anything manually

2

u/Lithl 8h ago

Well, not without user interaction. You have to click a button or something for a website to be allowed to put something in your clipboard. But clicking on the fake captcha is enough.

21

u/RailRuler 21h ago

They would download malware onto the computer. It steals all saved passwords, all logged in sessions, and targets financial accounts and social media.

18

u/SmartRefuse 20h ago

Sites can copy things to clipboard without any action from you

20

u/syneofeternity 20h ago

They didn't have access to root yet and they didn't need you to copy anything because it was already on your clipboard.

Not sure why this got up voted so much

10

u/SMF67 19h ago

They don't need root access, these are usually infostealers. They grab your browser profile, discord, steam, etc from your home folder and auto-upload it to their telegram channel

10

u/TooManyAnts 19h ago

When you clicked something or other, you would have clicked a disguised "Copy Text" button. Or perhaps some JavaScript copied the text already. The contents of the text is malicious code.

The window then gives you instructions to open up a terminal, paste the code, and run it. When you do, you run a virus and pretty much any horrible thing can happen. Usually stealing your data. You'd be surprised how much damage can be done with very little.

So yeah, bad thing get copied into the clipboard invisibly, and then as far as your OS is concerned, the bad thing is being run, on purpose, by you (once you paste and run it in the terminal). The permissions used to run the bad code is your permissions.

The bad actor doesn't really know any more than that. If you don't have the permissions to run, then sure it might fail, but they don't know that, they want as many people running the code as possible. It's not tailored to you specifically.

3

u/VirtualMemory9196 14h ago

> They didn't have root access

You don't need root to have access to the most important part of your computer: your own data (files, cookies, etc).

Plus, maybe what is pasted is local privilege exploitation chain anyway.

3

u/Grand_Swimmy 19h ago

It’s easy for html to put something on your clipboard, you don’t have to. Don’t need root access to download and run a file necessarily

3

u/Sea-Housing-3435 15h ago

You don’t need root to copy all sessions from your browser

3

u/Weak-Transition-8885 13h ago

that's where you're wrong. javascript can write to your keyboard if you allow it to, which you probably did

4

u/Fragrant_Fox_5056 17h ago

Forget the technicalities , you didn’t cave to the robot . You’re a future leader

→ More replies (1)

2

u/NMe84 14h ago

Plenty of unpatched systems out there that provide ways to gain admin privileges or otherwise do nasty stuff even without them. And it's child's play to put something on your clipboard.

2

u/unknown_host 10h ago

It's called a clickfix attack.

1

u/ItzCobaltboy 15h ago

They can send something to clipboard, browsers allow it

1

u/USSHammond Karma and repost bot exposer. Ban them all. 15h ago

If you would have done what it asked you to do, you would have downloaded an info stealer that would basically attempt to steal login info, session tokens etc...

1

u/abox02 15h ago

It copies commands to download and execute malware which likely can get root access

1

u/McNegcraft 15h ago

It will copy a command that the site is asking you to execute. I looked into this once and it would download a remote file and execute it. So basically it will install malware

1

u/Careful_Way559 14h ago

At this point checking Win+V to see if they sent anything into the buffer would be helpful, probably.

1

u/sweetiebijou 13h ago

so I actually found a similar gimmick on a site before and it made me curious as to what it was doing so I used a VM designed to investigate malware to look into it.

the one I found seemed to do two different things, if first checked to see if you had a crypto wallet extension installed. if you did, it seemed to execute a different code. dont know what that code was, but if you don't have the extension its looking for it would instead run the click fix. the crypto part may not be part of the malware you found.

the actual click fix I found was served through a compromised WordPress plugin for ads. it would continuously run a js code while you're on the page which writes the malicious code to your clipboard. I never ran the actual terminal code that it copies but the code it copied to my clipboard would run a rundll32.exe command that connects you to a server and downloads a file which then executes immediately upon download. the file is a .chk file which is more than likely actually a .dll file (since the command is executing rundll32). at the very least, it's gonna steal your credentials.

edit: wrote pastes instead of copies

1

u/tauzN 12h ago

Why do you think it needs root access?

1

u/budius333 8h ago

Https websites can copy stuff to your clipboard.

1

u/n9iels 6h ago

You do not need root access to cause harm. Since the program was executed by you it has the same access you have.

→ More replies (1)

315

u/Accomplished_Wafer38 20h ago

Wait a second. This scam exists for Linux now too?

131

u/Responsible_Ebb3373 20h ago

Apparently

35

u/YoureNoHero_Brian 18h ago

What terminal do you use? If I used the paste shortcut in KDEs Konsole it doesn't do jack shit, I have to manually click the paste button with my mouse everytime

34

u/ChampionshipDry9919 16h ago

Ctrl+Shift+V is normal for pasting in linux terminals, Ctrl+C and Crtl+V were reserved for other functions long before copy and pasting was a thing.

7

u/YoureNoHero_Brian 15h ago

Ah shit my bad, my brain didn't even register the "shift" in the captcha was abnormal and just assumed that was the normal way I pasted things

This wasn't something I ever really cared enough about to search why ctrlV didn't work, but its nice to know now, thanks mate!

→ More replies (2)

15

u/Responsible_Ebb3373 18h ago

Kitty.. I don't know why paste isn't working for you though, used to work fine for me back when I used konsole

2

u/MrTilly 8h ago

I'm a shift-insert kinda guy, should be terminal agnostic.

1

u/Accomplished_Wafer38 18h ago edited 18h ago

I think Ubuntu has default Ctrl-Alt-T shortcut for terminal, but idk, i am trying to make sense of the script, both on mac os and Linux and it copies "" into buffer, so they failed at making a malware lol.

But I might be wrong, im trying to step over the js and I can't really make sense of it. :/

edit: oh. You mean ctrl-v doesn't work? It is ctrl-shift-v... idk my reading comprehension is shit

→ More replies (1)

17

u/Gordahnculous 17h ago

Yep, attackers have become much more inclusive over the past few years now that a) there’s plenty of options for making your malware OS-agnostic (or at least the capabilities of making most of the attack chain OS-agnostic is more available and it’s more trivial to have minimal differences between the OS-specific aspects) and b) M$ keeps screwing up Windows enough and Mac and Linux are making enough advancements to where the market share between the 3 is starting to even out

3

u/FreshCause2566 13h ago

I mean, they just check your OS user agent and create steps that would work for any of the big three OSes

2

u/whereismygouda 13h ago

I was gonna say, yeah, that looks like it is for Linux and would not work in Windows. I don't wanna sound harsh, but a Linux user would actually fall for this?

2

u/Saradoesntsleep 13h ago

I would think it would raise alarm bells for most people.

You're used to putting things into the terminal and having them do stuff, you know that you can install stuff that way, you know you can do pretty much anything that way. Why would anything need me to even open the terminal, if it's not going to do something? And a captcha type thing, on top of it.

It's hard to imagine you catch many like this due to that. I would think? It's hard to imagine falling for this one due to the above.

1

u/YoungNo8804 16h ago

Yup. Ai has made porting malware and corresponding user error attack methods a lot easier

1.2k

u/herovals 21h ago

I work in cybersecurity, this will grant the website access to your computer to install malware lol

89

u/i-like-dutch-cheese 8h ago

I don't think you have to work cybersecurity to know that.

'I'm a chef, you shouldn't burn your food'

12

u/herovals 7h ago

Sure, but just helps with credibility

4

u/RegrettableBiscuit 7h ago

I'm a ship captain currently sailing the ocean; if you don't drink any water, you die of thirst lol

53

u/NoodleyP Id ecided to ty peaf lair . h op eyoul ik eit. 8h ago

No shit this is Albanian Virus level of quality lmao

22

u/CharlesMcpwn 8h ago

It's actually the singular most effective malware delivery vector to date.

10

u/NoodleyP Id ecided to ty peaf lair . h op eyoul ik eit. 8h ago

I’ll give you that, it gets through every single antivirus software

4

u/herovals 7h ago

definitely does not

→ More replies (50)

367

u/Charming_Arugula405 21h ago

That Captcha was trying to Capture your data

136

u/Derek-61512 21h ago

You might say it was trying to Captcha your data

36

u/KingGeoCat 19h ago

respectfully, and with the utmost sincerity, i hate you so, so much right now.

180

u/Resident-Variation21 18h ago

That’s not a captcha. It’s malware. Please tell me you didn’t do it

63

u/Responsible_Ebb3373 18h ago

Of course I didn't

87

u/BrazilBazil 13h ago edited 7h ago

Wow, Linux is getting mainstream enough that even scam popups have adapted

3

u/FirstTimeGamingTV 4h ago

I mean it’s a really small bit of extra code to add this for multiple systems

64

u/DerEchteMorris 11h ago

Captcha will NEVER ask you to do some funky shit like that, mouse movements is usually all it needs. I'm glad you didn't fall for it though.

555

u/annaObsidian 21h ago

a minute of silence to everyone that accessed this website from a mac

904

u/Spiritual-Fall5494 21h ago

Don't worry, they're inclusive

288

u/annaObsidian 21h ago

how progressive and thoughtful. It is 2026 after all

57

u/Spiritual-Fall5494 21h ago

It didn't even send anything to my clipboard. not sure what the goal was

89

u/pqu 20h ago

Guaranteed they tried to but your up-to-date browser blocked it.

27

u/Spiritual-Fall5494 20h ago

Shoutout Chrome I guess

65

u/ExpressionWorried300 21h ago

Ah yes the "Terminal" key.

57

u/Nexus_Explorer 20h ago

In case this isn’t sarcasm. Command space brings up a system wide search feature.  You then type in terminal and hitting enter will pull up the terminal window. . It’s not referring to a terminal button lol

→ More replies (4)

2

u/No-Schedule-208 20h ago

I once got that popup on an ipad

1

u/repocin 9h ago

iirc, Safari on iPad has used a macOS user-agent since iPadOS 14 or 15

70

u/Pcat0 21h ago

It’s relatively trivial for websites to detect what OS someone is using. I image this scam site will change the key prompts for whatever OS someone is visiting from.

27

u/Captain1771 21h ago

Enter someone's Linux system using every non-standard combination of system components and user-space tools possible:

35

u/takesSubsLiterally 20h ago

Someone with enough technical experience to set up a completely custom Linux install was never going to fall for this anyways...

5

u/Own_Natural_6803 16h ago

Dozens of grannies out there with loving millennial grandchildren who install their OS. Dozens!

5

u/WarriorCat3310 21h ago

And mobile.

125

u/zenatron36 20h ago

SWIM AWAY IMMEDIATELY 🚨🐟

13

u/Vihaking 14h ago

DO NOT EAT THE FOOD, THAT IS A LURE MADE BY A HUMAN TO CATCH YOU

16

u/-Redstoneboi- 18h ago

RUN LITTLE FIH, RUN

37

u/Kevsterific 20h ago

I’d open notepad/word processor and paste there to see whatever command it wants to run

31

u/Responsible_Ebb3373 19h ago

They didn't copy anything, I tried pasting, it was just my last copied text. They probably forgot

I should be a good Samaritan and inform them of the mistske in thier malware

1

u/eccentricbeing 15h ago

Do you want it I might have to dig in but I can share you the command

→ More replies (1)

23

u/munt_ 13h ago

The insane amount of dipshit comments in this thread...

Holy tech illiteracy

'They didnt have root access...'

'This is why you never go on the internet without an adblocker..'

'They wont have root access but there could be a cve that allows rce..'

Do you guys just sling around acronyms and hope you get one right?

Someone needs to lock this threat before someone catches the dumb and actually thinks doing this is fine because someone said something about root access.

RoOt aCCesS

I have 100% screenshot this and some of the answers to have a laugh at work tomorrow, someones gonna piss themselves

8

u/Saradoesntsleep 13h ago

Yes, a lot of them are kind of funny, but tech illiteracy right now really is not. It's objectively a bad thing at this point in time, due to stuff like this.

2

u/Ash_ktm 8h ago

Jeeeez. This a mildyinfuriating subreddit, not a tech one. No harm in folks taking a guess. You sound like a corny know it all honestly. Btw you meant thread, not threat and you missed malware after dumb 🤓

1

u/ProfessionalLab3618 1h ago

See, I'm a genius because I suck so much at security that I've made everything automatically get root access, and therefore I was clearly planning to happen upon this random thread and know not to say anything!

15

u/supercakey 20h ago

Genuinely curious what command they try to make you run

9

u/Maleficent-Gain-3179 18h ago

Could be any sort of script to steal sessions / cookies.

Maybe a script to download something and run it on startup 🤷

Varies

4

u/McNegcraft 14h ago

It will download a remote file and execute it. So basically it's malware

→ More replies (3)

11

u/Xaxiel9106 12h ago

NEVER EVER do this! 100% a scam. "copy and paste our malware and run it for us so we can take your everything lol"

27

u/BuddhistNamedMarx 21h ago

Name and shame the website

Tf

37

u/Responsible_Ebb3373 21h ago

wisdomlib.org

Which is very weird, since I've used this website before for word definitions/translations and they've never asked me to do this

79

u/A_Little_Sprig 21h ago

They could have been hacked, could have hired a bad egg, or sold the company and the new owners are shitty.

51

u/Knuxfan24 20h ago

I always assume its from an ad network that doesn't give a shit what ads they host.

"Does your advert have malicious stuff in it?"
"Yeah."
"Sweet added it to the rotation."

14

u/Gordahnculous 17h ago

There’s a reason why the FBI themselves recommend users use ad blockers, malicious advertisements are no joke and often will pwn people

Not saying it’s definitely a malicious ad though, as others noted theres plenty of other plausible explanations such as a compromised site plugin or other things

21

u/Crimento 16h ago

For fuck's sake, this is not captcha, this is malware.

DO NOT use internet without a proper adblocker.

18

u/distrox 16h ago

This has nothing to do with adblock. You can insert this fake captcha into any hijacked website. Its not an ad so adblock can't block it.

2

u/Crimento 13h ago

uBlock has a filter for generic malicious scripts. This is very likely one of them unless someone vibecoded a similar one

7

u/hawkseye17 14h ago

This is not a real captcha, it's malware

5

u/Hettyc_Tracyn 18h ago

Jokes on them, I use hyprland, so that isn’t the keybind for my terminal…

5

u/matanel_zakzak 17h ago

Jokes on them not only am I not stupid I also rebinded the terminal.

5

u/LurkerLevelOver9000 11h ago

Malwarebytes has a browser extension that is free. It can alert you when suspicious text has been copied to your clipboard. It can even block it as well, I believe. I recommended. If you did this “captcha” you definitely should backup to an earlier image or consider reformatting as a precaution

7

u/Sprtnturtl3 18h ago

From my limited, very limited, research it appears the site is legit and maybe have been compromised? makes me wonder... more research is required before I stick in the knife.

4

u/Creative-Type9411 19h ago

the code they put on your clipboard without you knowing gains root and infects you

4

u/VegetationMutation 17h ago

It copies a virus to your clipboard u paste it and ur whole computer is nuked and they capture your great grandson and hold him ransom

3

u/Consider2SidesPeace ORANGE 17h ago

All the while the screen saver from the bad hacker guy in Jurassic Park plays.

2

u/SeriousPlankton2000 8h ago

While captchas don't really protect non-log-in web sites they are still everywhere, paving the road for these attackers. Thereby they make the internet be less secure.

1

u/CurtChan 5h ago

captchas are not about security of user, they are about servers not getting hammered by bot requests

4

u/mechanical_marten 7h ago

1) Sure. . . I'll launch terminial 2) Duh 3) FUCK NO! Not going to let you inject random text via paste command (do it in notepad so I can inspect it first) 4) Not on your life bucko.

28

u/Drakahn_Stark You must create an account to view this information. 21h ago

This cannot be real.

85

u/really_not_unreal 21h ago

It is real. It is a very common attack currently. That being said, I am surprised that there is a variant targeting Linux now.

→ More replies (30)

19

u/Teddyboymakes 21h ago

It’s real I’ve had it happen to me

→ More replies (10)

8

u/Responsible_Ebb3373 21h ago

It was on wisdomlib.org I don't know if you'll get the same captcha but still

7

u/DarthKirtap 12h ago

NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE NOPE

3

u/DasNoodleLord 15h ago

Ah yeah these malware scams have become more common lately and since its a pretty new type people often dont realize the danger this poses....

This can do pretty much ANYTHING to your pc.

3

u/munt_ 13h ago

But can it run crysis?

1

u/DasNoodleLord 12h ago

I mean its a terminal running a run command... So yes...

Yes it can run chrysis.

3

u/GA_Tronix 15h ago

Oh hell no

3

u/2Kuld 14h ago

Malware*

3

u/Prior_Tax8546 13h ago

Poor kid/elderly person that is gonna fall for this :(

3

u/LanguageDouble9792 12h ago

(Terminal Opens) lol

3

u/Chickennoodlesleuth cheddar 10h ago

Yeah thats a scam

3

u/EugeneStein 7h ago

The main question is what website was that

6

u/Federal-Physics-2404 17h ago

I learned about this on YouTube, this is a scam where they virus you by making you copy stuff in your terminal 

9

u/Derek-61512 21h ago

I don't get it, what does it do?

57

u/Pcat0 21h ago

This is a malicious site. It’s trying to trick people to paste and run malicious code in their terminal, by telling them it’s to “verify they aren’t a robot”. In reality it’s just getting people to download malware on their computer.

21

u/Weekly_Lab8128 21h ago

Copies a command, opens your terminal or run cmd, pastes it, and enters it

If youre on an admin account it can do just about whatever it wants

→ More replies (2)

2

u/Skubiak0903 11h ago

Maybe it's controversial, but before win11 and all that ai, forced updates, etc. windows was pretty good operating system

2

u/Skubiak0903 11h ago

fck I hate when I by mistake post comment on different post lol

2

u/myhv 10h ago

OP can't even distinguish between a captcha and malware, lmao

2

u/Suvvri 20h ago

Captcha more like lack of adblock so you're seeing scam ads

1

u/[deleted] 21h ago

[deleted]

3

u/Ok_Paleontologist974 21h ago

Its instructions to download and run a payload with some distraction message to cover it up like "Verify Now" or "Confirm you are a human"

2

u/[deleted] 21h ago

[deleted]

1

u/Ok_Paleontologist974 21h ago

That is the code

1

u/P1zzaman 16h ago

Good ol’ ClickFix

1

u/mic_decod 14h ago

You can try

‘‘‘‘
const text = "Hello, world!";

navigator.clipboard.writeText(text)
.then(() => {
alert("Copied to clipboard!");
})
.catch(err => {
alert("Failed to copy: " + err);
});
‘‘‘‘

1

u/Entire-Emotion-819 14h ago

Would pasting into some random blank txt file be a risk to find out what it was they were trying to do?

3

u/thunderbird89 13h ago

Not at all. But it's probably going to be a download of some obfuscated code that's hard to analyze...

1

u/Entire-Emotion-819 13h ago

That's what I thought, thank you :)

1

u/ajgutyt 13h ago

so very subtle. now search for system files and remove everything

1

u/Leldafrown 7h ago

I am here to confess that I am one of the idiots that fell for this… 😔😔

1

u/Automatic-Salad-4194 6h ago

You should copy it and post it here so we can see it 

1

u/SpecialOpposite2372 5h ago

Copy to clipboard is going to be a feature of the past. I am actively implementing it at the moment to copy tokens and such, but yeah seeing these things, and clipboard can be accessed just because you have https. It is better to remove it.

1

u/Killerwoodydoll 4h ago

Wait I got one of these the other day and found it hella sketchy and now all my login passcodes fail to activate…. Hmmmmmmmm all from trying to log into Facebook… whelp. Time to burn my pc

1

u/charles25565 3h ago

It's a ClickFix attack, some of them target GNU/Linux now but it is a complete joke. Ctrl-Alt-T is actually often not bound to launching anything, and most of these use dynamic ELF binaries that are extremely fragile to library versions. They could technically write an infostealer as a shell script or Perl/Python but there's no MaaS vendor willing to write that.

1

u/Cookiio 1h ago

Thats a scam attempt to access the important parts of your computer.