forked from sudo-self/python-cc-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.py
111 lines (84 loc) · 2.45 KB
/
card.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/usr/bin/python3
import random, time, os
#sololearn bin = 5235915354xxxxxx
try:
from colorama import Fore
from credit_card_checker import CreditCardChecker as ccc
f = Fore
r = f.RED
y = f.YELLOW
g = f.GREEN
b = f.BLUE
def menu():
print(f"""{b}
____________ ______ __
/ ____/ ____/ / ____/__ ____ ___ _________ _/ /_____ _____
/ / / / / / __/ _ \/ __ \/ _ \/ ___/ __ `/ __/ __ \/ ___/
/ /___/ /___ / /_/ / __/ / / / __/ / / /_/ / /_/ /_/ / /
\____/\____/ \____/\___/_/ /_/\___/_/ \__,_/\__/\____/_/
Created by: RoPaDoPe
|-------------------------------|
~~~~~[+]{b}Are YoU a Wizzard Hairy?{y} [+]~~~~~~
CHOOSE ONE OF THE FOLLOWING OPTIONS
!!!!. Demonstration .!!!!!
[1] Amazon Primec CC
[2] HBO MAX CC
[3] Netflix and Chill CC
[4] CC-checker(not ready yet)
[0] Fuck This im Leaving
[000] I am not Responsible for your stupidity
THIS TOOL WAS MADE FOR EDUCATIONAL PURPOSES ONLY
|-------------------------------|
""")
def generator(bin):
numbers = '1234567890'
yyyy = ["2022","2023","2024","2025","2026","2027","2028",]
mm = ["01","02","03","04","05","06","07","08","09","10","11","12",]
print("How many cc to generate")
ui = int(input("Enter any Value: "))
amount = 0
while amount != ui:
y_r = random.choices(yyyy)
y_j = ''.join(y_r)
m_r = random.choices(mm)
m_j = ''.join(m_r)
cvv_r = random.choices(list(numbers), k=3)
cvv_j = ''.join(cvv_r)
cc_r = random.choices(list(numbers), k=5)
cc_j = bin+''.join(cc_r)
check = ccc(cc_j).valid()
if check == True:
amount +=1
print(f"{cc_j}|{m_j}|{y_j}|{cvv_j}")
time.sleep(.1)
def main():
menu()
while True:
print(f'{b}┌──({y}i got you)-[~/LIVE]')
ui = input(f"{r}└─>->>{g} ")
if ui == '1':
bin = '45101560210'
generator(bin)
elif ui == '2':
bin = '52215801230'
generator(bin)
elif ui == '3':
bin = '52215800230'
generator(bin)
elif ui == '4':
for i in range(10):
print(f"{y}Not Today Jack!")
time.sleep(.1)
elif ui == '000':
os.system("Catch Yall Hoes Later")
elif ui == '0':
os.system("clear")
break
elif ui =='-h' or ui == 'help':
menu()
else:
os.system(ui)
main()
except ImportError as imerr:
print("Some python modules are/is not installed!\n Enter root password to grant us permission to auto install this required modules!")
os.system('sudo pip3 install colorama; sudo pip3 install credit_card_checker')