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
import random,os,sys | |
def clear(): | |
if os.name == 'nt': | |
os.system('cls') | |
else: | |
os.system('clear') | |
def show_help(): | |
print(""" | |
###### HELP ###### | |
baray khoroj az barname "q" ra vared konid |
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
import zipfile | |
zfile = zipfile.ZipFile('uti.zip','r') | |
passfile = open('uti.txt','rb') | |
count = 0 | |
for line in passfile: | |
password = line.strip() | |
try: | |
zfile.extractall(pwd=password) | |
break | |
except Exception: |