Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hexared/pwdge0n
Multi-language password generator
https://github.com/hexared/pwdge0n
gdpr multilanguage password password-generator pidgeon posix privacy privacy-protection python python3 security security-tools shell
Last synced: 10 days ago
JSON representation
Multi-language password generator
- Host: GitHub
- URL: https://github.com/hexared/pwdge0n
- Owner: hexared
- License: gpl-3.0
- Created: 2022-02-02T10:13:34.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T10:31:08.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T03:52:25.274Z (about 1 month ago)
- Topics: gdpr, multilanguage, password, password-generator, pidgeon, posix, privacy, privacy-protection, python, python3, security, security-tools, shell
- Language: Shell
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.md
Awesome Lists containing this project
README
# Pwdge0n
A simple password generator written in:
- POSIX shell
- Python3[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
## Installation
OS X & Linux:
```sh
# sh setup.sh
```
or```sh
$ sudo sh setup.sh
```## Usage
```
Usage:pwdg [-e | -a]
Options:
-e: Exclude ambiguous symbols (eg: ' \" \` ~ , ; : . < > { } ( ) [] )
-a: Alphanumeric only (uppercase, lowercase and numbers only)```
it will output a password containing at least one symbol of each category:
- lowercase letters
- uppercase letters
- symbols`-e` option will exclude some ambiguous characters such as:
```
' " ` ~ , ; : . < > { } [ ] ( )
```
`-a` option will exclude symbol characters and will create an alphanumeric password### Warning: The password length must be at least 8 characters.