Skip to content

Commit

Permalink
Deleted temporary PPPwnCPP
Browse files Browse the repository at this point in the history
  • Loading branch information
B-Dem committed Jun 9, 2024
1 parent 9a57ff1 commit d5bd18a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file removed PPPwn/__pycache__/offsets.cpython-38.pyc
Binary file not shown.
6 changes: 3 additions & 3 deletions PPPwnUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ def __init__(self, master):
self.pppwn_python_radio_button = tk.Radiobutton(self.exploit_frame, text="PPPwn Python", variable=self.exploit_var, value="PPPwn Python")
self.pppwn_python_radio_button.pack(side=tk.LEFT, padx=5)

self.pppwn_cpp_radio_button = tk.Radiobutton(self.exploit_frame, text="PPPwn C++", variable=self.exploit_var, value="PPPwn C++")
self.pppwn_cpp_radio_button.pack(side=tk.LEFT, padx=5)
# self.pppwn_cpp_radio_button = tk.Radiobutton(self.exploit_frame, text="PPPwn C++", variable=self.exploit_var, value="PPPwn C++")
# self.pppwn_cpp_radio_button.pack(side=tk.LEFT, padx=5)

self.pppwn_go_radio_button = tk.Radiobutton(self.exploit_frame, text="PPPwn_GO", variable=self.exploit_var, value="PPPwn_GO")
self.pppwn_go_radio_button.pack(side=tk.LEFT, padx=5)
Expand Down Expand Up @@ -281,7 +281,7 @@ def start_pppwn(self):
command = f'PPPwn\\pppwn_cpp.exe --interface="{interface}" --stage1="PPPwn/goldhen/{firmware_value}/stage1.bin" --stage2="PPPwn/goldhen/{firmware_value}/stage2.bin"'
elif exploit_version == "PPPwn_GO":
if sys.platform == "linux":
command = f'./PPPwn/pppwn_go --interface="{interface}" --stage1="PPPwn/goldhen/{firmware_value}/stage1.bin" --stage2="PPPwn/goldhen/{firmware_value}/stage2.bin"'
command = f'./PPPwn/pppwn_go --stage1="PPPwn/goldhen/{firmware_value}/stage1.bin" --stage2="PPPwn/goldhen/{firmware_value}/stage2.bin"'
else:
command = f'PPPwn\\pppwn_go.exe --interface="{interface}" --stage1="PPPwn/goldhen/{firmware_value}/stage1.bin" --stage2="PPPwn/goldhen/{firmware_value}/stage2.bin"'
elif firmware.find("VTX HEN for ") != -1:
Expand Down

0 comments on commit d5bd18a

Please sign in to comment.