Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
这个模块用于选择困难症患者自动生成密码或者脚本里面自动生成密码
npm install rdPass --save
import rdPass from 'rdPass';
自动生成难度为3(包含数字和大小写字母),长度为6的密码
rdPass
比如生成了W0T8zL
通过第一个参数自定义难度(一共5种难度,输入的数字会对5取余,默认为3)
rdPass 4
比如生成了QNOQ/8
第二个参数会作为密码的长度(长度无限制,此时不可省略第一个参数,默认为6)
rdPass 4 12
比如生成了zO9YC+YDU4Rn
一共提供了5种难度,输入的数字会对5取余,所以可以输入任意正整数。其中0对应着最高难度5。难度解释:
难度 | 包含的字符 |
---|---|
难度1 | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
难度2 | 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' |
难度3 | 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' |
难度4 | ',', '.', '_', '-', '=', '+', '/', '*' |
难度5 | '"', "'", '[', ']', '{', '}', ' |
每一级难度会包含本级别以及低于本级别的所有字符。 |
第二个参数为密码长度。长度没有限制,会对输入的值取整取绝对值。在有第二个参数的情况下不能省略第一个参数。
FAQs
The npm package rdpass receives a total of 0 weekly downloads. As such, rdpass popularity was classified as not popular.
We found that rdpass 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.