sighook / gencc

credit card numbers generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NAME

gencc - credit card numbers generator

DESCRIPTION

A simple program to generate credit card numbers that pass the MOD 10 check (Luhn formula).

Usefull for testing e-commerce sites during development.

SYNOPSIS

gencc [-n COUNT] [--] CARDS...

COUNT:
   How many? One by default.

CARDS:
   visa13          (VISA 13 digits)
   visa16          (VISA 16 digits)
   mastercard      (MasterCard)
   amex            (American Express)
   discover        (Discover)
   diners          (Diners Club / Carte Blanche)
   enroute         (enRoute)
   jcb             (JCB)
   voyager         (Voyager)

   all             (all of the above)

EXAMPLE

Generate one card of each type:
$ gencc all

# DISCOVER
6011910682716059
# ENROUTE
214994042293874
# DINERS
36986690765720
# AMEX
346811970580034
# VISA13
4716561096006
# MASTERCARD
2240540381513861
# JCB
3576145242167923
# VISA16
4716674173945014
# VOYAGER
869982892481275
Don't forget to strip the comments in case of creating wordlists:
$ gencc C<args> | sed '/^#/d'
Generate 999 VISA (13 digits) cards, select unique ones, and save to file:
$ gencc -n999 visa13 | sort -u > ccards.txt
Generate 9 VISA (16 digits) and 9 MasterCards:
$ gencc -n9 visa16 mastercard

AUTHOR

Graham King, <https://github.com/grahamking>
Alexandr Savca, <https://github.com/sighook>

LICENSE AND COPYRIGHT

Copyright 2003-2012 Graham King

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

About

credit card numbers generator


Languages

Language:Perl 88.0%Language:Makefile 12.0%