https://github.com/xvezda/python-maskprocessor
:japanese_goblin: Python maskprocessor implementation which inspired by hashcat maskprocessor
https://github.com/xvezda/python-maskprocessor
brute-force-attacks cracking-hash hashcat-masks maskprocessor python-library python2 python3
Last synced: 4 months ago
JSON representation
:japanese_goblin: Python maskprocessor implementation which inspired by hashcat maskprocessor
- Host: GitHub
- URL: https://github.com/xvezda/python-maskprocessor
- Owner: Xvezda
- License: mit
- Created: 2020-03-21T00:57:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-22T22:26:52.000Z (almost 5 years ago)
- Last Synced: 2025-01-08T01:59:07.749Z (4 months ago)
- Topics: brute-force-attacks, cracking-hash, hashcat-masks, maskprocessor, python-library, python2, python3
- Language: Python
- Homepage: https://pypi.org/project/maskprocessor/
- Size: 28.3 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Python MaskProcessor
====================
[](https://pypi.org/project/maskprocessor)
[](https://pypi.org/project/maskprocessor)
[](LICENSE)Python maskprocessor implementation which inspired by [hashcat maskprocessor](https://github.com/hashcat/maskprocessor)
Installation
------------
```sh
pip install maskprocessor
```Usage
-----Print help
```sh
maskprocessor --help # or -h
```Via command line
```sh
$ maskprocessor '?d'
0
1
2
3
4
5
6
7
8
9
```Import as python module
```python
>>> from maskprocessor import maskprocessor as maskproc
>>> g = maskproc('?l')
>>> print(next(g))
a
>>> print(next(g))
b
```License
-------
[MIT License](LICENSE)