Git Product home page Git Product logo

Comments (2)

zeroxd0d0e0a0d0b0e0e0f avatar zeroxd0d0e0a0d0b0e0e0f commented on September 24, 2024

Try with th1z slightly modified version

# /usr/bin/env python
# -*- coding: utf-8 -*-

import os
import time
import zipfile
from sys import platform
import subprocess

print("[*] Checking Requirements Module....")
try:
    from termcolor import colored
except ImportError:
    os.system("pip install termcolor -q -q -q")
    import termcolor
try:
    import pyfiglet
except ImportError:
    os.system("pip install pyfiglet -q -q -q")
    import pyfiglet


def header():
    ascii_banner = pyfiglet.figlet_format("{ZIP CRACKER}").upper()
    print(colored(ascii_banner.rstrip("\n"), 'cyan', attrs=['bold']))
    print(colored("                          <Coded By: Clay>     \n", 'yellow', attrs=['bold']))
    print(colored("               <Modified By: zeroxd0d0e0a0d0b0e0e0f>     \n", 'red', attrs=['bold']))
    print(colored("                          <Version: 2.1>     \n", 'magenta', attrs=['bold']))
    return


def linuxpdf():
    os.system("clear")
    header()
    zip_filename = archive=subprocess.check_output('read -e -p "[*] Enter Path Of Your zip file: " var ; echo $var',shell=True).rstrip().decode('ascii')
    if not os.path.exists(zip_filename):
        print(colored("\n[ X ] File " + zip_filename + " was not found, Provide Valid FileName And Path!",
                      'red'))
        exit()
    print(colored("\n[*] Analyzing Zip File: ", 'blue'), zip_filename)
    time.sleep(1)
    if zip_filename[-3:] == "zip":
        print(colored("\n[ ✔ ] Valid ZIP File Found...\n", 'green'))
    else:
        print(colored("\n[ X ] This is not a valid .zip file...\n", 'red'))
        exit()
    pwd_filename = wordlist=subprocess.check_output('read -e -p "[*] Enter Path Of Your Wordlist: " var ; echo $var',shell=True).rstrip().decode('ascii')
    if not os.path.exists(pwd_filename):
        print(colored("\n[ X ] File " + pwd_filename + " was not found, Provide Valid FileName And Path!",
                      'red'))
        exit()
    with open(pwd_filename, "rb") as passwords:
        passwords_list = passwords.readlines()
        total_passwords = len(passwords_list)
        my_zip_file = zipfile.ZipFile(zip_filename)
        for index, password in enumerate(passwords_list):
            try:
                my_zip_file.extractall(
                    path="Extracted Folder", pwd=password.strip())
                print(
                    colored("\n{***********************SUCCESS***********************}", 'green'))
                print(colored("[ ✔ ] ZIP FILE Password Found: ",
                      'cyan'), password.decode().strip())
                break
            except:
                helo = round((index / total_passwords) * 100, 2)
                if helo == '100%':
                    print(colored("[ X ] ALL ATTEMPTS FAILED", 'red'))
                else:
                    print(
                        colored(f"[*] Trying password: {password.decode().strip()} ", 'green'))
                continue


def winpdf():
    os.system("cls")
    header()
    zip_filename = input(colored("Enter Path Of Your zip file: ", 'cyan'))
    if not os.path.exists(zip_filename):
        print(colored("\n[ X ] File " + zip_filename + " was not found, Provide Valid FileName And Path!",
                      'red'))
        exit()
    print(colored("\n[*] Analyzing Zip File: ", 'blue'), zip_filename)
    time.sleep(2)
    if zip_filename[-3:] == "zip":
        print(colored("\n[ ✔ ] Valid ZIP File Found...", 'green'))
    else:
        print(colored("\n[ X ] This is not a valid .zip file...\n", 'red'))
        exit()
    pwd_filename = input(colored("\nEnter Path Of Your Wordlist: ", 'yellow'))

    if not os.path.exists(pwd_filename):
        print(colored("\n[ X ] File " + pwd_filename + " was not found, Provide Valid FileName And Path!",
                      'red'))
        exit()
    with open(pwd_filename, "rb") as passwords:
        passwords_list = passwords.readlines()
        total_passwords = len(passwords_list)
        my_zip_file = zipfile.ZipFile(zip_filename)
        for index, password in enumerate(passwords_list):
            try:
                my_zip_file.extractall(
                    path="Extracted Folder", pwd=password.strip())
                print(
                    colored("\n{***********************SUCCESS***********************}", 'green'))
                print(colored("[ ✔ ] ZIP FILE Password Found: ",
                      'cyan'), password.decode().strip())
                break
            except:
                helo = round((index / total_passwords) * 100, 2)
                if helo == '100%':
                    print(colored("[ X ] ALL ATTEMPTS FAILED", 'red'))
                else:
                    print(
                        colored(f"[*] Trying password: {password.decode().strip()} ", 'green'))
                continue


def catc():
    try:
        if platform == "linux" or platform == "linux2" or platform == "darwin":
            linuxpdf()
        elif platform == "win32":
            winpdf()
    except KeyboardInterrupt:
        print(colored("\nYou Pressed The Exit Button!", 'red'))
        quit()


catc()

from zipcrack.

QtidusQ avatar QtidusQ commented on September 24, 2024

image when i try to use this tool , it can not work , env:Python 3.8.9

did you fix it? i have the same question...

from zipcrack.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.