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.
prompt-password
Advanced tools
Password prompt. Can be used as a standalone prompt, or as a plugin for [Enquirer].
Password prompt. Can be used as a standalone prompt, or as a plugin for Enquirer.
Install with npm:
$ npm install --save prompt-password
var Prompt = require('..');
var prompt = new Prompt({
type: 'password',
message: 'Enter your password please',
name: 'password'
});
prompt.run()
.then(function(answers) {
console.log(answers)
});
Use prompt-password-strength, or pass a function to customize how the input is masked:
var Prompt = require('..');
var prompt = new Prompt({
type: 'password',
message: 'Enter your password please',
name: 'password',
mask: function(input) {
return '█' + new Array(String(input).length).join('█');
}
});
prompt.run()
.then(function(answers) {
console.log(answers)
});
Use the .register
method to add the "password" prompt type to enquirer:
var Enquirer = require('enquirer');
var enquirer = new Enquirer();
enquirer.register('password', require('prompt-password'));
// questions can be an array or object
var questions = {
type: 'password',
message: 'Enter your password please',
name: 'password'
};
enquirer.ask(questions)
.then(function(answers) {
console.log(answers)
});
Based on the password
prompt in inquirer.
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Jon Schlinkert
Copyright © 2017, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on June 05, 2017.
FAQs
Password prompt. Can be used as a standalone prompt, or as a plugin for [Enquirer].
The npm package prompt-password receives a total of 7,112 weekly downloads. As such, prompt-password popularity was classified as popular.
We found that prompt-password 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.