
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
mtcrackcha
Advanced tools
mtcrackcha using npm or bun or whatever the latest pacakge manager isimport MTCaptcha from 'mtcrackcha';
mtcaptchaConfig.sitekey and copy the outputif the website you are solving on has text input captchas, you'll need to pick up a Mistral API key over at mistral.ai - the key is free and gives you access to their pixtral model (pixtral-large-latest), which is currently the best vision model for solving mtcaptcha's challenges
// if there's text input:
const mtc = new MTCaptcha({
siteKey: 'MTPublic-THISISAKEY',
host: 'https://google.com',
mistralKey: 'XXXXXXX'
});
// if there's no input (invisible):
const mtc = new MTCaptcha({
siteKey: 'MTPublic-THISISAKEY',
host: 'https://google.com',
invisible: true
});
mtcatpcha punishes IPs that request lots of captchas with harder captchas that Mistral's vision models have more trouble solving. On runtimes that support the
proxyoption tofetch, you can set thePROXYenvironment variable to have all requests go through a proxy. Rotating proxies are not flagged by mtcaptcha.
identify the page's "act"
getchallenge.jsonact valuecall the mtc.solve method:
const solution = await mtc.solve('the_act_goes_here');
if (solution.success) console.log('got mtcaptcha token', solution.token);
else console.log('whelp, time to try it again');
FAQs
a free, working, and open-source mtcaptcha solving library
We found that mtcrackcha demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.