Credit card checker using stripe payment gateway.
go to releases, to download the already compiled checker or compile it yourself
checker works by creating a Payment Ident right after it reads a credit card then creates a payment, if payment is approved, then refunds the amount charged (avoiding future problems with the card) and is given as: "live". If it is not approved, depending on the error code, the card is given as live, or not.
- the configuration file can have any name, but it must be a .cfg file with the following specifications:
- 1 key and value. the key represents a unique value to find its value.
- 2 in your configuration must contain the following keys:
config.cfg
- key: stripe-private-api-key
value: your sk key
- key: stripe-publish-api-key
value: your pk key
- key: amount
value: 1100
- the
amount
can be set to any value you want. - all the information for the config file can be found on your developer dashboard where you find the apis keys.
- the card format should be:
card_number|card_exp_month|card_exp_year|cvc
- the separator: "|" can be modified, but you will have to pass the value of the separator to the tool using:
--separator
or-s
- usage:
$ ./stripe-checker cards.txt -cfg config.cfg
- build:
go get . && go build .
⚠️ By using this tool you agree that the author of the tool and the tool are not to blame for misuse, this was created only for the purpose of studying carding. It must not be used for evil purposes.