File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 88#Made By Bheemesh
99
1010
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" )
1414
1515def getnumber ():
1616 read = open ("num.txt" ,"r" )
@@ -140,7 +140,7 @@ def checker(cc,jsonrandom):
140140
141141 elif (responser .status_code == 402 ):
142142 if (jsonrespone ["error" ]["code" ] == "incorrect_cvc" ):
143- print ("CCN Found " )
143+ print ("CCN Found - " + str ( cc ) )
144144 checked .write (cc )
145145 checked .write ('\n ' )
146146 #succcess.write(cc)
@@ -181,6 +181,11 @@ def main():
181181 print ('--------------------------------------------------------------------' + str (num )+ '------------------------------------------' )
182182 num = num + 1
183183
184+ def addsuccess (text ):
185+ success = open ("cvc.txt" ,"a" )
186+ success .write (text )
187+ success .close ()
188+
184189
185190main ()
186191
You can’t perform that action at this time.
0 commit comments