Tuesday, September 15, 2026 Independent journalism
MediaChannel

technology

What is a CAPTCHA and how does it actually work?

CAPTCHAs are the puzzles that stand between you and a website's login or checkout page, but most Australians don't know how they actually work. Here's a clear guide to the technology protecting the web.

Focus on password security with white keyboard tiles spelling 'PASSWORD' on a coral background.

Photo by Miguel Á. Padriñán on Pexels

CAPTCHA is the test that greets you when you try to book concert tickets, log in to your bank, or register for a new account online. Sometimes it asks you to identify traffic lights. Sometimes it just watches you click a box. Either way, its job is the same: confirm that you're a human and not an automated program trying to abuse the site. What sits behind that deceptively simple idea is a surprisingly sophisticated piece of technology that has changed several times over the past two decades.

What CAPTCHA stands for

CAPTCHA is an acronym. It stands for Completely Automated Public Turing test to tell Computers and Humans Apart. The name references the Turing test, the concept proposed by British mathematician Alan Turing in 1950 to assess whether a machine could exhibit intelligent behaviour indistinguishable from a human. A CAPTCHA flips the concept: instead of a human judging whether a machine seems human, a machine judges whether a visitor seems human.

Carnegie Mellon University researchers coined the term in 2000, though similar concepts had existed in practice for a few years before that. The original goal was simple: make a test that computers could administer but not pass. That goal has become considerably harder to achieve as artificial intelligence has improved.

Why websites use CAPTCHAs

Automated bots can visit a webpage millions of times per hour. Without any defence, a bad actor could use bots to buy all available stock the moment it goes on sale, submit spam through contact forms at scale, or attempt thousands of password guesses in seconds. That last attack type, known as a brute force attack, is one of the most direct threats a brute force attack poses to any service that requires login credentials.

CAPTCHAs sit in front of those high-risk actions as a friction layer. They don't need to be impossible for bots to solve. They just need to be expensive enough in time or computing resources that automated abuse stops being economical.

How the original text CAPTCHA worked

The first widely deployed CAPTCHAs showed users distorted text and asked them to type what they saw. The distortion, wavy lines, misaligned letters, added noise, was specifically designed to defeat optical character recognition (OCR) software, which at the time struggled to parse anything that wasn't clean and neatly formatted.

This approach worked reasonably well until around 2012, when machine learning models became good enough to solve distorted text CAPTCHAs with accuracy exceeding 99 percent. A distorted word that a human found difficult was no longer a meaningful barrier to a well-trained bot.

Image-based CAPTCHAs and reCAPTCHA

Google acquired reCAPTCHA in 2009 and has since become the dominant CAPTCHA provider on the web. The system evolved from text puzzles to image grids, the familiar "select all squares containing a bus" challenges. Image recognition is harder to automate than text recognition, but that gap has narrowed too. Google's own research showed that bots trained on image datasets could solve image CAPTCHAs with similar accuracy to humans within a few years of rollout.

reCAPTCHA v2 introduced the now-iconic "I'm not a robot" checkbox. It looks trivial. Clicking a box doesn't prove much. But the checkbox is almost beside the point. What reCAPTCHA v2 actually measures is behavioural data collected before, during, and after the click: mouse movement patterns, how long the cursor hesitates, browser history signals, and whether the IP address has a suspicious track record. The checkbox is the visible prompt. The real analysis happens invisibly.

Invisible CAPTCHAs and risk scoring

reCAPTCHA v3, released in 2018 and now widely deployed, dispenses with the puzzle entirely. It runs silently in the background and assigns every visitor a risk score between 0.0 and 1.0. A score close to 1.0 suggests a human. A score close to 0.0 suggests a bot. The website operator sets a threshold and decides what to do with low-scoring visitors: block them, show a challenge, or flag them for extra review.

This is where the system gets interesting from a privacy standpoint. Invisible CAPTCHAs work by collecting a significant amount of behavioural data about your session. This is functionally similar to the tracking cookies and pixel trackers that follow users across the web. Understanding what a pixel tracker does helps explain why invisible CAPTCHAs feel invisible: they work through the same kind of silent background observation.

Alternative CAPTCHA systems

Not every website uses Google's reCAPTCHA. Several alternatives have gained traction, each with a different approach to the human-verification problem.

  • hCaptcha: Developed by Intuition Machines, hCaptcha presents image challenges similar to reCAPTCHA v2 but does not route data through Google. It's popular with privacy-focused services and now used by Cloudflare, one of the largest web infrastructure companies in the world.
  • Friendly Captcha: A German-built alternative that uses a small proof-of-work computation in the visitor's browser rather than behavioural surveillance. The visitor's device does a bit of computing work; bots find doing that at scale expensive.
  • Turnstile: Cloudflare's own CAPTCHA replacement, launched in 2022, which focuses on privacy-preserving signals and avoids displaying any puzzle to the vast majority of users.

Why CAPTCHAs aren't a complete security solution

A CAPTCHA stops bots. It doesn't stop humans with bad intentions, and it doesn't stop sophisticated operations that pay low-wage workers to solve CAPTCHAs manually at scale. These "CAPTCHA farms" exist in several countries and can solve thousands of challenges per hour for a few dollars. That's a cost some attackers are willing to absorb.

CAPTCHAs also create real friction for legitimate users, particularly people with visual impairments who may struggle with image-based tests. Audio alternatives exist but are often poorly designed. This is why the industry has moved steadily towards invisible, behavioural approaches, even as those raise their own questions about how much data is being collected in the background.

For most Australian users, the practical takeaway is this: a CAPTCHA is one layer in a broader security posture, not a wall on its own. Websites that take security seriously pair CAPTCHAs with rate limiting, strong authentication requirements, and proper encryption. Cybersecurity is a layered discipline, and no single mechanism carries the full load. Understanding what cybersecurity actually involves explains why that layered approach is the only one that holds up over time.

The arms race between CAPTCHA designers and bot developers is ongoing. As machine learning improves, every image-based test that relies on pattern recognition becomes more vulnerable. The direction the industry is heading, behavioural analysis, device signals, and risk scoring, reflects the recognition that a static puzzle is only as useful as its shelf life, and that shelf life is getting shorter.