
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
usdl-regex
Advanced tools
US Driver's License validation via https://ntsi.com/drivers-license-format/
Node package for validating US Drivers License numbers. Based on other similar language modules which originate from https://ntsi.com/drivers-license-format/
Pass in a State and a DL Number and it'll validate if it's true or false
const { isValid } = require('usdl-regex');
const state = 'CA';
const truthyResult = isValid(state, 'F1112001');
// returns true
const falsyResult = isValid(state, 'ABC1112001');
// returns false
Pass in a State and a DL Number and it'll validate if it's true or false. If it is "false", then it will return a description on what it expects
const { isValidOrReturnDescription } = require('usdl-regex');
const state = 'CA';
const truthyResult = isValidOrReturnDescription(state, 'F1112001');
// returns true
const falsyResult = isValidOrReturnDescription(state, 'ABC1112001');
// returns ["1 Alpha + 7 Numeric"]
Fix Nebraska regex to allow 1Alpha+6-8Numeric
Fix Oregon to allow A+6Numeric
Fix Kentucky regex type from A_Z to A-Z
FAQs
US Driver's License validation via https://ntsi.com/drivers-license-format/
The npm package usdl-regex receives a total of 1,199 weekly downloads. As such, usdl-regex popularity was classified as popular.
We found that usdl-regex 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
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.