
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
universal-vin-decoder
Advanced tools
universal-vin-decoder provides utility functions for validating and parsing Vehicle Identification Numbers (VIN).
import { decodeVIN, splitVIN, validateVIN } from 'universal-vin-decoder';
validateVIN('VR7EFYHT2PN547380'); //=> { isValid: true }
validateVIN('hello there!'); //=> { isValid: false, error: 'VIN must be 17 characters long' }
validateVIN(null); //=> { isValid: false, error: 'VIN must be a string' }
splitVIN('NMTK33BXX0R132738');
//=> {
// wmi: 'NMT', World Manufacturer Identifier
// vds: 'K33BXX', Vehicle Descriptor Section
// vis: '0R132738', Vehicle Identifier Section
// modelYear: '0', Model Year
// }
decodeVIN('VR7EFYHT2PN547380');
//=> {
// vin: 'VR7EFYHT2PN547380',
// isValid: true,
// info: {
// region: 'Europe',
// country: 'France',
// modelYear: '2023',
// manufacturer: 'Citroën'
// }
// }
Use the package manager of your choice to install it throug the NPM registry. If you use npm run:
npm install universal-vin-decoder
FAQs
An NPM package to decode Vehicle Identification Numbers (VIN)
We found that universal-vin-decoder 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.