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.
@claviska/jquery-show-password
Advanced tools
Show and hide the contents of a password input on demand.
Developed by Cory LaViska for A Beautiful Site, LLC
Licensed under the MIT license: http://opensource.org/licenses/MIT
This plugin provides a minimal, lightweight solution to show the user the contents of a password field.
Features:
Include the minified version of this plugin in your project or install via NPM:
npm install --save @claviska/jquery-showPassword
Minimal example:
<input id="password" type="password">
<button id="trigger" type="button">Toggle</button>
$('#trigger').showPassword({
input: '#password'
});
Bootstrap 4 example (with FontAwesome):
<div class="input-group">
<input id="password" class="form-control" type="password">
<span class="input-group-btn">
<button id="trigger" type="button" class="btn btn-secondary">
<i class="fa fa-eye"></i>
</button>
</span>
</div>
$('#trigger').showPassword({
input: '#password',
change: function(type) {
$(this).find('.fa')
.toggleClass('fa-eye', type === 'password')
.toggleClass('fa-eye-slash', type === 'text');
}
});
input
: a selector that points to the password input element (e.g. #my-password
).All callbacks are called in the context of the respective trigger.
change
: runs when the password field is toggled. The callback will receive the new state of the input as an argument, which will always equal either password
or text
.Methods are called using this syntax:
$('#trigger').showPassword('method', arg);
The following API methods are supported:
destroy
: returns the control to its pre-initialized state.FAQs
Show and hide the contents of a password input on demand.
The npm package @claviska/jquery-show-password receives a total of 0 weekly downloads. As such, @claviska/jquery-show-password popularity was classified as not popular.
We found that @claviska/jquery-show-password 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.