Skip to content

Commit

Permalink
Update ccchecker.py
Browse files Browse the repository at this point in the history
  • Loading branch information
srevarun authored Mar 26, 2020
1 parent 58edd86 commit 7489832
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions ccchecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#Made By Bheemesh


succcess = open("python3.8/cvc.txt", "a")
checked = open("python3.8/checkcards.txt", "a")
othercards = open("python3.8/othercards.txt", "a")
succcess = open("cvc.txt", "a")
checked = open("checkcards.txt", "a")
othercards = open("othercards.txt", "a")

def getnumber():
read = open("num.txt","r")
Expand Down Expand Up @@ -140,7 +140,7 @@ def checker(cc,jsonrandom):

elif (responser.status_code == 402):
if(jsonrespone["error"]["code"] == "incorrect_cvc"):
print("CCN Found ")
print("CCN Found - " + str(cc))
checked.write(cc)
checked.write('\n')
#succcess.write(cc)
Expand Down Expand Up @@ -181,6 +181,11 @@ def main():
print('--------------------------------------------------------------------'+str(num)+'------------------------------------------')
num = num + 1

def addsuccess(text):
success = open("cvc.txt","a")
success.write(text)
success.close()


main()

Expand Down

0 comments on commit 7489832

Please sign in to comment.