def check_input_conditions(self):
if not self.filename:
print "[ Error ] Please Provide Zip File Path "
sys.exit(0)
print "[+] Checking Zip File Condition ...",
if not zipfile.is_zipfile(self.filename):
print "[ Error ] Bad Zip file"
sys.exit(0)
print " Ok"
if not self.dictionery and not self.crunch:
print "[ Error ] Please Provide Dictonery Or Crunch Or Password Option"
sys.exit(0)
if self.dictionery and self.crunch:
print "[ Error ] Please Choose Any One Option From Dict or Crunch"
sys.exit(0)
return
评论列表
文章目录