Loading challenge...
Solve a server-rendered arithmetic captcha (digits drawn as SVG, not text)
Two digits are drawn as 7-segment SVG strokes (not text) and the sum is sealed inside an HMAC token โ reading the operands needs OCR, not a DOM query
Each operand is rendered server-side as a distorted 7-segment glyph made of SVG <line> elements, so the actual numbers never appear as selectable or queryable text anywhere in the DOM. Add them up and type the result.
Mode: practice โ the answer is leaked below so a naive test can pass.
What is the sum of the two numbers?
Automation hints
<line> strokes, not text โ there is no innerText/value to read; page.getByText() will never find the digits?mode=practice the sum is leaked in #captcha-answer-hint โ parse it for a naive pass; in ?mode=hard decode the data:image/svg+xml from each <img> and OCR the 7-segment glyphs (or call a solver)#captcha-answer and click #captcha-submit; use #captcha-reload for a fresh pair (tokens expire ~5 min)POST /api/captcha/verify (403 on a wrong sum) โ you cannot fake it from the client#captcha-result[data-verdict=human], not just any result message