This script checks credit card validity using the Stripe API. It reads card details from a file (cc.txt
), processes them, and saves the results in results.txt
.
✅ Reads credit cards from cc.txt
✅ Uses Stripe API to verify cards
✅ Saves results to results.txt
✅ Handles errors & invalid formats
- Python 3.x
- Stripe API key
stripe
Python library
-
Clone the repository or download the script.
git clone https://github.com/ghost-sellz/cc-checker cd cc-checker
-
Install required dependencies.
pip install -r requirements.txt
-
Edit the script and replace
your_key_goes_here
with your Stripe secret key.
- Add credit card details to
cc.txt
in this format:4242424242424242 | 12 | 2025 | 123 4000056655665556 | 11 | 2024 | 456
- Run the script:
python main.py
- Results will be saved in
results.txt
.
Each line in results.txt
will show the card status:
4242424242424242 | 12 | 2025 | 123 - Approved ✅
4000056655665556 | 11 | 2024 | 456 - Declined ❌ (Card declined)
- i am NOT hold accountable for what you do with this tool
MIT License