├── input.txt ├── output.txt ├── start.bat ├── README.md └── main.py /input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | python main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VCC-Reformatter 2 | Made by fastboosts.com | https://t.me/H4unt 3 | 4 | For the cheapest and fastest high qaulity proxies join - https://discord.gg/myproxies 5 | 6 | Reformatter for 1 claim/indian vccs 7 | 8 | Reformats 9 | Online Payment Card Details: 10 | Card value: 1.00 EGP 11 | Card number: 5170617389498894 12 | Exp Date: 07/24 13 | CVC: 146 14 | Ref number: 329522491 15 | 16 | to 17 | 18 | 5170617389498894:0724:146 19 | 20 | 21 | This will soon be turned into an All In One Reformatter soon 22 | 23 | 24 | All you need to do is paste your 25 | "Online Payment Card Details: 26 | Card value: 1.00 EGP 27 | Card number: 5170617389498894 28 | Exp Date: 07/24 29 | CVC: 146 30 | Ref number: 329522491" 31 | formatted vcc in input.txt 32 | 33 | then open main.py 34 | and it will reformat it and save the new formatted one into output.txt 35 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import os 2 | import time 3 | import fade 4 | import colorama 5 | from dataclasses import replace 6 | from colorama import init, Fore 7 | from dataclasses import replace 8 | 9 | init(autoreset=True) 10 | 11 | os.system('mode con: cols=142 lines=25') 12 | 13 | # DO NOT REBRAND THIS AND DO NOT SELL IT 14 | # THIS IS A FREE REFORMATTER MADE AND PROVIDED BY HAUNT / LUNACY / FASTBOOSTS 15 | # IF YOU GOT SOLD THIS YOU GOT SCAMMED 16 | 17 | 18 | 19 | colorama.deinit() 20 | os.system("title Haunt Reformatter | Fastboosts.com") 21 | os.system('cls' if os.name == 'nt' else 'clear') 22 | 23 | print(fade.purpleblue(""" 24 | ██╗ ██╗ █████╗ ██╗ ██╗███╗ ██╗████████╗ ██████╗ ███████╗███████╗ ██████╗ ██████╗ ███╗ ███╗ █████╗ ████████╗████████╗███████╗██████╗ 25 | ██║ ██║██╔══██╗██║ ██║████╗ ██║╚══██╔══╝ ██╔══██╗██╔════╝██╔════╝██╔═══██╗██╔══██╗████╗ ████║██╔══██╗╚══██╔══╝╚══██╔══╝██╔════╝██╔══██╗ 26 | ███████║███████║██║ ██║██╔██╗ ██║ ██║ ██████╔╝█████╗ █████╗ ██║ ██║██████╔╝██╔████╔██║███████║ ██║ ██║ █████╗ ██████╔╝ 27 | ██╔══██║██╔══██║██║ ██║██║╚██╗██║ ██║ ██╔══██╗██╔══╝ ██╔══╝ ██║ ██║██╔══██╗██║╚██╔╝██║██╔══██║ ██║ ██║ ██╔══╝ ██╔══██╗ 28 | ██║ ██║██║ ██║╚██████╔╝██║ ╚████║ ██║ ██║ ██║███████╗██║ ╚██████╔╝██║ ██║██║ ╚═╝ ██║██║ ██║ ██║ ██║ ███████╗██║ ██║ 29 | ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝ 30 | 31 | """)) 32 | colorama.init(autoreset=True) 33 | time.sleep(2) 34 | 35 | with open("input.txt", "r", encoding="utf-8") as f: 36 | input = f.readlines() 37 | 38 | colorama.deinit() 39 | print(fade.purpleblue("Reformatting...")) 40 | time.sleep(1) 41 | colorama.init(autoreset=True) 42 | 43 | for i in input: 44 | i.replace("\n", "") 45 | if(i.find("URL:") != -1): 46 | input.remove(i) 47 | if(i.find("Online Payment Card Details: ") != -1): 48 | input.remove(i) 49 | if(i.find("Card value: 1.00 EGP ") != -1): 50 | input.remove(i) 51 | 52 | haunt = "" 53 | 54 | for i in input: 55 | if(i.find("Card number: ") != -1): 56 | haunt = haunt + i.replace("Card number: ", "").replace("\n", "") 57 | if(i.find("Exp Date: ") != -1): 58 | haunt = haunt + ":" + i.replace("Exp Date: ", "").replace("\n", "") 59 | if(i.find("CVC: ") != -1): 60 | haunt = haunt + ":" + i.replace("CVC: ", "") 61 | 62 | haunt = haunt.replace(" ", "").replace("/", "") 63 | with open("output.txt", "w", encoding="utf-8") as f: 64 | f.write(haunt) 65 | f.close 66 | 67 | print("Finished, Reformatted info saved to output.txt") 68 | print("Exiting...") 69 | time.sleep(1) 70 | os._exit(1) --------------------------------------------------------------------------------