
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
rucaptcha-resolver
Advanced tools
RuCaptcha Resolver is a simple library for cracking captcha through rucaptcha service.
npm install rucaptcha-resolver
npm test
RuCaptcha Resolver is intended to be run on NodeJS 4.x or higher.
'use strict';
const request = require('co-request').defaults({ encoding: null });
const vo = require('vo');
const RuCaptchaResolver = require('rucaptcha-resolver');
vo(function* () {
const solver = new RuCaptchaResolver({ apiKey: 'YOUR_API_KEY' });
try {
const response = yield request.get('https://upload.wikimedia.org/wikipedia/commons/6/69/Captcha.jpg');
const body = response.body;
// Image should be in base64 encoding
const image = new Buffer(body).toString('base64');
const result = yield* solver.resolve({ image });
console.log(`Captcha Text: ${result}`);
} catch (e) {
console.log(e);
}
})();
FAQs
This package provide simple API to RuCaptcha service
The npm package rucaptcha-resolver receives a total of 2 weekly downloads. As such, rucaptcha-resolver popularity was classified as not popular.
We found that rucaptcha-resolver 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.