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.
headless-trello-auth
Advanced tools
Log into a Trello account and get an authorization token for the Trello API.
Use npm
: npm install headless-trello-auth
Nightmare is a browser automation toolkit based on Electron. Nightmare is installable and usable via NPM natively. For most cases, it will Just Work (tm) out of the box.
However, Electron requires a video buffer to be available. If you are using this library on a headless system (eg, a server with no X client, a Docker instance, or a chroot under Crouton), you will need to use a virtual framebuffer to get this library working. More information about this can be found in the Nightmare repository's issues.
The exposed method takes an options hash:
The callback (or promise resolution) passes up the newly minted token from Trello.
Say you wanted to add a card using the Trello API wrapper:
var headlessAuth = require('headless-trello-auth');
headlessAuth({
username: 'user@example.com',
password: 'MySuperSecretPassword',
scopes: 'read,write',
applicationName: 'headless-auth-test'
}, function(err, token){
trello = new (require('trello'))('[application key]', token);
trello.addCard('Clean car', 'Wax on, wax off', listId,
function(err, trelloCard){
if(err){
console.log('Could not add card: ', err);
} else {
console.log('added card: ', trelloCard);
}
});
});
If you wanted to use promises instead, using the same example as above:
var headlessAuth = require('headless-trello-auth');
var promise = headlessAuth({
username: 'user@example.com',
password: 'MySuperSecretPassword',
scopes: 'read,write',
applicationName: 'headless-auth-test'
});
//... other code as needed ...
promise.then(function(token){
trello = new (require('trello'))('[application key]', token);
trello.addCard('Clean car', 'Wax on, wax off', listId,
function(err, trelloCard){
if(err){
console.log('Could not add card: ', err);
} else {
console.log('added card: ', trelloCard);
}
});
});
If two-factor authentication is required and detected, there will be a prompt for the SMS code unless noPrompts
is specified.
FAQs
Automatically grant access for your application in Trello
The npm package headless-trello-auth receives a total of 0 weekly downloads. As such, headless-trello-auth popularity was classified as not popular.
We found that headless-trello-auth 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
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.