-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZipCracker_UI.py
151 lines (124 loc) · 5.36 KB
/
ZipCracker_UI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import os
import subprocess
import threading
import tkinter as tk
from tkinter import messagebox, ttk
from tkinterdnd2 import DND_FILES, TkinterDnD
from pathlib import Path
import json
from datetime import datetime
def update_history(wordlist_name):
history_file = "history.json"
history = {}
# Lees de huidige geschiedenis als het bestand al bestaat
if os.path.exists(history_file):
with open(history_file, "r") as file:
history = json.load(file)
# Voeg of update de timestamp voor de huidige woordlijst
if wordlist_name not in history:
history[wordlist_name] = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
# Schrijf de bijgewerkte geschiedenis terug naar het bestand
with open(history_file, "w") as file:
json.dump(history, file, indent=4)
def crack_archive(archive_path, wordlist_dir, seven_zip_path, update_status, log_attempt, callback):
wordlist_files = list(Path(wordlist_dir).glob("*.txt"))
if not wordlist_files:
callback("Error", "No wordlists found in the passlists directory!")
return
for wordlist in wordlist_files:
update_status(f"Trying wordlist: {wordlist.name}")
update_history(wordlist.name) # Update de geschiedenis voor deze woordlijst
with open(wordlist, 'r') as file:
for line in file:
password = line.strip()
log_attempt(f"Attempting: {password}")
if attempt_crack(seven_zip_path, archive_path, password):
callback("Success", f"Password Found: {password}")
return
callback("Failure", "No password found in any wordlist.")
def attempt_crack(seven_zip_path, archive, password):
try:
result = subprocess.run(
[seven_zip_path, 'x', f"-p{password}", archive, '-o"cracked"', '-y'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
return result.returncode == 0
except Exception as e:
print(f"Error: {e}")
return False
def on_drop(event):
archive_path.set(event.data.strip('{}')) # Verwijder accolades
archive_label.config(text=f"Selected: {archive_path.get()}")
def verify_7zip():
path = r"C:\Program Files\7-Zip\7z.exe"
if not os.path.exists(path):
messagebox.showerror("Error", "7-Zip not installed in the default location!")
return None
return path
def start_cracking_thread(archive):
if not archive or not os.path.exists(archive):
messagebox.showerror("Error", "No archive selected or file does not exist!")
return
seven_zip_path = verify_7zip()
if not seven_zip_path:
return
status_label.config(text="Starting...")
threading.Thread(
target=crack_archive,
args=(archive, Path("passlists"), seven_zip_path, update_status, log_attempt, handle_result),
daemon=True
).start()
def handle_result(status, message):
if status == "Success":
messagebox.showinfo("Success", message)
elif status == "Error":
messagebox.showerror("Error", message)
elif status == "Failure":
messagebox.showwarning("Failure", message)
status_label.config(text="Idle")
def update_status(message):
status_label.config(text=message)
def log_attempt(attempt):
log_text.insert(tk.END, attempt + "\n")
log_text.see(tk.END)
def create_gui():
root = TkinterDnD.Tk()
root.title("ZipCracker")
root.geometry("600x500")
root.config(bg="#2E2E2E") # Donkere achtergrondkleur voor een moderner uiterlijk
# Styling voor ttk widgets
style = ttk.Style()
style.theme_use("clam")
style.configure("TLabel", background="#2E2E2E", foreground="#FFFFFF", font=("Arial", 10))
style.configure("TButton", font=("Arial", 12, "bold"), padding=6, anchor="center",
background="#4CAF50", foreground="#FFFFFF")
style.map("TButton", background=[("active", "#45A049")])
global archive_label, log_text, status_label, archive_path
# Titel label
title_label = ttk.Label(root, text="ZipCracker", font=("Arial", 16, "bold"))
title_label.pack(pady=(10, 5))
# Bestand drag-and-drop label
archive_label = ttk.Label(root, text="Drag and drop your archive here", relief="groove", padding=10, anchor="center")
archive_label.pack(pady=(10, 5), fill="x", padx=20)
root.drop_target_register(DND_FILES)
root.dnd_bind('<<Drop>>', on_drop)
# Status label
status_label = ttk.Label(root, text="Idle", relief="sunken", padding=5)
status_label.pack(pady=(10, 5), fill="x", padx=20)
# Tekstvak voor logs
log_text_frame = ttk.Frame(root)
log_text_frame.pack(pady=(10, 5), fill="both", expand=True, padx=20)
log_text = tk.Text(log_text_frame, wrap="word", height=15, width=60, bg="#1E1E1E", fg="#FFFFFF", insertbackground="#FFFFFF")
log_text.pack(fill="both", expand=True)
# Scrollbar voor het log-venster
scrollbar = ttk.Scrollbar(log_text_frame, command=log_text.yview)
scrollbar.pack(side="right", fill="y")
log_text.config(yscrollcommand=scrollbar.set)
# Start-knop
crack_button = ttk.Button(root, text="Start Bruteforce", command=lambda: start_cracking_thread(archive_path.get()))
crack_button.pack(pady=(0, 10)) # Voeg extra padding onderaan toe om de knop iets omhoog te verplaatsen
# Variabel voor archiefpad
archive_path = tk.StringVar()
root.mainloop()
if __name__ == "__main__":
create_gui()