November 19, 2022 at 2:11 PM
Description:
This is a simple python 3 script, that will read your combo list line by line then keep only the line with valid passwords and save it to an output file.
The valid passwords (usually) are the ones with:
How to use it?
You should have python 3, then:
This is a simple python 3 script, that will read your combo list line by line then keep only the line with valid passwords and save it to an output file.
The valid passwords (usually) are the ones with:
- At least 1 lowercase character
- At least 1 uppercase character
- At least 1 special character, i.e: #?!@$%^&*-
- 8-25 characters in length
- The passwords are on the right side of : each line.
How to use it?
You should have python 3, then:
- Save your combo to a text file named combo.txt
- Save the code provided to a file named e.g. script.py in the same directory
- Run the code using the following command: python3 script.py
- In the end, the valid passwords will be in the output.txt file.



