Skip to content

Instantly share code, notes, and snippets.

View nerun's full-sized avatar

Daniel Dias Rodrigues nerun

View GitHub Profile
@nerun
nerun / ZipCracker.py
Last active January 12, 2024 20:37
Python Zip Cracker. Funciona com arquivos ZIP encriptados com ZipCrypto, não suporta AES128/256.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import time, sys, itertools, os, string, datetime
from zipfile import ZipFile
def LimparTela(linhas=100):
if os.name == 'posix':
os.system('clear')
elif os.name in ('nt', 'dos', 'ce'):
os.system('cls')