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.
js-random-generator
Advanced tools
You can generate random number, text, password or value that you want with custom length easily.
$ npm i js-random-generator
const {generateRandom, generateRandomNumber, generateRandomText, generateRandomPassword, getRandomNumberBetween} = require('js-random-generator')
const min = 5
const max = 10
const randomNumberBetween = getRandomNumberBetween(min,max)
console.log(randomNumberBetween) // output: 7
const length = 8 // custom length
const randomNumber = generateRandomNumber(length)
console.log(randomNumber) // output: 10462678
const randomTextOnlyUpper = generateRandomText(length,false) // only upper case characters
console.log(randomTextOnlyUpper) // output: EBLKEWMK
const randomTextWithLower = generateRandomText(length,true) // includes lower case characters
console.log(randomTextWithLower) // output: EPugSiwN
const randomPassword = generateRandomPassword(length)
console.log(randomPassword) // output: y7SHvb_Q
const characterSet = 'qwerasdfzxcv' // custom character set
const randomValue = generateRandom(length,characterSet) // you can generate a random value with your custom character set
console.log(randomValue) // output: dcwzavdr
// Error => returns null
This project is licensed under the MIT License
FAQs
Useful Random Generator
The npm package js-random-generator receives a total of 8,716 weekly downloads. As such, js-random-generator popularity was classified as popular.
We found that js-random-generator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.