Skip to content

Commit 34a9923

Browse files
committed
general: General fixes, injector now works
- Tested and working on MacOS - Switch 5.0.X. - Fixed DeviceID display error.
1 parent f0fbe22 commit 34a9923

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

launcher/globals/GUIGlobals.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
VAR_NOT_SET = "None"
1717

1818
DEVICE_ID = "Device ID: %s"
19+
DEVICE_ID_HEX = "Device ID: %#x"
1920
INTERMEZZO = "Selected Intermezzo: %s"
2021
PAYLOAD = "Selected Payload: %s"
2122
START = "Connect and Inject"

launcher/gui/LauncherGUI.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def popupInfo(self, message):
109109
messagebox.showinfo("Info", GUIGlobals.POPUP_INFO[message])
110110

111111
def setDeviceID(self, id):
112-
self.deviceIDVar.set(GUIGlobals.DEVICE_ID % id)
112+
self.deviceIDVar.set(GUIGlobals.DEVICE_ID_HEX % id)
113113

114114
def openIntermezzoSelector(self):
115115
# Block button input.

launcher/injector/PayloadInjector.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Injector based on reswitched/fusee-launcher.
55
"""
66

7+
import os
78
import threading
89
import tkinter
910
import platform
@@ -62,7 +63,7 @@ def runInjector(self):
6263
intermezzoPath = self.parent.intermezzoPath
6364
payloadPath = self.parent.payloadPath
6465

65-
if not intermezzoPath or not payloadPath:
66+
if not os.path.isfile(intermezzoPath) or not os.path.isfile(payloadPath):
6667
print("Error: You must set both an Intermezzo path and a Payload path!")
6768
self.processError('VarsNotSet')
6869
return
@@ -85,8 +86,10 @@ def runInjector(self):
8586
# Retrieve and print the device's ID.
8687
# NOTE: We have to read the first 16 anyways before we can proceed.
8788
deviceID = self.readDeviceID()
88-
print("Nintendo Switch with device ID: (%s) located!" % hex(deviceID))
89-
self.parent.gui.setDeviceID(hex(deviceID))
89+
deviceIDHex = int.from_bytes(bytes(deviceID), byteorder='little')
90+
91+
print("Nintendo Switch with device ID: (%#x) located!" % deviceIDHex)
92+
self.parent.gui.setDeviceID(deviceIDHex)
9093

9194
# Use the maximum length accepted by RCM, so we can transmit as much payload as
9295
# we want; we'll take over before we get to the end.
@@ -164,14 +167,12 @@ def runInjector(self):
164167
print("Lost connection to the Switch... (THIS IS NOT AN ERROR! Unless you've unplugged it).")
165168
print("SUCCESS! The exploit has been triggered and you can now safely unplug your Switch!")
166169
self.processInfo('SuccessfulExploit')
167-
return
168170

169171
# Any other exception is unknown.
170172
except Exception as e:
171173
print(e)
172174
print("Error: An unknown error occured while triggering the exploit...")
173175
self.processError('UnknownError')
174-
return
175176

176177
def read(self, length):
177178
"""

0 commit comments

Comments
 (0)