
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
node-recaptcha renders and verifies Recaptcha captchas.
NOTE: This release currently only supports Recaptcha version 1.
Via git:
$ git clone git://github.com/mirhampt/node-recaptcha.git ~/.node_libraries/node-recaptcha
Via npm:
$ npm install recaptcha
Before you can use this module, you must visit http://www.google.com/recaptcha to request a public and private API key for your domain.
To run the tests for this module, you will first need to install nodeunit. Then, simply run:
$ nodeunit test.js
See these instructions for help customizing the look of Recaptcha. In brief, you will need to add a structure like the following before the form in your document:
<script type="text/javascript">
var RecaptchaOptions = {
theme : 'clean',
lang : 'en'
};
</script>
app.js:
var express = require('express'),
Recaptcha = require('recaptcha').Recaptcha;
var PUBLIC_KEY = 'YOUR_PUBLIC_KEY',
PRIVATE_KEY = 'YOUR_PRIVATE_KEY';
var app = express.createServer();
app.configure(function() {
app.use(express.bodyParser());
});
app.get('/', function(req, res) {
var recaptcha = new Recaptcha(PUBLIC_KEY, PRIVATE_KEY);
res.render('form.jade', {
layout: false,
locals: {
recaptcha_form: recaptcha.toHTML()
}
});
});
app.post('/', function(req, res) {
var data = {
remoteip: req.connection.remoteAddress,
challenge: req.body.recaptcha_challenge_field,
response: req.body.recaptcha_response_field
};
var recaptcha = new Recaptcha(PUBLIC_KEY, PRIVATE_KEY, data);
recaptcha.verify(function(success, error_code) {
if (success) {
res.send('Recaptcha response valid.');
}
else {
// Redisplay the form.
res.render('form.jade', {
layout: false,
locals: {
recaptcha_form: recaptcha.toHTML()
}
});
}
});
});
app.listen(3000);
views/form.jade:
form(method='POST', action='.')
!= recaptcha_form
input(type='submit', value='Check Recaptcha')
Make sure express and jade are installed, then:
$ node app.js
FAQs
Display and verify a Recaptcha captcha
The npm package recaptcha receives a total of 786 weekly downloads. As such, recaptcha popularity was classified as not popular.
We found that recaptcha 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.