Stripe Checker is a Python-based tool designed to validate credit cards by performing a $1 Stripe charge (pre-authorization) using a publishable key (pk_live), without requiring a Stripe Secret Key (SK).
Each card is processed by creating or attaching a payment method and attempting a small charge. Cards that return a successful response are marked as LIVE, while failed attempts are marked as DECLINED.
- Stripe $1 charge using publishable key (Non-SK)
- Multi-threaded processing (1–5 threads)
- Optional proxy support
- Proxyless operation supported
- Automatic saving of live cards
- UTF-8 input file support
- Cross-platform compatibility
- Python 3.12 or newer ( Download Python 3.12.0 )
- pip (Python package manager)
- Git (optional, for cloning the repository)
pkg update -y
pkg install git curl python -y
curl -fsSL https://raw.githubusercontent.com/KianSantang777/stripechk/main/install.sh | bash
sudo apt update -y
sudo apt install git curl python3 python3-pip -y
curl -fsSL https://raw.githubusercontent.com/KianSantang777/stripechk/main/install.sh | bash
- Download and install Python 3.12.0: https://www.python.org/downloads/release/python-3120/
- Download the repository as a ZIP file
- Extract the ZIP archive
- Open the project folder in Command Prompt or PowerShell
- Install dependencies:
python -m pip install -r requirements.txt - Run the application:
python card.py
python card.py -f <file> [-p <proxy>] [-t <threads>] --run
python card.py -f cards.txt --run
python card.py -f cards.txt -t 5 --run
python card.py -f cards.txt -p http://127.0.0.1:8080 --run
python card.py -f cards.txt -p user:pass@1.2.3.4:8080 -t 3 --run
| Option | Description |
|---|---|
| -h, --help | Display the help message |
| -f, --file | Path to the input file (UTF-8 text format) |
| -p, --proxy | Proxy server (optional) |
| -t, --threads | Number of threads (1–5, default: 5) |
| --run | Start the checking process |
All successfully charged cards are automatically saved to:
livecard.txtOutput format:
cc|mm|yy|cvv|succeeded|scheme|type|country|bank
Kian Santang DEV
GitHub: https://github.com/KianSantang777
Telegram: @xqndrs66
This project is provided strictly for educational and testing purposes.
The author assumes no responsibility for misuse, illegal activity, or any resulting damages. Use this software responsibly and in compliance with applicable laws.

