├── photo_visa.jpg
├── README.md
├── visa_cvv.py
└── visa_cvv_tele.py
/photo_visa.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oo1o/visa-cvv/HEAD/photo_visa.jpg
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # visa-cvv
2 | 1-Visa cvv tool to get promotional visas and send them via Telegram.
3 |
4 | 
5 |
6 |
7 | 2-And the second copy will show the visa in front of you
8 |
--------------------------------------------------------------------------------
/visa_cvv.py:
--------------------------------------------------------------------------------
1 | import requests
2 |
3 | A = '\033[1;10m'
4 | B = '\033[1;36m'
5 | C ='\033[1;30m'
6 | D =('='*40)
7 | print(f"""{A}{D}
8 | <>---<>---<>---<>---<>---<>---<>---<>---<>
9 | [*]Get VISA Cvv[*]
10 | <>---<>---<>---<>---<>---<>---<>---<>---<>
11 | >> Naplon ◕_◕ <<
12 | _ _ _
13 | | \ | | | |
14 | | \| | __ _ _ __ | | ___ _ __
15 | | . ` |/ _` | '_ \| |/ _ \| '_ \
16 | | |\ | (_| | |_) | | (_) | | | |{B}
17 | |_| \_|\__,_| .__/|_|\___/|_| |_|
18 | | | instagram: 3h6h
19 | |_| Telegram: naplon0
20 | snapchat: ii42
21 | <>---<>---<>---<>---<>---<>---<>---<>
22 | {D}""")
23 |
24 | def Nap():
25 |
26 | nap = requests.Session()
27 |
28 | url = "https://www.colorschemer.com/fetchdata/generate-home-credit-card/"
29 |
30 | headers = {
31 | "Host": "www.colorschemer.com",
32 | "User-Agent": "Mozilla/5.0 (X11; Linux i686; rv:78.0) Gecko/20100101 Firefox/78.0",
33 | "Accept": "*/*",
34 | "Accept-Language": "en-US,en;q=0.5",
35 | "Referer": "https://www.colorschemer.com/credit-card-generator/",
36 | "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
37 | "X-Requested-With": "XMLHttpRequest",
38 | "Content-Length": "98",
39 | "Origin": "https://www.colorschemer.com",
40 | "DNT": "1",
41 | "Connection": "keep-alive",
42 | "Cookie": "__cfduid=dc0c9026439474694eeab705e7e633e8d1616410321; csrftoken=czvtORBrer3uv45UuVbKfDbESjgFQqk8xi9obC59foTQPO9mqlWBUirb2mY6jSOx; cookieconsent_status=dismiss"}
43 | data = 'brand=VISA&country=UNITED+STATES&bank=1880+BANK&cvv=&year=random&range=500+-+1000&amount=20&pin=on'
44 |
45 | n = nap.post(url, headers=headers, data=data)
46 | aa = 0
47 | p = 0
48 |
49 | while True:
50 | p+=1
51 |
52 | try:
53 | card_number = int(n.json()["creditCard"][aa]["CardNumber"])
54 |
55 | Bank = str(n.json()["creditCard"][aa]["Bank"])
56 |
57 | name = str(n.json()["creditCard"][aa]["Name"])
58 |
59 | Address = str(n.json()["creditCard"][aa]["Address"])
60 |
61 | CVV = int(n.json()["creditCard"][aa]["CVV"])
62 |
63 | Data_Time = str(n.json()["creditCard"][aa]["Expiry"])
64 |
65 | print(f"\r{A}{p}", end=f"{B}" '-')
66 |
67 | print(' name: ',name ,'card_number:',card_number ,'CVV: ',CVV ,'Data_Tim: ',Data_Time ,'Address: ',Address ,'Bank: ',Bank)
68 | aa +=1
69 |
70 | except:
71 | print('')
72 | print(B+'')
73 | break
74 | Nap()
75 |
--------------------------------------------------------------------------------
/visa_cvv_tele.py:
--------------------------------------------------------------------------------
1 | import requests
2 |
3 | A = '\033[1;10m'
4 | B = '\033[1;36m'
5 | C ='\033[1;30m'
6 | D =('='*40)
7 | print(f"""{A}{D}
8 | <>---<>---<>---<>---<>---<>---<>---<>---<>
9 | [*]Get VISA Cvv And send it to Telegram[*]
10 | <>---<>---<>---<>---<>---<>---<>---<>---<>
11 | >> Naplon ◕_◕ <<
12 | _ _ _
13 | | \ | | | |
14 | | \| | __ _ _ __ | | ___ _ __
15 | | . ` |/ _` | '_ \| |/ _ \| '_ \
16 | | |\ | (_| | |_) | | (_) | | | |{B}
17 | |_| \_|\__,_| .__/|_|\___/|_| |_|
18 | | | instagram: 3h6h
19 | |_| Telegram: naplon0
20 | snapchat: ii42
21 | <>---<>---<>---<>---<>---<>---<>---<>
22 | {D}""")
23 |
24 |
25 | IpToken = input("Enter the TOKEN: ")
26 | Id = input("Enter the ID: ")
27 | naplon = "by >> Tele @naplon0"
28 |
29 | def Nap():
30 |
31 | nap = requests.Session()
32 |
33 | url = "https://www.colorschemer.com/fetchdata/generate-home-credit-card/"
34 |
35 | headers = {
36 | "Host": "www.colorschemer.com",
37 | "User-Agent": "Mozilla/5.0 (X11; Linux i686; rv:78.0) Gecko/20100101 Firefox/78.0",
38 | "Accept": "*/*",
39 | "Accept-Language": "en-US,en;q=0.5",
40 | "Referer": "https://www.colorschemer.com/credit-card-generator/",
41 | "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
42 | "X-Requested-With": "XMLHttpRequest",
43 | "Content-Length": "98",
44 | "Origin": "https://www.colorschemer.com",
45 | "DNT": "1",
46 | "Connection": "keep-alive",
47 | "Cookie": "__cfduid=dc0c9026439474694eeab705e7e633e8d1616410321; csrftoken=czvtORBrer3uv45UuVbKfDbESjgFQqk8xi9obC59foTQPO9mqlWBUirb2mY6jSOx; cookieconsent_status=dismiss"}
48 | data = 'brand=VISA&country=UNITED+STATES&bank=1880+BANK&cvv=&year=random&range=500+-+1000&amount=20&pin=on'
49 |
50 | n = nap.post(url, headers=headers, data=data)
51 | aa = 0
52 | p = 0
53 |
54 | while True:
55 | p+=1
56 |
57 | try:
58 | card_number = int(n.json()["creditCard"][aa]["CardNumber"])
59 |
60 | Bank = str(n.json()["creditCard"][aa]["Bank"])
61 |
62 | name = str(n.json()["creditCard"][aa]["Name"])
63 |
64 | Address = str(n.json()["creditCard"][aa]["Address"])
65 |
66 | CVV = int(n.json()["creditCard"][aa]["CVV"])
67 |
68 | Data_Time = str(n.json()["creditCard"][aa]["Expiry"])
69 |
70 | print(f"\r{A}{p}", end=f"{B}--Good")
71 |
72 | tale = (f'https://api.telegram.org/bot{IpToken}/sendMessage?chat_id={Id}&text=\n━━━━━━━━━━━━\n {name}|{card_number}|{CVV}|{Data_Time}|{Bank}|{Address} \n━━━━━━━━━━━━\n {naplon} ')
73 | req = requests.post(tale)
74 | aa +=1
75 |
76 | except:
77 | print('')
78 | print(B+'')
79 | break
80 | Nap()
81 |
--------------------------------------------------------------------------------