Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sighook/gencc
credit card numbers generator
https://github.com/sighook/gencc
credit-card generator luhn-algorithm testing-tools
Last synced: 17 days ago
JSON representation
credit card numbers generator
- Host: GitHub
- URL: https://github.com/sighook/gencc
- Owner: sighook
- Created: 2020-02-14T11:08:51.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-01T23:55:40.000Z (almost 2 years ago)
- Last Synced: 2023-10-20T06:54:29.918Z (about 1 year ago)
- Topics: credit-card, generator, luhn-algorithm, testing-tools
- Language: Perl
- Size: 8.79 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.pod
Awesome Lists containing this project
README
=pod
=encoding UTF-8
=head1 NAME
gencc - credit card numbers generator
=head1 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.
=head1 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)
=head1 EXAMPLE
=over 2
=item 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=item Don't forget to strip the comments in case of creating wordlists:
$ gencc C | sed '/^#/d'
=item Generate 999 VISA (13 digits) cards, select unique ones, and save to file:
$ gencc -n999 visa13 | sort -u > ccards.txt
=item Generate 9 VISA (16 digits) and 9 MasterCards:
$ gencc -n9 visa16 mastercard
=back
=head1 AUTHOR
=over
=item Graham King,
=item Alexandr Savca,
=back
=head1 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.=cut
# vim:sw=2:ts=2:sts=2:et:cc=72:tw=70
# End of file.