Skip to content

Commit 7489832

Browse files
authored
Update ccchecker.py
1 parent 58edd86 commit 7489832

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

ccchecker.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
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

1515
def 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

185190
main()
186191

0 commit comments

Comments
 (0)