Switcheroo
A CLI and GUI for the RCM BootRom exploit (Fusée Gelée exploit for Nintendo Switch)
Only works on unpatched Switches: https://ismyswitchpatched.com/
Written in Rust using clap for the CLI and egui for the GUI.
Features
- CLI interface
- GUI interface
- Works on MacOS and Linux (Windows support is WIP)
Usage
The binary name is switcheroo
To display application use switcheroo help
Use switcheroo <subcommand> help
for help with that subcommand.
Examples
Execute a payload.
switcheroo execute <path>
Check if the switch is connected.
switcheroo device
Start the GUI.
switcheroo gui
Troubleshooting
Linux: Permission denied error
On many linux systems the usb control is blocked by default.
This can be fixed by adding the following file:
/etc/udev/rules.d/99-switch.rules
with the following content:
SUBSYSTEM=="usb", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="3000", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7321", MODE="0666"
then reload the udev rules:
sudo udevadm control --reload-rules
Finally unplug and plug back in the switch.
Linux: Flatpak not detecting Switch
Due to a limitation of flatpak not allowing access to udev, the flatpak version only works if the Switch is already in rcm mode and plugged in when it is launched. If the application is launched without these conditions being met, it will never show RCM OK
Similar projects
Here are some other similar projects
- TegraRcmGUI GUI for Windows
- Fusée Launcher CLI for (Linux, Windows, MacOS)
- NXBoot (MacOS, iOS)
- JTegraNX Java GUI for (Windows, OS X, GNU/Linux)
- NXLoader (Android)
- Web Fusée Launcher Web App (only Chrome)
Credit
Implemenation is largely based on the following reference implementation: Fusee Launcher
Gui design inspired from the great: TegraRcmGui