
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@glenstack/cf-workers-hcaptcha
Advanced tools
Verify a hCaptcha token from within a Cloudflare Worker
Verify a hCaptcha token from within a Cloudflare Worker.
npm install --save @glenstack/cf-workers-hcaptcha
import { createVerifier } from "@glenstack/cf-workers-hcaptcha";
const verify = createVerifier("0x0000000000000000000000000000000000000000");
const handleRequest = async (request) => {
try {
const payload = await verify(request);
return new Response("Verified!");
} catch (e) {
return new Response(`Could not verify hCaptcha token: ${e.message}`, {
status: 401,
});
}
};
addEventListener("fetch", (event) => {
const { request } = event;
event.respondWith(handleRequest(request));
});
createVerifier takes a single parameter, the secret key used to verify tokens.
It returns a function which, in turn, takes two parameters:
The Request.
Optionally, an object with the optional parameters:
tokenExtractor: An asynchronous function which, when given a Request, returns the token to verify. This defaults to extracting h-captcha-response from the formData body.It returns a Promise of the the hCaptcha payload if the verification was successful, else throws an error with a human-readable error message.
FAQs
Verify a hCaptcha token from within a Cloudflare Worker
We found that @glenstack/cf-workers-hcaptcha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.