
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
wordlist-generator-cli
Advanced tools
When I came over wordlist generation tools like crunch.
I wanted to generate all [lower, upper] case combinations of a specific char sequence but sadly I couldn't 😥️.
So I worte my own code to do that with some other features.
Then I implemented it as a cli tool for any one facing this situation.
$ npm install -g wordlist-generator-cli
$ wgen [options]
options:
-V, --version output the version number
-w, --word <value> Specify the word to generate combinations
-o, --output <path> Specify the path for the output file
-p, --preserved [value] Specify a word to preserve from combinations, works
with -i option
-i, --index [value] Specify the index for the preserved word in the
combinations word
index is 0 based
default is -1
-h, --help display help for command
$ wgen -w abc -o /home/user/wordlists/wordlist.txt
__ _____ _ __ __| | (_)___| |_ __ _ ___ _ __
\ \ /\ / / _ \| '__/ _` | | / __| __|____ / _` |/ _ \ '_ \
\ V V / (_) | | | (_| | | \__ \ ||_____| (_| | __/ | | |
\_/\_/ \___/|_| \__,_|_|_|___/\__| \__, |\___|_| |_|
|___/
Generating combinations of 8 words...
Generated successfully.
wordlist can be found at path: /home/user/wordlists/wordlist.txt
abc
abC
aBc
aBC
Abc
AbC
ABc
ABC
[-p] option allow you to specify chars you want to add to the combinations.
[-i] option allow you to specify the index at the combinations to add preserved chars to.
If you didn't add the [-i] option it will add chars to the end of the combinations.
$ wgen -w abcd -o /home/user/wordlists/wordlist.txt -p @
__ _____ _ __ __| | (_)___| |_ __ _ ___ _ __
\ \ /\ / / _ \| '__/ _` | | / __| __|____ / _` |/ _ \ '_ \
\ V V / (_) | | | (_| | | \__ \ ||_____| (_| | __/ | | |
\_/\_/ \___/|_| \__,_|_|_|___/\__| \__, |\___|_| |_|
|___/
Generating combinations of 16 words...
Generated successfully.
wordlist can be found at path: /home/user/wordlists/wordlist.txt
abcd@
abcD@
abCd@
abCD@
aBcd@
aBcD@
aBCd@
aBCD@
Abcd@
AbcD@
AbCd@
AbCD@
ABcd@
ABcD@
ABCd@
ABCD@
Note: index is 0 based.
$ wgen -w abcd -o /home/user/wordlists/wordlist.txt -p @ -i 2
__ _____ _ __ __| | (_)___| |_ __ _ ___ _ __
\ \ /\ / / _ \| '__/ _` | | / __| __|____ / _` |/ _ \ '_ \
\ V V / (_) | | | (_| | | \__ \ ||_____| (_| | __/ | | |
\_/\_/ \___/|_| \__,_|_|_|___/\__| \__, |\___|_| |_|
|___/
Generating combinations of 16 words...
Generated successfully.
wordlist can be found at path: /home/user/wordlists/wordlist.txt
ab@cd
ab@cD
ab@Cd
ab@CD
aB@cd
aB@cD
aB@Cd
aB@CD
Ab@cd
Ab@Cd
Ab@cD
Ab@CD
AB@cd
AB@cD
AB@Cd
AB@CD
wordlist-generator-cli is ISC Licensed.
FAQs
cli tool for wordlist generation.
We found that wordlist-generator-cli 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.