Skip to content

Latest commit

 

History

21 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Meduza VIP

Stripe Charge $1 (Non-SK) Card Checker v1.4

Stripe Checker Preview

Overview

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.


Key Features

  • 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

System Requirements

  • Python 3.12 or newer ( Download Python 3.12.0 )
  • pip (Python package manager)
  • Git (optional, for cloning the repository)

Screenshot

Stripe Checker Screenshot


Installation

Termux (Android)

pkg update -y
pkg install git curl python -y
curl -fsSL https://raw.githubusercontent.com/KianSantang777/stripechk/main/install.sh | bash

Linux / Ubuntu

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

Windows (CMD / PowerShell)

  1. Download and install Python 3.12.0: https://www.python.org/downloads/release/python-3120/
  2. Download the repository as a ZIP file
  3. Extract the ZIP archive
  4. Open the project folder in Command Prompt or PowerShell
  5. Install dependencies:
    python -m pip install -r requirements.txt
  6. Run the application:
    python card.py

Usage

python card.py -f <file> [-p <proxy>] [-t <threads>] --run

Examples

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

Command Line Options

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

Output

All successfully charged cards are automatically saved to:

livecard.txt

Output format:

cc|mm|yy|cvv|succeeded|scheme|type|country|bank

Author

Kian Santang DEV
GitHub: https://github.com/KianSantang777
Telegram: @xqndrs66


Disclaimer

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.