Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@infosimples/node_two_captcha
Advanced tools
Node.js package for easy integration with 2Captcha API (Captcha Solver as a Service)
Node TwoCaptcha is a Javascript package for 2Captcha - 2Captcha.com.
Just run:
npm install node_two_captcha
// Import module
const Client = require('node_two_captcha');
// Declare your client
client = new Client('your_2captcha_key', {
timeout: 60000,
polling: 5000,
throwErrors: false});
The first parameter of the TwoCaptchaClient
constructor is your API key from
2Captcha. The other parameters are:
timeout
: Time (milliseconds) to wait before giving up on waiting for a
captcha solution.polling
: Time (milliseconds) between polls to 2captcha server. 2Captcha
documentation suggests this time to be at least 5 seconds, or you might get
blocked.throwErrors
: Whether the client should throw errors or just log the errors.client.decode({
url: 'http://bit.ly/1xXZcKo'
}).then(function(response) {
console.log(response.text);
});
> infosimples
decode
is an async function. Valid parameters for decode
function are:
base64
: An already base64-coded image.buffer
: A buffer object of a binary image.path
: The path for a system-stored image.url
: Url for a web-located image.The returned value will be a Captcha
object. Its properties are:
apiResponse
: Complete API response body for captcha request.id
: Captcha ID, as provided from 2Captcha.text
: Text from captcha.coordinates()
: If the captcha sent was a image, this function returns the
coordinates (X, Y) clicked.indexes()
: If the captcha sent was tile-like, this function returns the
indexes of the clicks on an array.client.decodeRecaptchaV2({
googlekey: 'the_key_extracted from the page',
pageurl: 'https://www.google.com/recaptcha/api2/demo'
}).then(function(response) {
console.log(response.text);
});
>jTfh3o9uqafa-u5RtYofHHo2uDk0T78f78HvttFGYft8pG3wuhd-UHAIy271bQXPeUNRm...
decodeRecaptchaV2
is an async function. The parameters for decodeRecaptchaV2
function are:
googlekey
: The google key for the ReCaptcha.pageurl
: The URL where the ReCaptcha is.// 61086191138 is the ID of a previously sent Captcha
client.captcha('61086191138').then(function(response){
console.log(response);
});
> Captcha {
_id: '61086191138',
_apiResponse: 'OK|infosimples',
_text: 'infosimples' }
client.report('61086191138').then(function(response) {
console.log(response);
});
// Returns whether the report was received or not
> true
Warning: do not abuse on this method, otherwise you may get banned
let date = new Date('2019-02-04');
client.stats(date).then(function(response) {
console.log(response);
});
// Returns an XML string with your usage statistics
> <?xml version="1.0"?><response><stats dateint="1549227600" date="2019-02-04" hour="00"><volume>0</volume><money>0</money></stats><stats dateint="1549231200" date="2019-02-04" hour="01"><volume>0</volume><money>0</money></stats>...
client.balance().then(function(response) {
console.log(response);
});
// Returns a float with your account balance in USD
> 3.75371
FAQs
Node.js package for easy integration with 2Captcha API (Captcha Solver as a Service)
We found that @infosimples/node_two_captcha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.