Skip to content

Commit

Permalink
modified: ufade_gui.py
Browse files Browse the repository at this point in the history
Fixed AW Ultra2 Swiss Bug
  • Loading branch information
prosch88 committed Nov 7, 2024
1 parent 16a9920 commit 8b0455b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ufade_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1783,6 +1783,8 @@ def show_report(self):
pass
self.wait_variable(self.change)
self.text.configure(text="Performing AFC Extraction of Mediafiles", height=60)
global lockdown
lockdown = create_using_usbmux()
self.casebox.pack_forget()
self.namebox.pack_forget()
self.evidbox.pack_forget()
Expand Down Expand Up @@ -1818,6 +1820,7 @@ def show_report(self):
self.progress.set(0)
self.prog_text.configure(text="0%")
self.text.configure(text="Pulling Crash Logs from the device.")
lockdown = create_using_usbmux()
self.crashl = threading.Thread(target=lambda: crash_report(crash_dir=cfolder, change=self.change, progress=self.progress, prog_text=self.prog_text))
self.crashl.start()
self.wait_variable(self.change)
Expand All @@ -1842,6 +1845,8 @@ def watch_report(self, text, prog_text, progress, change, now, case_number="", c
prog_text.configure(text="")
text.configure(text="Generating report files. This may take some time.")
progress.pack_forget()
global lockdown
lockdown = create_using_usbmux()
self.progress = ctk.CTkProgressBar(self.dynamic_frame, width=585, height=30, corner_radius=0, mode="indeterminate", indeterminate_speed=0.5)
self.progress.pack()
self.progress.start()
Expand Down Expand Up @@ -4140,7 +4145,7 @@ def create_linux_shell_script():
case_name = ""
evidence_number = ""
examiner = ""
u_version = "0.9.4"
u_version = "0.9.5"


# Start the app
Expand Down

0 comments on commit 8b0455b

Please sign in to comment.