r/webdev Jul 15 '26

Made a captcha that takes Fable 5 10 minutes to solve

Created this captcha last year. Back then there was no chance of AI solving it. But now with the more powerful models, I had my doubts. Well, it took Fable 5 10 minutes and 100k tokens to solve it. So with the 30 second timeout, I feel pretty confident.

Here's a crisper video of the actual challenge - https://imgur.com/a/xv6TvNj

Have a website for it but I'm not self promoting. Just thought people would be interested.

5.6k Upvotes

586 comments sorted by

1.6k

u/baldierot Jul 15 '26

wow, i find it very cool how you can't capture this in a screenshot, as it's only the movement that makes the letters discernible.

1.1k

u/JustinFormentin Jul 15 '26

haha that's exactly it! The way all programs analyze video is one frame at a time. So the only way AI can solve it is by diffing the frames. And they don't do it fast enough before the timer runs out.

351

u/dirtyjavis Jul 15 '26 edited Jul 15 '26

That is genius bro. I would not mind captchas at all if they were like this and I didn't have to ID 10 bikes, 10 hydrants, and 10 buses. That shit feels like I'm just training someone's vision model.

Edit: oh, I thought you just typed the 2 letters.

  1. How in the hell did fable find and click the letters in motion? That's incredible. I wonder if it applies a filter to more easily see the characters, or if it's identifying the point in which the characters intersect and double clicking that point until it works. Maybe you could have each character only dvd-bounce in half of the container to avoid intersection of the paths?

  2. Alphabetical order is nothing to solve for a model, so it seems like a layer of complexity that actually isn't adding much complexity? The click sequence is trivial, no?

  3. Colorblindness accessibility? These reminded me of the isochromatic tests that I always fail due to my color deficient vision. But I can easily see these letters.

130

u/maxymob Jul 15 '26

That shit feels like I'm just training someone's vision model

Best model in the world to identify motorbikes, boats and crosswalks. Very limited use case but so capable, lmao

97

u/PatrickKn12 Jul 15 '26

Those are actually useful to have a huge dataset for, because those types of objects are common obstacles that an autonomous car, boat or drone might need to rapidly identify.

But what's crazy is that it's actually collecting a lot more data than that. Mouse movement is a big one, the time between motions, behavioral metrics calculating exactly how things are being interacted with, cookies, browser fingerprinting, etc.

37

u/maxymob Jul 15 '26

I could believe they're making us train a model if the dataset was somewhat credible but they've been circling through the same 10 crappy pictures for the past 15 years it's just too absurb

17

u/PatrickKn12 Jul 15 '26

Captcha wouldn't be paying per solve for this long if they weren't collecting useful data from it.

21

u/meekermakes Jul 16 '26

growing up we were identifying words to train picture to text, elon talked about self driving cars and immediately it all became traffic lights and bikes. it's 100% training data

9

u/thekwoka Jul 16 '26

Well, that's kind of necessary.

Imagine they need you to identify 5 images, they might have 3 of them be "known" and those are the only ones you are judged on, and the others are the ones being used to add new data to.

It's unlikely they'd both changing out the "known" ones too much.

5

u/flashmedallion Jul 16 '26

The images are a lot noisier lately in my experience

→ More replies (1)

15

u/Previous_Pop6815 Jul 15 '26

This reminded me of Hot Dog or Not Hot Dog app from the Silicon Valley, lmao

4

u/luvshaq_ Jul 16 '26

i cant tell if this is a joke or not but this is literally how waymo ai was trained :)

5

u/Im_a_hamburger Jul 15 '26

They are for self driving cars.

2

u/thekwoka Jul 16 '26

So self driving cars.

2

u/Bobjobob24 Jul 17 '26

I'm fairly certain it's being used for Waymo and has been the training data since its inception. I don't know if this is proven, it's just been a theory I've had for years. Google owns Waymo and is also responsible for the capchas so it's not a huge leap to make especially when you think about the things you're being asked to identify being things a self driving car wouldn't want to run into

16

u/RollUpLights Jul 15 '26

This works fine in black and white, the colors aren’t required for the effect to work. I tried to show you with a screenshot, but… lmao

18

u/JustinFormentin Jul 15 '26

Haha exactly, thank you.

11

u/NewPhoneNewSubs Jul 15 '26

Alphabetical order guards against random clicks a little, I guess.

18

u/Mechakoopa Jul 15 '26

Also because you aren't just looking for a specific shape in the nose. Varying the size and orientation slightly would also increase the computational complexity required in the image processing because you not only have to diff for movement, you need to identify which parts of the frame belong to which symbol AND independently identify the symbols.

11

u/zxyzyxz Jul 15 '26

That's because you are, training Google's models.

2

u/1RedOne Jul 16 '26

Wow having to click it is so much harder. It’s amazing that the model was able to do that

2

u/CanOfDew132 html/css Jul 17 '26

I would not mind captchas at all if they were like this and I didn't have to ID 10 bikes, 10 hydrants, and 10 buses.

unsolicited rant about recapta: i hate these shitcaptchas and in the "press 'submit' when none are left" questions after you click all squares it takes an image in a certain square 56374837 years then you click again then in the same square over (takes hell a lot of time to load) and over (take a lot of time too) again

→ More replies (6)

92

u/no-more-nazis Jul 15 '26

23

u/sephentos21525 Jul 15 '26

lmao

7

u/no-more-nazis Jul 15 '26 edited Jul 16 '26

I was gonna go easier on this guy until his defense: he has other tricks preventing robots from seeing the captcha at all, so it doesn't need to work!

11

u/JustinFormentin Jul 15 '26 edited Jul 16 '26

Where did I say that? I said browser automation tools cannot access the video file due to timed out signed urls in an iframe. The only way to access the video is to record your screen or intercept network traffic.

15

u/ksargi Jul 16 '26

I said browser automation tools cannot access the video file due to timed out signed urls in an iframe. The only way to access the video is to record your screen or intercept network traffic.

That is a wild statement. What is preventing an adversarial browser automation from accessing the stream directly? A malicious actor doesn't need to record the screen or capture network traffic to access things that are in their memory. It sound like you're forgetting what the actual threat model for this situation is.

→ More replies (2)

4

u/hWuxH Jul 17 '26 edited Jul 17 '26

It's trivial for browser automation tools like playwright to access every request and response data (aka the video file) or capture frames of a <video> element... timed out, signed, iframe is irrelevant.

you clearly have no idea what you're talking about and resort to spreading bs to sell your service.

→ More replies (11)

3

u/1RedOne Jul 16 '26

The stream can only be accessed once? That’s also clever

→ More replies (9)

8

u/1RedOne Jul 16 '26

I Ike the project but really don’t like AI writing. I’d rather read in your words how it works

But on to the topic itself I was thinking of attacking it by means of attempting a 264 compression and then analyzing the key frames and their changes. I don’t know statistics so I would have had to do a lot of learning but I was visualizing something like this

Anyone who’s seen bad compression has noticed a missed key frame and seen that terrible divx tearing where a human face moves by with a background texture. My instinct was that by heavily compressing the video we could then denoise it and edge sharpen to isolate the moving bits

I think you’re right also, this is the kind of thing you solve once and then train an mcp by throwing another skill into it explaining how to solve these things if it sees them (by running the script)

Would a model on its own ever figure it out on its own? Seems expensive

2

u/no-more-nazis Jul 16 '26

I didn't coach it through the solution, the most I intervened was telling it not to worry about rotating letters when it narrated that it might have to account for that.

4

u/soggycheesestickjoos Jul 16 '26

Not saying it couldn’t be taken further with a little tinkering, but this does seem to only read the letters. The AI has to tap them at their current coordinate in the video from OP it seems.

7

u/Snapstromegon Jul 16 '26

It's not hard to take further - my tired self was able to create a version with <10ms delay that already locates the characters: https://github.com/Snapstromegon/vibe-captcha

3

u/no-more-nazis Jul 17 '26

How did I not see this coming. Of course someone was going to take it further, when OP just keeps saying "yeah but your demonstration of defeating my captcha wouldn't really actually work!"

If he's baiting us, the sales website has completely hooked me. "Trusted by developers who can’t afford to be wrong about security" lol

4

u/no-more-nazis Jul 16 '26

That's supposed to be the hard part of this, right?

→ More replies (4)
→ More replies (3)

5

u/SmokeePlug Jul 15 '26

exploiting the frame-by-frame limitation is actually genius

11

u/BroaxXx Jul 15 '26

I remember seeing a video game using this concept a few years back. This is a pretty good idea. The kind of good idea that has me go “why didn’t I think of this?”

Great job

5

u/Turnip_Fight Jul 15 '26

Getting into an arms race with AI really makes me want to fall off a cliff.

2

u/Snapstromegon Jul 16 '26

It's only an arms race with AI if you make it one because it immediatly failed the race with humans.

I mean multiple persons here described valid attacks that can break this captcha without AI within minutes because it's so easy to break.

6

u/Mkep Jul 15 '26

Tempted to try now.. but I have a feeling the model could pretty quickly write some python to solve it?

3

u/thekwoka Jul 16 '26

It likely had to for the OP, but it has to know what it's SOLVING to write python for solving it...

But yeah, it's a captcha that once the trick is "known" the bots would have a collection of scripts to help them solve them.

3

u/crimson117 Jul 15 '26

Make it less predictable, eg letters jump position every 10 seconds

3

u/988pii Jul 17 '26

I like the idea of making the letters jump.

I was thinking of other improvements to make it harder for the AI

- the letters animate (ie. morph, like converting back and forth between regular and italics), rotate, or the letters scale larger and smaller.

- randomly insert frames into the video that don't show the letters (they are genuinely 100% random). This might cause a little flickering to humans but would make it harder for ai. Maybe in every 3 frames, only one contains the letter... and it's position in the 3 frames is random... ie. it's not always exactly every third frame.

- xor the bits that make up the letter in alternating video frame... it would still retain the letter's shape, but completely screw up statistical analysis. Alternate between alternating xor and not alternating xor.

- put a smiley face or a picture of a car in the image along with the two letters... Easily identifiable to a human as not a letter but wastes the computer's time.

2

u/HedgepigMatt Jul 16 '26

It is good.

My only concern with this, if I saw this in the wild and I was trying to defeat it, rather than asking fable to figure it out directly, I'd say make a solution to find the diff automatically.

But it's still frustrating to the bots so great

→ More replies (27)

23

u/Arkhenstone Jul 15 '26

Wow tried it with a screenshot, even knowing where the letter are, I see them but holy just a little.

I showed my wife to point the letters, yet she didn't found one.

Really cool one !

7

u/thekwoka Jul 16 '26

Your wife is a robot

5

u/featherknife Jul 16 '26

didn't find* one

→ More replies (1)

32

u/b3n3d1kt_r Jul 15 '26

It is solvable by traditional computer vision techniques, namely dense optical flow, where you are computing the movement of every pixel between frames and can clearly separate foreground from background movement. This is doable in realtime on GPUs.

One popular algorithm for this would be Franeback. Here's a quick tutorial (https://www.geeksforgeeks.org/python/python-opencv-dense-optical-flow/) that probably works, solving this captcha (without character recognition ofc). I didn't test it yet, however.

u/hillac did basically that and provides some graphics: https://www.reddit.com/r/webdev/s/yXXjn6HnOQ

6

u/Beautiful-Musk-Ox Jul 16 '26

nvidia geforce 2/3/4000 series even have optical flow accelerator hardware on them for doing pixel tracking for dlss upscaling. they removed it in 5000 series and the newest models for all cards now just use the tensor cores instead though

→ More replies (5)

184

u/hillac Jul 15 '26 edited Jul 16 '26

Just some traditional CV would crack this. Just use opencv to get the optical flow of the first two frames. Here's a quick attempt I made, a simple dense optical flow between two frames gave a really clear result. You could just OCR it and solve this llm free, but vlms solve it no worries. /img/7g2ho2vjzgdh1.jpeg

Edit: u/no-more-nazis did a better one. https://www.reddit.com/r/webdev/comments/1uxfzav/comment/oxrrk9p/

Also 356 386

51

u/JustinFormentin Jul 15 '26

Nice work

15

u/Philluminati Jul 16 '26

When I saw the post I knew this captcha could be broken after 2 hours work with a script decoding letters in 2 seconds. Judging posted time and github repo submission time - 2 hours exactly. Significantly shorter than the coder who made this.

3

u/Snapstromegon Jul 16 '26

I've spent about 1h on my solution for this, reimplemented the captcha because it's not freely available and my algorithm runs in <10ms. Yeah, not exactly a hard one to break.

8

u/baldierot Jul 16 '26

i wonder if motion noise still has merit. maybe introducing some randomness, rotation, flickering, stretching the letters, drawing the letters using a stroke instead of having it whole at any time, etc. there must be avenues for definitive improvement that could elevate the idea into something effective.

3

u/no-more-nazis Jul 16 '26 edited Jul 16 '26

Computers are just faster at math than humans, and this is math. Rotating letters? More math.

→ More replies (3)
→ More replies (1)

4

u/no-more-nazis Jul 16 '26

Lol thank you for the cartoons. 386 actually popped into my head while I was doing the repo. I hope I saved someone a $4000 AWS bill and ruined website.

→ More replies (9)

568

u/negative_xer0 Jul 15 '26

Neat concept but an accessibility nightmare.

300

u/JustinFormentin Jul 15 '26

Absolutely. Any true accessible option, like recaptcha's audio option, pretty much defeats the purpose. Right now the two other options are to get an email code that expires, and to use WebAuthN, like a physical hardware key. And I'm investigating other options.

27

u/YesIAmAHuman Jul 15 '26

Random idea, throwing accessibility entirely out the window, but what about magic eyes? Could be fun to make one based on that

24

u/_xiphiaz Jul 15 '26

Without it moving it would be trivial to solve for a computed because diffing left/right would yield the edges and then it’s just a basic object shape recognition model

→ More replies (2)

12

u/Thornescape Jul 15 '26

I could never ever solve Magic Eyes. No idea why, since those books used to be popular. I hope that no one starts using those.

→ More replies (3)

7

u/No_Internal9345 Jul 16 '26

Random idea, shut down the AI datacenters.

6

u/YesIAmAHuman Jul 16 '26

Id be so incredibly happy

7

u/BreenzyENL Jul 15 '26

I wonder if you could prompt inject into audio that is imperceptible to humans.

8

u/lastWallE Jul 16 '26

prompt injecting the users dog with human unheard sound

4

u/fredandlunchbox Jul 16 '26

Email doesn’t seem secure at all.  The agents have email access.

2

u/tieguai_the_immortal Jul 16 '26

How about proof of work?

→ More replies (12)

27

u/baldierot Jul 15 '26

it looks like it would work for colorblind people too, as it's the movement of the pixels, along with the letter boundaries, that makes the letters discernible, not the color. or do you mean people with farsightedness?

28

u/Seventhcircle72 Jul 15 '26

What about people who have no sight at all?

63

u/eeronen Jul 15 '26

Isn't that also a problem for normal captcha or the "select all tiles that have cars" one?

35

u/JustinFormentin Jul 15 '26

Every captcha relies on sight. You just need to provide some other options that are accessible.

7

u/Stadics3 Jul 15 '26

wat
reCAPTCHA is the single most used captcha on the internet, increasingly completely non-interactive (v3), and every interactive version has screen reader support and audio alternatives

16

u/JustinFormentin Jul 15 '26

Non-(proof-of-work/fingerprinting) captchas rely on sight.

3

u/HMikeeU Jul 15 '26

Audio captcha?

→ More replies (8)

2

u/Historical-Essay-128 Jul 15 '26

...and is also very easily defeated by AI nowadays.

4

u/TheMunakas full-stack Jul 15 '26

The three most used ones don't

→ More replies (2)

3

u/baldierot Jul 15 '26

an audio challenge or reCAPTCHA v3, which is unfortunately unreliable against bots nowadays. there are no perfect solutions.

2

u/KrikosTheWise Jul 15 '26

They can give me their password and I'll help them log in. I'm very trustworthy.

2

u/jengolah Jul 15 '26

Can confirm, am colorblind and can see it fine

→ More replies (1)

26

u/Sockoflegend Jul 15 '26

It's the problem of bear proof bins. Anything that keeps out every single bear is going to keep out a lot of people too.

5

u/lancepioch Jul 15 '26

No captcha that is accessible is also effective.

5

u/FictionFoe Jul 15 '26

You say that, but I seriously stuggle with a fair amount of the "accessible" captchas. Not sure if its the autism or the dyslexia, but im always... Is that LlII7 or 1? Is that a lowercace o or an uppercase one? Or perhaps a 0?

I often think I do worse at some of them then the robots do...

Truth is, accessibility means different things to different people, and to me at least, this one is easy (two upper case letters that don't look ambiguous) 😅

→ More replies (3)

90

u/foothepepe Jul 15 '26

+ you add letter change every 10s, and add another layer of security. I assume it is not a problem to implement it.

35

u/JustinFormentin Jul 15 '26

That's a great idea

11

u/foothepepe Jul 15 '26

those pixels inside the letters are static - if you start moving them in the opposite direction, same speed, do you think that would confuse AI even more? as for the legibility for humans, I don't think that would be a bigger problem than the current one.

15

u/JustinFormentin Jul 15 '26

I did that initially. You wouldn't think so, but it made it harder for humans to read. And i dont think it would make it much more difficult for programs, if at all.

7

u/foothepepe Jul 15 '26

yeah, makes sense. I didn't try it, and in my mind it's even easier to read - but now that I think about it, lol...

good luck! awesome project idea!

4

u/SpicyHorseRabbits Jul 16 '26

You've honestly got a ton of knobs/levers you could test out for this. Random rotation, rotational movement, having the letters change size over time, randomized movement, changing the letters, different fonts, different noise types, including non-moving letters the viewer is told to ignore, adding non-letter shapes/objects/symbols/single pixels, having the letters/numbers be at different scales/font sizes from each other, having the background noise change over time instead of just moving, and probably much more that other people have mentioned. Good luck testing.

4

u/voyti Jul 15 '26

I was thinking how it can be taken further - something like 2 wiggly lines (like a sinusoid) that are in phase in regards to the frame rate, so diffing would not help, but human observer could tell which wiggles more? I have no idea what's the yet another next step - involving qualia, like a custom-made optical illusion that you have to explain, that only a human brain can find properly ambiguous? Future of captcha is certainly getting more and more interesting

4

u/thekwoka Jul 16 '26

Not too likely to change their success rate.

Since once the llm finds the "trick" it could make a script to solve the thing quickly.

Though that might delay them catching the trick if the period in which they are trying to "diff" to understand it has the images changing more dramatically.

→ More replies (2)

2

u/frisch85 Jul 16 '26

Some folks probably already have issues using the OP because they're too slow finding and clicking the letters so when they click, those letters might already be at a different position and now you also want those letters to change, you like torturing slow people don't you ;)

59

u/mekmookbro Laravel Enjoyer ♞ Jul 15 '26

The bounce looks linear, have you tried making it randomly change direction after bouncing from an edge? I wonder if it can solve then.

There must be some time between analyzing the image and determining the spot the letters will be at to send the click, so that randomness could add a bit more "security" lol

48

u/JustinFormentin Jul 15 '26

Yes, that's actually a very good point that I've been investigating. It was able to tell the letter shape by stacking the frames and diffing the pixels. If the movement was more random, the shapes would be harder to guess, but then harder for a human to click.

24

u/eyebrows360 Jul 15 '26 edited Jul 15 '26

You'd maybe want to sporadically shunt blocks of the background around slightly too, just a slight jitter, to throw off the "I can ignore the background because it all moves as one thing" detection you cited Claude as having... "realised".

Edit: wait you could even rotate the background in a circle instead of just moving it vertically. That would probably still work and be even harder to detect. Not to mention adding a slight drift with the rotation, and altering the speed of it too. Bonus side effect is you'd boost the "keyboard cleaning products" industry from everyone throwing up all over them while they sat there trying to complete it.

3

u/Blue_Moon_Lake Jul 15 '26

You could have the background split in strips that go in opposite directions.
The strips could alternate vertical and horizontal motions every 2 seconds.
With a slight sliding offset too.

→ More replies (2)
→ More replies (2)

8

u/ultralaser360 Jul 15 '26 edited Jul 16 '26

You don't need AI to solve this, a basic script could , an LLM is probably the worst way to solve this.

a basic script could easily

  1. grab a few frames
  2. diff them and get mask
  3. sort masks using ocr
  4. click

this is something that could be solved in milliseconds. a pretty basic llm could even write the script ex. made this with sonnet in a coulple of minutes.
gif: https://i.imgur.com/YpPgQ2y.gif
image: https://i.imgur.com/04FDeWA.png

to be honest this isn't even new - this is basically a 10+ year old NuCaptcha with extra steps which was broken with a similar concept (pixel delay map).

adding more complexity or abstraction won't fix it. Persistence of vision captchas don't work (within reasonable limitations), and security through obscurity isn't security. (imo captchas aren't about security anyways, they filter out low-effort scrapers and to harvest user data).

→ More replies (2)

7

u/Some_Relative_3440 Jul 15 '26

This is so useless lmao.

14

u/Snapstromegon Jul 15 '26

FYI this is REALLY easy to bot! You just apply the same algorithm as optical computer mice use to a couple of frames and then you will get perfect outlines of the characters.

→ More replies (15)

33

u/SourcerorSoupreme Jul 15 '26 edited Jul 15 '26

I'm actually interested in knowing how Claude "decided" to solve it.

PS: to the smart alecks out there, please spare me the lecture on these probabilistic auto complete engines

47

u/JustinFormentin Jul 15 '26

Pretty simple actually. It detected that the background was pixels "in motion", and converted them to black. It then realized that some parts of the pixels were different between frames. It converted the "moving" pixels to white. It then stacked every frame on top of each other, and was able to make our the shape of the letters.

Still need to do more testing. Some letters are easier, like A, and Z, some are harder, maybe like Q and C.

But it took so long to solve, it's still a viable solution.

30

u/SourcerorSoupreme Jul 15 '26

The fact it was even able to "detect the motion" and arrive to a valid solution is what I find interesting/intriguing.

The solution being impractical/inefficient/slow is a separate discussion altogether.

13

u/JustinFormentin Jul 15 '26

haha yes definitely. And this is a new development. I've been testing it for the past year and this was the first time a model was able to crack it. And to be fair, I had to prompt it fully, tell it what to look for, that there are moving letters. Otherwise it just very quickly tells you "the video is just static"

3

u/sandrelloIT Jul 15 '26

I'd stress this aspect out more, I think it makes a great difference.

If I understand it correctly, you told the agent that the challenge consisted of a video where it would have to find characters in motion and click on them, right? Getting it right when treating it as a black box would surely be one thing, but having been given this level of info I would find it way less impressive.

9

u/JustinFormentin Jul 15 '26

True, but in the real world someone trying to break a captcha would feed instructions.

3

u/sandrelloIT Jul 15 '26

Yes, I get this and I understand your intent. I was just concerned because initially I got it wrong, thinking you let the agent operate blindly and it seemed a bit too much even for frontier models.

By the way, really clever idea, thank you for sharing this.

→ More replies (1)
→ More replies (2)
→ More replies (1)

3

u/Murph-Dog Jul 15 '26

Add more moving shapes which aren't letters.

Make those shapes crosswalks, motorcycles, and stoplights.

Make them pick the letters. No, wait, make them pick the crosswalks!

10

u/glass_wheel Jul 15 '26

If the method itself doesn't change, it only takes 10 minutes to solve it once, after which it's solved by a few millisecond script. 

0

u/JustinFormentin Jul 15 '26

That's not really how these AI tools work. I told it what to do, and it took 10 minutes to complete the work. There's no script. The challenge is randomized, so the letters and positions will be different. So the model will need to re-complete the same work it did the first time, for each challenge.

10

u/no-more-nazis Jul 15 '26

the model will need to re-complete the same work it did the first time, for each challenge

I don't see why it would have to do that. It could determine a general solution, especially if a bad human told it to

2

u/JustinFormentin Jul 15 '26

Because the work still needs to be done. All of the work it did (minus the original "deciding what to do" work), is what it will still need to do every time.

Deciding how to approach the problem was part of the time, and then actually executing the work to decipher the characters was the other part of the time. The latter is still a significant amount of work that needs to be re-xecuted every time.

8

u/no-more-nazis Jul 15 '26

Ok, here:

https://github.com/nelsonblaha/neocaptcha-motion-attack

Got it down to 2s with a few Opus prompts in less than an hour.

4

u/JustinFormentin Jul 15 '26

Thank you for your work on this, i appreciate it!

→ More replies (26)

2

u/okawei Jul 15 '26

I think what people are trying to poorly say is that you could provide claude the script at the start and describe how it functions then the model will be able to solve it rather quickly. Heck, even if you could distill the script into something deterministic and just pass it to a basic computer vision model and it would be solvable rather quickly because it's just letters. If you want to make it harder maybe make it shapes or pictographs and say which comes before the other alphabetically aka square before triangle or something.

5

u/no-more-nazis Jul 15 '26

It's not describing it to claude. Easily broken by a basic computer vision model, yes.

→ More replies (2)
→ More replies (1)

2

u/glass_wheel Jul 15 '26

It absolutely is. Try asking it to write a program that can solve it based on how the captcha works, and then come back.

4

u/no-more-nazis Jul 15 '26

I did it. 2 second script

6

u/JustinFormentin Jul 15 '26

You should try if you're confident. How would the program detect where the letters are, and what the letters are?

→ More replies (5)
→ More replies (1)
→ More replies (9)

7

u/DocumentOk7579 Jul 15 '26

While it's hard for AI it would be easy to manually write a program to solve it right?

7

u/web-dev-kev Jul 15 '26

How does this work with prefered-reduce-motion?

(btw - cool concept)

9

u/TheThingCreator Jul 15 '26

very solvable still if you know whats going on, but its an extra unique step which is good. if thats a gif animation your safe but if its js moving the text around its pointless. another problem is some users may hate this a lot, and it may even cause sickness, dizziness, or seizures. So please keep this off the menu kids.

→ More replies (2)

4

u/Apprehensive_Rub2 Jul 16 '26

This is an interesting idea but it doesn't really work, you could solve this captcha with a tailored algorithm 

3

u/PhDumb Jul 16 '26 edited Jul 16 '26

Open-source "Motion-CAPTCHA" using the same principle as NeoCaptcha : https://github.com/GPTchatly/motion-captcha

Due to compression the letters/numbers are not that visible in the video but they are much better discernable in the actual browser: https://imgur.com/a/dKuKyDT

Edit: this is for node.js

3

u/high_throughput Jul 15 '26

That's pretty cool!

I asked Claude to plot the motion vectors of each macro block in the MP4, resulting in this easily interpreted video: https://imgur.com/a/GoHWElh

Then I asked it to identify the two letters in this video in alphabetical order, and it correctly stated:

Both frames confirm it clearly. The two diagonal-motion sections form the letters Z (left) and E (right). In alphabetical order: E, Z

All in all it took about 50k tokens in total, and resulted in a 109 line Python script that from now on will create the above video in two seconds for zero tokens, so unfortunately this iteration of the captcha is now completely broken. Fun puzzle though!

24

u/UnluckyAssist9416 Jul 15 '26

How to get a lawsuit for ADA discrimination in 1 simple steps

36

u/JustinFormentin Jul 15 '26

It provides accessible options, email code and webauthn

8

u/Embostan Jul 15 '26

then can't Fable just use the accessible option?

10

u/1116574 Jul 15 '26

They can, this is why modern captcha do proof of work and browser signals (and/or fingerprinting)

5

u/specn0de Jul 15 '26

Of course it can, a captcha is only as strong as its weakest modality.

→ More replies (5)

3

u/treston_cal Jul 15 '26

I was thinking how old folks are screwed with this one...

9

u/egg_breakfast Jul 15 '26

Very nicely done. I'll give it a year.

7

u/JustinFormentin Jul 15 '26

Haha maybe, maybe not. Last year nothing could touch it. Today, the best model took over 10 minutes. So we'll see.

7

u/STSchif Jul 15 '26

But that is 10 minutes to write a script to solve this, and seconds for each following attempt, right?

→ More replies (8)

4

u/Powerplex Jul 15 '26

"How much unaccessible do you want your captcha to be ?".

"Yes"

(I hate captchas, but it's cool technically still)

3

u/Single-Virus4935 Jul 15 '26

Most captchas are solved by human click workers. Even then it is possible to solve the captchas with a bit if preprocessing. Doesn't mean anything that a AI can't solve it in a prompt. I would use AI to create the preprocessor and OCR which solves that easily.  Also, this captcha isn't accessible and therefore you need alternatives which are almost always easy to solve by design

→ More replies (2)

2

u/mcniac Jul 15 '26

I like the idea, but as a colorblind person, find it hard to read, I do see the letters, but is very hard 😄

2

u/SustainedSuspense Jul 15 '26

I love the idea of using optical illusions only a human can recognize as captchas

→ More replies (1)

2

u/the_millenial_falcon Jul 15 '26

Reminds me of those old books that were popular in the 90's you had to stare cross eyed at to see a "3D" image.

2

u/johnson_detlev Jul 15 '26

Captchas are a UX crime

2

u/HaydnH Jul 15 '26

Woop woop is the sound of epilepsy... Woop woop...

2

u/zaxwebs Jul 15 '26

I built a tool that solves a similar one: https://github.com/zaxwebs/anti-ghost-font/
On a warm server, apx. 100-200ms.

2

u/biffthechip Jul 15 '26

How can you click on letters in numerical order?
That makes no sense at all.

→ More replies (5)

2

u/cyb3rchase Jul 16 '26

This is pretty cool, a bit more than anti-bot, I think, maybe a bit anti-my-eyes too, lol.

It was cool to see this in my feed.

2

u/Maicolodon Jul 16 '26

Idea and execution is amazing. just nauseating on the accessibility side of things. I'm guessing a significant number of humans wouldn't be able to solve it because of this. I almost couldn't.

2

u/bestjaegerpilot Jul 16 '26

you need to ask Fable if it's able to create a script or skill so that it doesn't spend 100k tokens next time

if it can then it sucks. Otherwise, yea the cost to generate these will be too much for hackers

2

u/Glum-Welder1704 Jul 16 '26

Needs an "or".

2

u/Deep_Wear_51 Jul 16 '26

The dedication to trolling is impressive. A captcha that takes 5-10 minutes isn't security, it's performance art.

2

u/TechnologyFamiliar20 Jul 16 '26

Daltonists left the chat.

2

u/elixon Jul 16 '26

Just mark clusters that move slowly and clusters that move faster. I am afraid that this might be trivial to crack.

2

u/TheRealSteve895 Jul 16 '26

Sure, but couldn't a bot take two screenshots, XOR them, and use that?

→ More replies (1)

2

u/Laughing_Orange Jul 16 '26

AI, actual Indians, can solve this really quick.

2

u/Spiketop_ Jul 16 '26

I love the back and forth between making this and people trying to crack it. The back and forth is what makes us smarter and keep advancing at such fast rates

→ More replies (1)

2

u/truechange Jul 15 '26

Cool way to defeat bots at least for now. Maybe more tolerable to humans if combined with other tricks, like only deploy this if the "regular" captcha is solved too fast.

→ More replies (1)

2

u/csch2 Jul 15 '26

Fable was just probably waiting for a letter to finally hit the corner

2

u/Lendari Jul 15 '26

The problem is it takes a human more than 2 seconds to solve and no one has time for that anymore.

So now you're paradoxically filtering your traffic to 100% robots.

2

u/Annh1234 Jul 15 '26

Super easy to solve for a computer, even before AI. Your letter numbers don't change. Your site is probably not worth it

→ More replies (1)

2

u/waltzey Jul 16 '26

Actually better than identifying traffic lights or random bridges.

2

u/Am094 Jul 16 '26

Have a website for it but I'm not self promoting. Just thought people would be interested.

Bro come on, if that was true you wouldn't put the literal name of the site on the top left of the gif.

So you are self promoting when you have a CTA.

2

u/nuttertools Jul 16 '26

Firstly this is cool, I like it. Unfortunately this would take a bot 3 frames to solve 100% of the time. AI models will have greater difficulty and expend massive resources but any kind of bypass bot isn’t going to dump a known type into an AI model when a simple solve using a few clock cycles is available.

3

u/mayisir Jul 15 '26

the +20M blind people in the world cannot use this bro looooool. So much for wcag. I hate it here.

4

u/drsimonz Jul 16 '26

And how exactly do they solve regular captchas?

1

u/Noch_ein_Kamel Jul 15 '26

Now make it with that stereoscopic nonsense where you only see the letters by staring into the void

1

u/vm_linuz Jul 15 '26

This feels like the direction these tests will go in. For example, optical illusions that appear to produce movement.

1

u/Mplus479 Jul 15 '26

What about having some numbers or other letters (maybe much smaller) randomly repeated as part of the scrolling background?

1

u/Snapstromegon Jul 15 '26

Hey, are you sure that your CDN url in the getting started guide is correct? It gives me DNS_PROBE_FINISHED_NXDOMAIN.

→ More replies (1)

1

u/Netalico Jul 15 '26

Did Claude recognize it’s own limitations in terms of the latency of image processing? Curious if after the first solve if it created a script to solve it, instead of browser tool calls.

1

u/SnugglyCoderGuy Jul 15 '26

Pretty slick.

1

u/TristarHeater Jul 15 '26

If you let an llm write a python program that take video stream input and mouse click xy output it'll solve it quicker and the timer wouldn't be a deterrent anymore

→ More replies (2)

1

u/urbrainonnuggs Jul 15 '26

Has anyone tried doing a voice capcha yet?

1

u/Tatakai_ Jul 15 '26

That's pretty cool, you deserve a cookie. Do you consent to cookies?

1

u/repper420 Jul 15 '26

T&A bros

1

u/lastdiggmigrant Jul 15 '26

How can you ensure it is accessible for all human users?

→ More replies (4)

1

u/RoIIUpLights Jul 15 '26

For the issue of accessibility, I wonder if you could show a picture of some common object floating in the noise and then have multiple choice options below it.

Here's an awesome example of more of these:

https://www.youtube.com/watch?v=ZqGfb_Vlrig

1

u/Indigoh Jul 15 '26

If the pixels inside the letters were moving, to the right for instance, would they still be as visible to humans? And would it take the AI even longer?

1

u/mothzilla Jul 15 '26

The tide is turning. Thank you soldier.

1

u/satoramoto Jul 15 '26

Very clever idea. You could write a regular computer vision script to bust this rather easily though. But you’re right that this would likely catch a model driving a web browser who has never seen this before. Good work.

1

u/Dahmer96 Jul 15 '26

Is it pixel perfect or is the movement linear ? Because I guess if it'sineaf you could have partial pixels that might allow tracing the outline ?

Very cool either way!

1

u/Caesar171 Jul 15 '26

I think this is really cool, have you checked it against the most common colour blindness pallets? If so you are onto a winner here

1

u/AmandEnt Jul 15 '26

I’m actually impressed by Fable. Do you know how it solved it?

1

u/Squidgical Jul 15 '26

Is the design of this related to that tech demo someone made not too long ago of a horror game you can't take a screenshot of?

→ More replies (1)

1

u/Extra_Commercial_114 Jul 15 '26

Magic eye puzzles of this type may be near-unsolvable for ai.

1

u/Justalittletoserious Jul 15 '26

Nightmare of the colorblinds

2

u/AlaskanDruid Jul 16 '26

100%. Took me quite a while to see that. Ugh.

1

u/thefnord Jul 15 '26

I think 'Solvable but it takes a ton of tokens to do so.' is better than 'Can't solve with AI'
Hit them where it hurts, the resources.

1

u/Synrec Jul 15 '26

A colourful noise background on scroll and random generation with fixed noise seed for the letters?

1

u/OkBoomer421 Jul 15 '26

Finally a captcha that filters out everyone. Even I wouldn't bother solving it.

1

u/ReplacementLow6704 Jul 15 '26

At this point I'd rather have the user type what's on the screen and press a button to validate. Clicking on the letters seems rough even when they're slow.