• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

Brute Bruteforcer (1 Viewer)

Currently reading:
 Brute Bruteforcer (1 Viewer)

Recently searched:

Dexten

Member
LV
0
Joined
May 6, 2024
Threads
1
Likes
2
Awards
1
Credits
233©
Cash
0$
ADD AN IMAGE HERE! [Not adding an image will result in removal]
Then remove these lines.

Download:



Screenshot 2025 03 08 184824
 
  • Like
Reactions: fognayerku and mixpodcast

TriPPy-CB

Member
LV
3
Joined
Jul 7, 2021
Threads
10
Likes
72
Awards
7
Credits
5,877©
Cash
0$
from zipfile import ZipFile

# Attempt to extract the zip file with the given password
def attempt_extract(zf_handle, password):
try:
zf_handle.extractall(pwd=password.encode())
print(f"[+] Password found: {password}")
return True
except:
return False

def main():
print("[+] Beginning bruteforce")
with ZipFile('YOU ZIP FILE.zip') as zf:
with open('rockyou.txt', 'rb') as f:
for line in f:
password = line.strip().decode()
if attempt_extract(zf, password):
print("[+] Password found!")
return
print("[+] Password not found in list")

if __name__ == "__main__":
main()
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom