It bruteforces a certain Nitro subscription in discord with appropriate credentials.
-
Generate Mastercard Details:
- Creates random 16-digit Mastercard numbers using luhn algorithm.
- Includes 3-digit CVV codes.
- Provides expiry dates in MM/YY format.
-
Save Card Details:
- Stores generated card details (card number, CVV, expiry date) in a
cards.txt
file.
- Stores generated card details (card number, CVV, expiry date) in a
-
Validate Cards:
- Reads card details from
cards.txt
. - Tests each card by attempting to redeem Discord Nitro using an API endpoint.
- Reads card details from
-
Error Handling:
- Manages invalid responses and errors during card validation.
- Offers feedback on the success or failure of each test.
-
Customization:
- Adjustable to generate a different number of cards.
- Configurable for different API endpoints and authorization tokens.
-
Educational Purpose:
- Designed for learning about generating and handling sensitive data.
- Demonstrates file operations and API requests in Python.
This program aims to provide a hands-on learning experience while demonstrating essential programming concepts.