Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
textfield-length-validation
Advanced tools
This module modifies the character countdown for text fields and shows a message if it has more characters than admited.
This should be used in the following manner:
Install with the command:
npm install --save textfield-length-validation
Then, in your code:
import { lengthValidation } from 'textfield-length-validation';
let isValid = lengthValidation(input, counter, maxCharacters);
Where:
input
is the input fieldcounter
could be a <span>
tag to show the character countdownmaxCharacters
is the maximum number of characters allowed<input type="text" id="input"/>
<div>
Characters left <span id="textCounter"></span>
</div>
import { lengthValidation } from 'textfield-length-validation';
const input = document.getElementById('input');
const counter = document.getElementById('textCounter');
const maxCharacters = 10;
lengthValidation(input, counter, maxCharacters);
As it returns a boolean
, it can be used to disable a submit button.
FAQs
This module modifies the character countdown for text fields and shows a message if it has more characters than admited.
We found that textfield-length-validation 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.