Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
jquery-creditcardvalidator
Advanced tools
jQuery Credit Card Validator detects and validates credit card numbers. It’ll tell you the detected credit card type and whether the number length and Luhn checksum are valid for the type of card.
npm i jquery-creditcardvalidator
Download the latest jquery.creditCardValidator.js.
The latest stable version is always in the master branch. If you need previous versions, you’ll find them on the releases page.
Do not use any branches other than master. Branches starting with release/
are development branches and they will most likely be broken.
Run validation every time a field value changes:
$('#cc_number').validateCreditCard(function(result) {
if (result.valid) {
$(this).addClass('cc-valid');
} else {
$(this).removeClass('cc-valid');
}
});
Run validation once:
const result = $('#cc_number').validateCreditCard();
if (result.valid) {
$(this).addClass('cc-valid');
} else {
$(this).removeClass('cc-valid');
}
For full documentation see the jQuery Credit Card Validator website.
FAQs
Detect and validate credit card numbers.
The npm package jquery-creditcardvalidator receives a total of 722 weekly downloads. As such, jquery-creditcardvalidator popularity was classified as not popular.
We found that jquery-creditcardvalidator 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.