https://github.com/rozensoftware/rozcsp
Stupid Corporate Password Generator
https://github.com/rozensoftware/rozcsp
hacking-tool password-cracking password-generator password-generator-python python3
Last synced: 3 months ago
JSON representation
Stupid Corporate Password Generator
- Host: GitHub
- URL: https://github.com/rozensoftware/rozcsp
- Owner: rozensoftware
- License: apache-2.0
- Created: 2023-05-13T17:03:18.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-14T17:02:30.000Z (about 2 years ago)
- Last Synced: 2025-01-12T19:27:24.631Z (5 months ago)
- Topics: hacking-tool, password-cracking, password-generator, password-generator-python, python3
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# rozcsp
Stupid Corporate Password Generator
Version: 1.0
## Description
The program generates simple passwords created quickly by people due to corporate requirements. Often such passwords are not particularly calculating and contain combinations of previous passwords. Frequent changes of passwords in companies are an annoying process, so the passwords quickly invented can be somewhat predictable. This program is the answer to that. You can generate combinations of passwords that can be used in a dictionary attack.
It should work on every system in which Python is installed.
## Building
Python3 is required. Additional psutil package is needed also:
```bash
sudo apt install python3-psutil
```## Usage
In the input file, passwords should be specified, which will be transformed to obtain various permutations of them.
```bash
./rozcsp -i passtemplate.txt -o pswds.txt
```*-i* - input file with basic passwords with words e.g.: my_secret_pass, pass12, winter, john, etc. Keep all words lower case. Try to have number of input words/passwords under a thousand because output file might be big. It shouldn't be a problem having even greater number of words but I didn't tested this too much. It is recommended to be cautious in this. Example file *passtemplate.txt* is added to this repository. It includes common human names and dogs names.
*-o* - output file in which generated passwords based on the input content file will be saved.
*-d* - flag, when specified will print some debug information e.g. memory usage.
## Example
For a given word *john* the output might be as follows:
```txt
john
John
j0hn
J0hn
john0
john1
john2
john3
... etc.
```## License
This project is licensed under either of
Apache License, Version 2.0, (LICENSE-APACHE or )
MIT license (LICENSE-MIT or )
at your option.## Contributing / Feedback
I am always glad to learn from anyone.
If you want to contribute, you are more than welcome to be a part of the project! Try to share you thoughts first! Feel free to open a new issue if you want to discuss new ideas.Any kind of feedback is welcome!