Skip to content

Fake credit card generator and validator. This is only meant for educational purpose.

Notifications You must be signed in to change notification settings

bhuone-garbu/fake-credit-card

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

Fake-credit-card generation/validator

Update:

A JavaScript version is available here: https://github.com/bhuone-garbu/js-credit-card-generator, including demo.

Background

Quick and dirty implementation using Python. DISCLAIMER: This is only meant for "educational" purpose.

This is only generating a fake credit card number that statisfies the Luhn check algorithm which most of the card validation are based upon. So by knowing how the 'mod 10' is applied to validate the card number, we can then add appropriate checksum digit at the end of the number to making the random generation of number appear like a valid credit card number - reverse engineering.

Obviously, we also need to know some basics of card numbering system. Example: a Visa card always starts with 4, American Express starts with 3 and American Express with 5. Discover on the other hand starts with 6011. But even if this initial numbering system are changed, it's not a big deal. The checksum will continue to work as long as we are going to use the Luhn algorithm for card validation.

Wiki has a good simple explanation here on the algorithm:
https://en.wikipedia.org/wiki/Luhn_algorithm

Example

$ ./card_num_generator.py 
Card type: discover,  6011227847324111
Card type: mastercard,  5563218655744379
Card type: americanexpress,  361649892117471
Card type: visa13,  4291416812973
Card type: visa16,  43545942222655110

About

Fake credit card generator and validator. This is only meant for educational purpose.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published