File tree 1 file changed +9
-4
lines changed 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 8
8
#Made By Bheemesh
9
9
10
10
11
- succcess = open ("python3.8/ cvc.txt" , "a" )
12
- checked = open ("python3.8/ checkcards.txt" , "a" )
13
- othercards = open ("python3.8/ othercards.txt" , "a" )
11
+ succcess = open ("cvc.txt" , "a" )
12
+ checked = open ("checkcards.txt" , "a" )
13
+ othercards = open ("othercards.txt" , "a" )
14
14
15
15
def getnumber ():
16
16
read = open ("num.txt" ,"r" )
@@ -140,7 +140,7 @@ def checker(cc,jsonrandom):
140
140
141
141
elif (responser .status_code == 402 ):
142
142
if (jsonrespone ["error" ]["code" ] == "incorrect_cvc" ):
143
- print ("CCN Found " )
143
+ print ("CCN Found - " + str ( cc ) )
144
144
checked .write (cc )
145
145
checked .write ('\n ' )
146
146
#succcess.write(cc)
@@ -181,6 +181,11 @@ def main():
181
181
print ('--------------------------------------------------------------------' + str (num )+ '------------------------------------------' )
182
182
num = num + 1
183
183
184
+ def addsuccess (text ):
185
+ success = open ("cvc.txt" ,"a" )
186
+ success .write (text )
187
+ success .close ()
188
+
184
189
185
190
main ()
186
191
You can’t perform that action at this time.
0 commit comments