├── .gitignore ├── LICENSE ├── README.md ├── config.ini └── zack.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 m4rktn 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ℤ𝕖𝕣👁𝔼𝕪𝕖 2 | ---- 3 | ``` 4 | Key Generator or more ? 5 | ``` 6 | *Hello Walkers* 7 | ---- 8 | ```python 9 | from world import m4rktn 10 | 11 | if m4rktn.freinds()=='here': 12 | m4rktn.newtool() 13 | else: 14 | sad=m4rktn.status() 15 | contactme:" https://linktr.ee/m4rktn " 16 | version='2.0' 17 | forwho='i made it for my old walkers' 18 | futur_work=True 19 | why='yah , i think so but soemthing different' 20 | wanna_music="https://www.youtube.com/watch?v=H4-5PFdr0GQ" # Subscibe To PsycoM 21 | ``` 22 | *Need* 23 | ---- 24 | ```bash 25 | Python3 (3.9 : last version) 26 | Git (linux/android) 27 | ``` 28 | *How to install Python* 29 | ---- 30 | ``` 31 | Windows : https://python.org/downloads 32 | Linux : No need (deja installed) 33 | Android(Termux): apt install python / pkg install python 34 | ``` 35 | *Using* 36 | ---- 37 | ```bash 38 | #linux/android 39 | pip install colorama 40 | git clone https://github.com/m4rktn/zeroeye 41 | cd zeroeye #if not "zeroeye-master" 42 | python zack.py 43 | 44 | #windows 45 | just download this project > extract it 46 | open zeroeye-master 47 | open cmd (see how to use python on Windows) 48 | python zack.py 49 | ``` 50 | -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | #Free Keys by @0xtn 2 | Steam::+#####-#####-##### 3 | Express::+E###################### 4 | Hidemyass::+######-######-###### 5 | Tn Mobile Sold::!!!!!!!!!!!!!! 6 | G2A::+####-####-#### 7 | Google Play::+####-####-####-#### 8 | AVG Antivirus::+8MEH-R####-#####-#####-##MBR-ACED 9 | Eset Smart Security::+#####-#####-#####-#####-##### 10 | Norton Antivirus::+####################### 11 | PhotoShop Cs6::+1330-#####-#####-#####-##### 12 | Windows::+#####-#####-#####-#####-##### 13 | Amazon::+####-######-##### 14 | Netflix::+????!!!!!! 15 | FacebookAds::+###-####-####-########-####-####-#### 16 | Uplay::+###-####-####-#### -------------------------------------------------------------------------------- /zack.py: -------------------------------------------------------------------------------- 1 | #------------# 2 | #!/usr/bin/python 3 | # encoding: utf-8 4 | #------------# 5 | """ 6 | ᴏʟᴅᴠᴇʀꜱɪᴏɴ ꜰʀᴏᴍ 2018 ᴀɴᴅ ᴛʜɪꜱ ᴜᴘᴅᴀᴛᴇ ꜰʀᴏᴍ 2019 ᴀɴᴅ ʀᴇʟᴇᴀꜱᴇ ᴏɴ ɴᴏᴠ 2020 (ɴɪᴄᴇ) 7 | ᴄʜᴇᴄᴋ ᴍʏ ʟɪɴᴋꜱ : 8 | ᴡʜᴀᴛꜱ ɴᴇᴡ ? 9 | +ɴᴇᴡ ᴀʟɢᴏʀɪᴛʜᴍᴇꜱ 10 | +ᴇᴀꜱʏ ᴛᴏ ᴍᴀᴋᴇ ᴀɴʏ ɢᴇɴᴇʀᴀᴛᴏʀ 11 | +ɢᴇɴᴇʀᴀᴛᴇ ᴀɴʏᴛʜɪɴɢ 12 | +ᴠᴀʟɪᴅ ꜰᴏʀᴍᴀᴛꜱ 13 | +ᴋᴇʏ ɪᴅᴇɴᴛɪꜰʏ+ɢʀᴀʙʙᴇʀ 14 | __ __ _ ____ _____ _ _ 15 | | \ / | / | | _ \ (_ _) \ | | 16 | | v |/ o |_| |_) ) _| | | \| | 17 | | |\_/| /__ _) __/ |/ / | | | 18 | | | | | | | | | | <| | | |\ | 19 | |_| |_| |_| |_| |_|\_\_| |_| \_| -2020 20 | 21 | """ 22 | #------------# 23 | import random,string,platform,webbrowser,re,os,time,getpass,sys,os.path 24 | from random import * 25 | import colorama # if u face a problem here type "pip install colorama" 26 | from colorama import * 27 | #------------# 28 | configs=[] 29 | keyz=[] 30 | xnumx=0 31 | #------------# 32 | init() 33 | la7mar = '\033[91m' 34 | lazra9 = '\033[94m' 35 | la5dhar = '\033[92m' 36 | movv = '\033[95m' 37 | lasfar = '\033[93m' 38 | ramadi = '\033[90m' 39 | blid = '\033[1m' 40 | star = '\033[4m' 41 | starend = '\033[24m' 42 | bigas = '\033[07m' 43 | bigbbs = '\033[27m' 44 | hell = '\033[05m' 45 | saker = '\033[25m' 46 | labyadh = '\033[00m' 47 | cyan = '\033[0;96m' 48 | print(blid) 49 | #------------# 50 | def clear(): 51 | if os.name=='nt': 52 | os.system('cls && title [NEW] ZER0EYE - FULL KEY GENERAT0R BY M4rktn ') 53 | else : 54 | os.system('clear') 55 | #------------# 56 | def strounga(x,y): 57 | omri=la7mar+"["+lasfar+str(x)+la7mar+"] "+lasfar+y 58 | return omri 59 | #------------# 60 | logo=choice(["""{w} 61 | ^ . . ^ 62 | \ \ V / / 63 | \ \(+ +)/ / {r}({y}Instagram{r}){rr}~~~~~~~~~{r}({y}@cyber.tn{r}){w} 64 | \ ( v ) / {r}({y}Telegram{r}){rr}~~~~~~~~~~{r}({y}@m4rktn{r}){w} 65 | \____m_m____/ {r}({y}linktr.ee{r}/{y}m4rktn{r}){rr}~~{r}({y}2020{r}){w} 66 | <[___________]> 67 | 68 | """.format(r=la7mar,y=lasfar,rr=ramadi,w=labyadh), 69 | """ {y} 70 | d88888P d8888b 88bd88b d8888b d8888b?88 d8P d8888b 71 | d8P' d8b_,dP 88P' `d8P' ?88d8b_,dPd88 88 d8b_,dP 72 | d8P' 88b d88 88b d8888b ?8( d88 88b 73 | d88888P'`?888P'd88' `?8888P'`?888P'`?88P'?8b `?888P' 74 | )88 75 | ,d8P 76 | `?888P' 77 | {rr}*{r} Instagam {rr}:{y}@cyber.tn 78 | {rr}*{r} Telegram {rr}:{y}@z4cktn 79 | {rr}*{r} All My Links {rr}:{y}linktr.ee{rr}/{y}m4rktn 80 | {rr}*{r} Last Update {rr}:{y}Nov{rr}/{y}2020 81 | 82 | 83 | """.format(r=la7mar,y=lasfar,rr=ramadi,w=labyadh), 84 | """ {y} 85 | /$$$$$$ 86 | /$$$_ $$ 87 | | $$$$\ $$ /$$$$$$ /$$ /$$ /$$$$$$ 88 | | $$ $$ $$ /$$__ $$| $$ | $$ /$$__ $$ 89 | | $$\ $$$$| $$$$$$$$| $$ | $$| $$$$$$$$ 90 | | $$ \ $$$| $$_____/| $$ | $$| $$_____/ 91 | | $$$$$$/| $$$$$$$| $$$$$$$| $$$$$$$ 92 | \______/ \_______/ \____ $$ \_______/ 93 | /$$ | $$ 94 | | $$$$$$/ 95 | \______/ 96 | 97 | {rr}\\_{r}Instagam{rr}>{y}@cyber.tn 98 | {rr}\\_{r}Telegram{rr}>{y}@z4cktn 99 | {rr}\\_{r}All-My-Links{rr}>{y}linktr.ee{rr}/{y}m4rktn 100 | {rr}\\_{r}Last-Update{rr}:{y}Nov{rr}/{y}2020 101 | 102 | 103 | """.format(r=la7mar,y=lasfar,rr=ramadi,w=labyadh) 104 | 105 | ]) 106 | #------------# 107 | #Bank Names# 108 | AmExlis=['AmEx','AmEx Small CorporateCard1','AmEx Small CorporateCard2'] 109 | DinersClublis=['DinersClub 1','DinersClub 2','DinersClub 3','DinersClub 4'] 110 | CarteBlanchelis=['CarteBlanche'] 111 | JCBlis=['JCB(JapaneseCreditBureau)'] 112 | Visalis=['Visa','Debit Banca MonteDeiPaschiDiSiena(Italy)','Banca MonteDeiPaschiDiSiena(Italy)','Gold Bank of America','CV/Gold Bank of America','PV Bank of America','CV Wells Fargo','CV','Wells Fargo','Citibank','Bank of America','ElectronPrepaidPosteItaliane(Italy)','Bank of America2','Rockwell Federal CreditUnion','House hold Bank','First Cincinnati','Associates National Bank','Security Pacific','Colonial NationalBank','A.M.C.Federal Credit Union','Valley National Bank','Chemical Bank','Pennsylvania State Employees Credit Union','CV Signet Bank','Union Trust','Marine Midland','CV Citibank','CVCitibank','StateStreetBank','Chase Manhattan Bank','Chase Manhattan Bank','Chase Lincoln FirstC lassic','Chase Lincoln First Classic','Corestates','National Westminster Bank','First Chicago Bank','Consumers Edge','Premiercard Security First','Security First','PV Citibank','Citibank/Citicorp','MonogramBank','H.H.B.C.','First National Bank of Louisville','Gold Dome','First Atlanta','First American Bank','Primerica Bank','N.C.M.B./NationsBank','National Bank of Delaware','National West','BankOne','First Signature Bank & Trust','Gary Wheaton Bank','Firstier Bank Lincoln','Bank of Omaha','Indiana National Bank','Security Pacific National Bank','Bank of Hoven','Security Bank & Trust','MerrilLynch Bank & Trust','Ameri Trust','Premiercard','Empire Affiliates Federal Credit Union','Republic Savings','C.I.B.C.','Canadian Imperial Bank','Belgium A.S.L.K.','Royal Bank of Canada','Toronto Dominion of Canada','Bank of NovaScotia','Bank of NovaScotia2','Barclays(UK)','First Direct','T.S.B.Bank','Citibank','Bank of Queensland','FirstCard','Home Federal','Tompkins County Trust','IBM Credit Union','Rocky Mountain','First Security','WestBank','CV WellsFargo','AT&Ts UniversalCard','AT&Ts UniversalCard','M.B.N.A.North America','Bank of Hawaii','Macom Federal Credit Union','IBM MidAmerica Federal Credit Union','U.S.Bank','Security Pacific Washington','Village Bank of Chicago','HongKong NationalBank','CV BarclayCard(UK)','BancodiNapoli(Italy)','BNL(Italy)','Carta Moneta CARIPLO/Intesa(Italy)','Credito Italiano(Italy)','Gold bank ganaderoBBV(Colombia)','MBNABank'] 113 | MasterCardlis=['MasterCard','Maryland of NorthAmerica','South western States Bank ard Association','Universal Travel Voucher','Western States Bank ard Association','Eurocard France','Mountain States Bank ard Association','Credit Systems Inc.','Westpac Banking Corporation','Midamerica Bank ard Association','First Bank Card Center','ComputerCommunications of America','Bank of Montreal','Mellon Bank N.A.','CentralTrustCompany N.A.','Security Pacific National Bank','Promociony Operacion S.A.','Banco Nacionaldo Mexico','NewEngland Bank ard Association','Million Card Service Co.Ltd.','The Citizens & Southern National Bank','Kokunai Shinpan CompanyLtd.','Chemical BankDelaware','F.C.C.National Bank','The Bank card Association Inc.','Marine Midland Bank N.A.','Old Kent Bank & Trust Co.','Union Trust','Citibank / Citicorp','Central Finance Co.Ltd.','SovranBank / CentralSouth','Standard Bank of SouthAfrica Ltd.','Security Bank & TrustCompany','Trust escnoor National Bank','Midland Bank','First Pennsylvania BankN.A.','Eurocard Ab','Rocky Mountain Bankcard System Inc.','FirstUnionNationalBankofNorthCarolina','Sunwest Bank of Albuquerque N.A.','Harris Trust & Savings Bank','Badische Beamten bank EG','Eurocard Deutschland','Computer Systems Association Inc.','Citibank Arizona','Financial Transaction System Inc.','First Tennessee Bank N.A.','Bank of America','MasterCard (canbeGold) - Bank of America','Home Federal','Signet Bank','Maryland of NorthAmerica','MasterCard Prepaid - PayPal / Lottomaticard (Italy)','Wells Fargo','Wells Fargo','Bank of Hoven','Citibank / Citicorp II','BNL / BNPParibas(Italy)','National Westminster Bank','Chase Manhattan','Bancodi Sardegna (Italy)','Bancolombia Cadenalco (Colombia)','BancodeOccidente (Colombia)','Granahorrar(Colombia)','Granahorrar(Colombia)'] 114 | Maestrolis=['BNL/BNPParibas (Italy)'] 115 | Discoverlis=['Discover','MBNABank'] 116 | #Bins# 117 | Amexbinz=['37','3782','3787'] 118 | DinersClubbinz=['30','31','35','36','38'] 119 | CarteBlanchebinz=['35'] 120 | JCBbinz=['35'] 121 | Visabinz=['4', '400314', '400315', '40240238', '4019', '4024', '4040', '4048', '40240071', '4013', '4019', '402360', '4024', '4027', '4032', '4052', '4060', '4070', '4071', '4094', '4113', '4114', '4121', '4121', '4122', '4125', '4128', '4131', '4225', '4226', '4231', '4232', '4239', '4241', '4250', '4253', '42545123', '4254', '4271382', '4271', '4301', '4302', '4311', '4317', '4327', '4332', '4339', '4342', '4356', '4368', '4387', '4388', '4401', '4413', '4418', '4421', '4424', '4428', '4436', '4443', '4447', '4448020', '4452', '4498', '4502', '4503', '4506', '4510', '4520', '4537', '4538', '4539', '4543', '4544', '4556', '4564', '4673', '4678', '4707', '47121250', '4719', '4721', '4722', '4726', '4783', '4784', '4800', '4811', '4819', '4820', '4833', '4842', '4897', '4921', '4929', '45399710', '4557', '4908', '4532', '45475900', '4916'] 122 | MasterCardbinz=['5','5031', '5100', '5110', '5120', '5130', '5140', '5150', '5160', '5170', '5172', '518', '519', '5201', '5202', '5204', '5205', '5206', '5207', '5208', '5209', '5210', '5211', '5212', '5213', '5215', '5216', '5217', '5218', '5219', '5220', '5221', '5222', '5223', '5224', '5225', '5226', '5227', '5228', '5229', '5230', '5231', '5232', '5233', '5234', '5235', '5236', '5254', '5273', '5286', '5291', '5329', '533875', '5410', '5412', '5419', '5424', '543013', '5434', '5465', '52550114', '530693', '5406251', '5426', '5406'] 123 | Maestrobinz=['581149'] 124 | Discoverbinz=['60','6013'] 125 | #------------# 126 | #CC Generator v1 by m4rk 127 | class ccSama(object): 128 | def __init__(self): 129 | global aaa 130 | clear() 131 | self.logon() 132 | carder=input("%s%sD0ll4r%s%s$%s %s"%(ramadi,star,hell,starend,saker,lazra9)) 133 | if carder in ['01','1']: 134 | Sa7by=input(" %s[%s$%s] Enter Bin [exemple:491628] %s"%(la7mar,lasfar,la7mar,lazra9));aaa='99' 135 | while Sa7by.isdigit()!=1 or len(str(Sa7by))==0: 136 | Sa7by=input(" %s[%s$%s] Enter Bin [exemple:491628] %s"%(la7mar,lasfar,la7mar,lazra9)) 137 | self.gen1(Sa7by) 138 | elif carder in ['02','2']: 139 | self.gen2() 140 | elif carder =='69': 141 | z4ck() 142 | def sss(self ,lis,binlis): 143 | global aaa 144 | for x,y in enumerate(lis): 145 | print("%s[%s] %s%s"%(la7mar,x+1,lasfar,y)) 146 | aaa=int(input("%s%sD0ll4r%s%s$%s %s"%(ramadi,star,hell,starend,saker,lazra9))) 147 | plasty=binlis[int(float(aaa-1))] 148 | self.gen1(plasty); 149 | 150 | def gen2(self): 151 | print("""{y} 152 | $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ 153 | $$ {r}({b}01{r}){y} American Express $$ 154 | $$ {r}({b}02{r}){y} Diners Club $$ 155 | $$ {r}({b}03{r}){y} Visa $$ 156 | $$ {r}({b}04{r}){y} MasterCard $$ 157 | $$ {r}({b}05{r}){y} Discover $$ 158 | $$ {r}({b}06{r}){y} Maestro $$ 159 | $$ {r}({b}07{r}){y} CarteBlanche $$ 160 | $$ {r}({b}08{r}){y} Japanese Credit Bureau $$ 161 | $$ {r}({b}69{r}){y} Back $$ 162 | $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ 163 | """.format(y=lasfar,r=la7mar,b=lazra9)) 164 | card777=input("%s%sD0ll4r%s%s$%s %s"%(ramadi,star,hell,starend,saker,lazra9)) 165 | if card777 in['01','1']: 166 | self.sss(AmExlis,Amexbinz) 167 | elif card777 in['02','2']: 168 | self.sss(DinersClublis,DinersClubbinz) 169 | elif card777 in['03','3']: 170 | self.sss(Visalis,Visabinz) 171 | elif card777 in['04','4']: 172 | self.sss(MasterCardlis,MasterCardbinz) 173 | elif card777 in['05','5']: 174 | self.sss(Discoverlis,Discoverbinz) 175 | elif card777 in['06','6']: 176 | self.sss(Maestrolis,Maestrobinz) 177 | elif card777 in['07','7']: 178 | self.sss(CarteBlanchelis,CarteBlanchebinz) 179 | elif card777 in['08','8']: 180 | self.sss(JCBlis,JCBbinz) 181 | elif card777 =='69': 182 | ccSama() 183 | def logon(self): 184 | print("""%s%s 185 | $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ 186 | $$ %sccSama - CreditCard Generator%s $$ 187 | $$ £ %sI Feel Like milionair%s £ $$ 188 | $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ 189 | $$ %s[01]%s Generate With Single Bin %s$$ 190 | $$ %s[02]%s Search & Gen Bin From DB %s$$ 191 | $$ %s[69]%s Back %s$$ 192 | $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$"""%(blid,lasfar,lazra9,lasfar,lazra9,lasfar,la7mar,lazra9,lasfar,la7mar,lazra9,lasfar,la7mar,lazra9,lasfar)) 193 | def gen1(self ,Sa7by):#Sa7by Kol Chy Wadha7 W jawna Bahy Brcha xDD... 194 | if Sa7by !=0: 195 | #Some Tries 196 | if aaa in ['02','2','07','7']: 197 | sensei=12-len(str(Sa7by)) 198 | elif aaa in ['01','1']: 199 | sensei=13-len(str(Sa7by)) 200 | else: 201 | sensei=16-len(str(Sa7by)) 202 | binn3r=Sa7by+'x'*sensei 203 | if aaa!='99': 204 | print(" %s[%s$%s] Bin %s : %s"%(la7mar,lasfar,la7mar,lazra9,binn3r)) 205 | yearb=input(" %s[%s$%s] Enter Year [RND:Press Enter] %s"%(la7mar,lasfar,la7mar,lazra9)) 206 | if len(str(yearb))!=0: 207 | while yearb.isdigit()!=1 or int(yearb) not in range(2018,2025): 208 | yearb=input(" %s[%s$%s] Enter Year [RND:Press Enter] %s"%(la7mar,lasfar,la7mar,lazra9)) 209 | mounthb=input(" %s[%s$%s] Enter Month [RND:Press Enter] %s"%(la7mar,lasfar,la7mar,lazra9)) 210 | if len(str(mounthb))!=0: 211 | while int(mounthb) not in range(1,31): 212 | mounthb=input(" %s[%s$%s] Enter Month [RND:Press Enter] %s"%(la7mar,lasfar,la7mar,lazra9)) 213 | cvvb=input(" %s[%s$%s] Enter CVV [RND:Press Enter] %s"%(la7mar,lasfar,la7mar,lazra9)) 214 | if len(str(cvvb))!=0: 215 | while cvvb.isdigit()!=1 or len(str(cvvb))!=3: 216 | cvvb=input(" %s[%s$%s] Enter CVV [RND:Press Enter] %s"%(la7mar,lasfar,la7mar,lazra9)) 217 | mouchi=int(input(" %s[%s$%s] How Much ?? %s"%(la7mar,lasfar,la7mar,lazra9))) 218 | print("%s+%s--------------------------%s+"%(lazra9,la7mar,lazra9)) 219 | with open('zeroeye-results/ccgenerated.txt','a') as escnoor: 220 | escnoor.write('\n~~ Bin:%s | %s cc ~~ (By ESCAN0R) \n'%(binn3r,mouchi)) 221 | for ii in range(mouchi): 222 | senpaion = string.digits 223 | senpai= ''.join(choice(senpaion) for _ in range(sensei)) 224 | yearbn1 = yearb 225 | mounthbn1 = mounthb 226 | cvvbn1 = cvvb 227 | if len(str(mounthb))==0: 228 | mounthbn = randrange(1,31,1) 229 | mounthbn1 = mounthbn 230 | if int(mounthbn1) <= 9: 231 | mounthbn1 = str('0'+str(mounthbn1)) 232 | if len(str(yearb))==0: 233 | yearbn = randrange(2020,2030,1) 234 | yearbn1 = yearbn 235 | if len(str(cvvb))==0: 236 | cvvbn = ''.join(choice(string.digits) for _ in range(3)) 237 | cvvbn1 = cvvbn 238 | sama = ("%s%s|%s|%s|%s"%(Sa7by,senpai,yearbn1,mounthbn1,cvvbn1)) 239 | print(la7mar+sama) 240 | with open('zeroeye-results/ccgenerated.txt','a') as escnoor: 241 | escnoor.write(sama+'\n') 242 | print("%s+%s--------------------------%s+"%(la7mar,lasfar,la7mar)) 243 | print(" %s[%s%s Saved In 'zeroeye-results/ccgenerated.txt'%s]%s"%(la7mar,lasfar,mouchi,la7mar,labyadh)) 244 | so=input("%sContinue %s? %s[%sY%s/%sN%s(%syes%s/%sNo%s)] %s>%s "%(lasfar,ramadi,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,ramadi,labyadh)) 245 | if so.upper() in ['Y','YES','AY']: 246 | z4ck() 247 | else: 248 | exit() 249 | #------------# 250 | #proxy 251 | class ghrab(object): 252 | def __init__(self): 253 | clear() 254 | StartIP = input('%s[%s+%s] Start IP: %s'%(la7mar,lasfar,la7mar,labyadh)) 255 | while not re.match('[0-9]{0,3}\d.[0-9]{0,3}\d.[0-9]{0,3}\d.[0-9]{0,3}\d',StartIP): 256 | StartIP = input('%s[%s+%s] Start IP: %s'%(la7mar,lasfar,la7mar,labyadh)) 257 | ENDIP = input('%s[%s+%s] End IP: %s'%(la7mar,lasfar,la7mar,labyadh)) 258 | while not re.match('[0-9]{0,3}\d.[0-9]{0,3}\d.[0-9]{0,3}\d.[0-9]{0,3}\d',ENDIP): 259 | ENDIP = input('%s[%s+%s] End IP: %s'%(la7mar,lasfar,la7mar,labyadh)) 260 | PRoxYPort = input('%s[%s+%s] Enter Proxy port [8080,80]: %s'%(la7mar,lasfar,la7mar,labyadh)) 261 | while not re.match('[0-9]{1,5}\d',PRoxYPort): 262 | PRoxYPort = input('%s[%s+%s] Enter Proxy port [8080,80]: %s'%(la7mar,lasfar,la7mar,labyadh)) 263 | ip_range = self.Generate_IP(StartIP, ENDIP) 264 | xXx=0 265 | for ip in ip_range: 266 | xXx=xXx+1 267 | with open('zeroeye-results/Ipgenerated.txt', 'a') as xX: 268 | xX.write(str(ip) + ':' + str(PRoxYPort) + '\n') 269 | print("%s[%s%s Ip Saved In 'zeroeye-results/Ipgenerated.txt'%s]%s"%(la7mar,lasfar,xXx,la7mar,labyadh)) 270 | so=input("%sContinue %s? %s[%sY%s/%sN%s(%syes%s/%sNo%s)] %s>%s "%(lasfar,ramadi,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,ramadi,labyadh)) 271 | if so.upper() in ['Y','YES','AY']: 272 | z4ck() 273 | else: 274 | exit() 275 | def Generate_IP(self, start_ip, end_ip): 276 | Start = list(map(int, start_ip.split("."))) 277 | end = list(map(int, end_ip.split("."))) 278 | rec = Start 279 | ip_range = [] 280 | ip_range.append(start_ip) 281 | while rec != end: 282 | Start[3] += 1 283 | for i in (3, 2, 1): 284 | if rec[i] == 256: 285 | rec[i] = 0 286 | rec[i - 1] += 1 287 | ip_range.append(".".join(map(str, rec))) 288 | return ip_range 289 | #------------# 290 | class z4ck(object): 291 | global configs,xnumx 292 | def __init__(self): 293 | clear() 294 | print(logo) 295 | LLL=0 296 | for y,fz in enumerate(configs): 297 | print(strounga(str(y+1),fz['name'])) 298 | print(strounga(xnumx+1,'CreditCard')) 299 | print(strounga(xnumx+2,'Phone Numbers')) 300 | print(strounga(xnumx+3,'Proxy')) 301 | print(strounga(xnumx+4,'Facebook AcessToken')) 302 | print(strounga(xnumx+5,'Create your own generator')) 303 | print(strounga(xnumx+6,'Delete a config')) 304 | print(strounga(xnumx+7,'About')) 305 | baka=input('\033[91m[\033[93mm4rktn>\033[91m]\033[00m ') 306 | while baka=='': 307 | baka=input('\033[91m[\033[93mm4rktn>\033[91m]\033[00m ') 308 | baka=int(baka) 309 | while baka <1 or baka >(xnumx+7): 310 | baka=int(input('\033[91m[\033[93mm4rktn>\033[91m]\033[00m ')) 311 | if baka<=xnumx: 312 | ma=int(input('\033[91m[\033[93mHow Much\033[91m]\033[00m ')) 313 | while ma <1: 314 | ma=int(input('\033[91m[\033[93mHow Much\033[91m]\033[00m ')) 315 | for i in range(ma): 316 | conf=configs[baka-1] 317 | print(str(self.x1x(conf['format']))) 318 | with open('zeroeye-results/%s.txt'%(conf['name']),'a') as L: 319 | L.write('%s\n'%(self.x1x(conf['format']))) 320 | print(" %s[%s%s Key Saved In 'zeroeye-results/%s.txt' %s]%s"%(la7mar,lasfar,ma,conf['name'],la7mar,labyadh)) 321 | so=input("%sContinue %s? %s[%sY%s/%sN%s(%syes%s/%sNo%s)] %s>%s "%(lasfar,ramadi,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,ramadi,labyadh)) 322 | if so.upper() in ['Y','YES','AY']: 323 | z4ck() 324 | else: 325 | exit() 326 | elif baka==xnumx+1: 327 | ccSama() 328 | elif baka==xnumx+2: 329 | self.phnnm() 330 | elif baka==xnumx+3: 331 | ghrab() 332 | elif baka==xnumx+4: 333 | self.genetok() 334 | elif baka==xnumx+5: 335 | self.creat0r() 336 | elif baka==xnumx+6: 337 | self.delmyconf() 338 | elif baka==xnumx+7: 339 | self.seemydick() 340 | 341 | # ! = number | ? = string | # = Random(string/int) 342 | # +!??! ~> + Upper | without + ~> normal letters | *!??! ~> random(Upper/Lower) 343 | 344 | #1,2,3 Go! 345 | def x1x_upMin(self,x,y): 346 | if x==0:return y.upper() 347 | elif x==1:return choice([y.lower(),y.upper()]) 348 | elif x==2:return y.lower() 349 | # one key generator from format directly 350 | def x1x(self,x): 351 | x444="" 352 | if x.startswith('+'):ww=0;x=x.replace(x[0],'') 353 | elif x.startswith('*'):ww=1;x=x.replace(x[0],'') 354 | else:ww=2 355 | for ff in x: 356 | if ff =='!': 357 | x444+=str(self.x1x_upMin(ww,''.join(choice(string.digits) for _ in range(1)))) 358 | elif ff =='?': 359 | x444+=str(self.x1x_upMin(ww,''.join(choice(string.ascii_letters) for _ in range(1)))) 360 | elif ff =='#': 361 | x444+=choice([str(self.x1x_upMin(ww,''.join(choice(string.digits) for _ in range(1)))),str(self.x1x_upMin(ww,''.join(choice(string.ascii_letters) for _ in range(1))))]) 362 | else:x444+=ff 363 | return x444 364 | def phnnm(self): 365 | if not os.path.isdir('zeroeye-results/phonz'): 366 | os.mkdir('zeroeye-results/phonz') 367 | print(""" 368 | Helper: 369 | +21669666999 : Tunisien Phone 370 | Country Code : +216 371 | length : 8 372 | Start With : 6 or 69 """) 373 | iiiiii=input("%s[%s>%s] With Country Code ?? (y/n) %s"%(la7mar,lasfar,la7mar,labyadh)) 374 | if iiiiii.upper() in ['Y','YES','AY','O','OUI']: 375 | intcd=input("%s[%s>%s] Country Code %s"%(la7mar,lasfar,la7mar,labyadh)) 376 | while not intcd.startswith('+') or intcd.startswith('00') or len(intcd)>5: 377 | print("%s[%s>%s] WTF Bro ??"%(la7mar,lasfar,la7mar));intcd=input("%s[%s>%s] InterCode %s"%(la7mar,lasfar,la7mar,labyadh)) 378 | else: 379 | intcd="" 380 | numbbbb=int(input("%s[%s>%s] length (without Country Code)%s"%(la7mar,lasfar,la7mar,labyadh))) 381 | startwitth=int(input("%s[%s>%s] Start With %s"%(la7mar,lasfar,la7mar,labyadh))) 382 | while len(str(startwitth))>numbbbb : 383 | startwitth=int(input("%s[%s>%s] Start With %s"%(la7mar,lasfar,la7mar,labyadh))) 384 | Hwmch=int(input("%s[%s>%s] How Much %s"%(la7mar,lasfar,la7mar,labyadh))) 385 | kifaaacg=numbbbb-len(str(startwitth)) 386 | for i in range(Hwmch): 387 | bakas=str(intcd)+str(startwitth)+str(self.x1x('!'*kifaaacg)) 388 | ousm='+'+self.x1x(bakas) 389 | print(ousm) 390 | with open('zeroeye-results/phonz/C0de_%s.txt'%(str(intcd)),'a') as L: 391 | L.write('%s\n'%ousm) 392 | print(" %s[%s%s number phone Saved In 'zeroeye-results/phonz/C0de_%s.txt'%s]%s"%(la7mar,lasfar,Hwmch,str(intcd),la7mar,labyadh)) 393 | so=input("%sContinue %s? %s[%sY%s/%sN%s(%syes%s/%sNo%s)] %s>%s "%(lasfar,ramadi,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,ramadi,labyadh)) 394 | if so.upper() in ['Y','YES','AY']: 395 | z4ck() 396 | else: 397 | exit() 398 | #------------# 399 | #fbtokengen 400 | def genetok(self): 401 | zz=input("%s[%s>%s] How Much %s"%(la7mar,lasfar,la7mar,labyadh)) 402 | for az in range(int(zz)): 403 | escnoor= "EAAAAUaZA8"+''.join(choice(string.ascii_letters + string.digits) for _ in range(randrange(170,220))) 404 | print(escnoor) 405 | with open('zeroeye-results/tokens.txt','a') as ttt: 406 | ttt.write(str(escnoor)+'\n') 407 | print(" %s[%s%s Token Saved In 'zeroeye-results/tokens.txt'%s]%s"%(la7mar,lasfar,zz,la7mar,labyadh)) 408 | so=input("%sContinue %s? %s[%sY%s/%sN%s(%syes%s/%sNo%s)] %s>%s "%(lasfar,ramadi,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,lasfar,la7mar,ramadi,labyadh)) 409 | if so.upper() in ['Y','YES','AY']: 410 | z4ck() 411 | else: 412 | exit() 413 | #------------# 414 | #Key creator 415 | def creat0r(self): 416 | namme=input('%s[%sName Of Config%s]%s '%(la7mar,lasfar,la7mar,labyadh)) 417 | if len(configs): 418 | while namme in open('config.ini','r').read(): 419 | namme=input('%s[%s %s Founded In Our Database %s]%s ... \n%s[%s Name Of Config%s]%s '%(la7mar,lasfar,namme,la7mar,labyadh,la7mar,lasfar,la7mar,labyadh));namme=namme.replace('\n','') 420 | Keyy=input('%s[%skey%s]%s '%(la7mar,lasfar,la7mar,labyadh)) 421 | if not Keyy in open('config.ini','r').read(): 422 | open('config.ini','a').write('\n%s::%s'%(namme,Keyy)) 423 | else:input('%s[%s %s Founded In Our Database %s]%s ... %s[%sPRESS ENTER TO RETRY%s]%s '%(la7mar,lasfar,Keyy,la7mar,labyadh,la7mar,lasfar,la7mar,labyadh));z4ck() 424 | sys.exit("%s[%sPRESS ENTER AND REOPEN THIS TOOL%s]%s"%(la7mar,lasfar,la7mar,labyadh)) 425 | clear() 426 | def delmyconf(self): 427 | global configs 428 | l=0 429 | print("""%s[%sFIND CONFIG.INI%s] """%(la7mar,lasfar,la7mar)) 430 | try: 431 | l=len(configs) 432 | except: 433 | sys.exit(input('%s[%sCONFIG.INI NO FOUND !!%s]%s'%(la7mar,lasfar,la7mar,labyadh))) 434 | print("""%s[%sNUMBER CONFIGS%s]%s %s"""%(la7mar,lasfar,la7mar,labyadh,len(configs))) 435 | print("""%s[%sCONFIGS%s]"""%(la7mar,lasfar,la7mar)) 436 | for f,i in enumerate(configs): 437 | print(" %s[%s%s%s]%s %s"%(la7mar,lasfar,f+1,la7mar,labyadh,i['name'])) 438 | baka=input("""%s[%sWHICH ONE YOU WANT TO DELETE%s]%s """%(la7mar,lasfar,la7mar,labyadh)) 439 | del configs[(int(baka)-1)] 440 | open('config.ini','w').write('#Free Keys by @0xtn\n') 441 | for i in configs : 442 | open('config.ini','a').write('%s::%s\n'%(i['name'],i['format'])) 443 | def seemydick(self): 444 | print("""{r} 445 | ({y}Name/Nickname{r}){rr}~~{r}({y}Zack{rr}/{y}M4rktn{r}) 446 | ({y}Contact{r}){rr}~~~~~~~~{r}({y}https{rr}://{y}linktr.ee{rr}/{y}m4rktn{r}) 447 | ({y}Version{r}){rr}~~~~~~~~{r}({y}2.0{r}) 448 | ({y}Release{r}){rr}~~~~~~~~{r}({y}Nov-2020{r}) 449 | {rr}*{y} We make Funny To you {rr}..{y} So Encourage us to make the best 450 | {rr}*{y} This Tool Usefull for some checkers 451 | {rr}*{y} No checker for Google Play {rr}..{y} Sorry 452 | {rr}*{y} Dont Say this tool like a shit {rr}..{y} because you are the shit {rr};) 453 | {rr}*{y} You should use vpn if you tried some keys and you take bans {rr}...""".format(r=la7mar,y=lasfar,rr=ramadi)) 454 | #------------# 455 | try: 456 | if not os.path.isdir('zeroeye-results'): 457 | os.mkdir('zeroeye-results') 458 | if not os.path.isfile('config.ini')or len(open('config.ini','r').read())<1: 459 | rep=input(""" You Dont Have Any Config ... You Want To create new generator?(Y/n)""").upper() 460 | open('config.ini','w').write('#ZeroEye\n') 461 | if rep in ['Y','YES']:creat0r() 462 | else:z4ck() 463 | else: 464 | for f in open('config.ini','r').read().splitlines(): 465 | if '::' in f: 466 | fff={'name':f.split('::')[0],'format':f.split('::')[1]};configs.append(fff) 467 | xnumx+=1 468 | for i in "[/] You Have [%s] Configs ... Go !"%(xnumx): 469 | sys.stdout.write(i) 470 | sys.stdout.flush() 471 | time.sleep(0.1) 472 | z4ck() 473 | except KeyboardInterrupt: 474 | pass --------------------------------------------------------------------------------