Credit-Card-Maker is a command line tool used for creating thousands of credit cards of different type
- Version : Final
- Study : UnderGraduate in GCU Lahore, Pakistan
- Repository : https://github.com/Anonym0usWork1221/Credit-Cards-Maker
The Python tool for creating valid credit cards is intended for educational purposes only. Any use of this tool for illegal or fraudulent activities is strictly prohibited and may result in severe legal consequences. The tool generates credit card numbers that may be valid, but it is not intended to be used for making actual purchases or transactions. The creator of this tool is not responsible for any illegal or unauthorized use of the tool. Use at your own risk and discretion.
- Python3.x and install pip requirements
pip3 install -r requirements
generator.py [-h] [-c CARD_TYPE] [-l LIMIT_CARDS] [-i] [-o OUTPUT_FILE]
options:
- -h, --help show this help message and exit
- -c
(CARD_TYPE) Select the card from available cards: ['AMEX', 'Discover', 'MasterCard', 'Visa'] e.g: -c MasterCard - -l
(LIMIT_CARDS)Type number of card to generate e.g: -l 5 - -i
(CARD_INFO) Fetch information of bank and related data e.g: -i - -o
(OUTPUT_FILE) output file name to store card details e.g: -o ./file.txt
- Basic
python3 generator.py -c AMEX -l 5
- Advance
python3 generator.py -c AMEX -l 5 -i -o ./cards.txt
- Validation of luhn
- Validate credit cards from binlist
Card Types |
---|
AMEX |
Discover |
MasterCard |
Visa |