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.
This module makes a string of charcters randomly and can serve as an id string for databases...
It makes random strings per specified length. It can be used as id in database and apps supported by the environment.
Use the package manager npm to install raidmaker.
npm install raidmaker
const raidmaker = require('raidmaker'); // or
const { generate } = require('raidmaker');
console.log(generate(8, {no: 6}));
// [ 'AXaT6', 'V7xun', 'CPM2c', '2kvbg', 'c93ZQ', 'GdHcv' ]
Generate the strings given the length
length
length of string returned. default
: 5
options
no
of id element in the returned Array
. default
: 1, a string
is returned
mode
either of:
- apnr
|| alphanumeric
for alphanumeric
- figs
|| figures
for figures
- alpha
|| alphabets
for alphabets
- as
|| alphaspecial
for alphabets with special characters
- all
for all characters
console.log(raidmaker.generate(5));
// WjMOs
console.log(raidmaker.generate(25, {mode: 'alphaspecial'})); // GvSb&k\WUYHXlrx#zxsVjfppH
console.log(raidmaker.generate(25, {mode: 'apnr'})); // 6IlWaZLnTQEeO8sDyAbSbhquA
console.log(raidmaker.generate(25, {mode: 'alpha'})); // pQjzQFrImUNSYBgMKELgGuosK
console.log(raidmaker.generate(25, {mode: 'all'})); // kQKCIuK&#xRGtwl65IarJ-S\Z
console.log(raidmaker.generate(25, {mode: 'figs'})); // 3140011315334175469386711
Visit the Github repository. Thanks
FAQs
This module makes a string of charcters randomly and can serve as an id string for databases...
We found that raidmaker 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
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.