2023-04-13 11:09:41 +02:00
|
|
|
/*
|
|
|
|
Copyright (C) 2023 Gruetzig
|
|
|
|
Copyright (C) 2023 Nintendo Homebrew
|
|
|
|
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
2023-05-30 19:56:51 +02:00
|
|
|
const DEVICE_N3DS = 1;
|
|
|
|
const DEVICE_O3DS = 0;
|
|
|
|
|
2023-07-14 22:41:01 +02:00
|
|
|
// Possible max minor for each major, major as key
|
|
|
|
const major_minor_map = {
|
|
|
|
0: -1, // invalidate all 0.x
|
|
|
|
1: 1,
|
|
|
|
2: 2,
|
|
|
|
3: 1,
|
|
|
|
4: 5,
|
|
|
|
5: 1,
|
|
|
|
6: 4,
|
|
|
|
7: 2,
|
|
|
|
8: 1,
|
|
|
|
9: 9,
|
|
|
|
10: 7,
|
|
|
|
11: 17
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate version
|
2023-07-14 23:00:49 +02:00
|
|
|
// CHN/TWN doesn't have new model
|
|
|
|
// KOR/CHN/TWN doesn't have 11.17 currently
|
2023-07-14 22:41:01 +02:00
|
|
|
function validate_version(major, minor, native, region, model) {
|
|
|
|
if (model == DEVICE_N3DS && ["C", "T"].includes(region)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-07-14 23:00:49 +02:00
|
|
|
if (major == 11 && minor == 17 && ["K", "C", "T"].includes(region)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-07-14 22:41:01 +02:00
|
|
|
const minor_max = major_minor_map[major];
|
|
|
|
if (!isNaN(minor_max) && minor > minor_max) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-05-23 21:50:05 +02:00
|
|
|
// Soundhax
|
|
|
|
// 1.0-11.3, all regions, all consoles
|
|
|
|
function can_soundhax(major, minor, native, region, model) {
|
|
|
|
let do_redirect = false;
|
|
|
|
if(major <= 10) do_redirect = true;
|
|
|
|
else if(major == 11 && minor <= 3) do_redirect = true;
|
|
|
|
|
|
|
|
if(do_redirect) {
|
|
|
|
window.location.href = "installing-boot9strap-(soundhax)";
|
|
|
|
return true;
|
2023-03-14 17:19:28 +01:00
|
|
|
}
|
2023-05-23 21:50:05 +02:00
|
|
|
return false;
|
2023-03-19 13:46:34 +01:00
|
|
|
}
|
|
|
|
|
2023-05-23 21:50:05 +02:00
|
|
|
// SSLoth
|
|
|
|
// U/E/J has different version table than KOR
|
2023-05-18 09:16:30 +02:00
|
|
|
// KOR/CHN/TWN Old 3DS browser (spider) 1.7630 (v10240, shipped with 11.1~11.8) isn't supported by browserhax
|
2023-04-13 00:13:20 +02:00
|
|
|
// CHN/TWN isn't validated for now as those cannot exploit atm
|
2023-05-23 21:50:05 +02:00
|
|
|
function can_ssloth(major, minor, native, region, model) {
|
|
|
|
let do_redirect = false;
|
|
|
|
if(major == 11) {
|
|
|
|
if(["U", "E", "J"].includes(region)) {
|
|
|
|
if
|
|
|
|
(
|
|
|
|
(minor == 4 && native == 37) ||
|
|
|
|
(minor == 5 && native == 38) ||
|
|
|
|
(minor == 6 && native == 39) ||
|
|
|
|
(minor == 7 && native == 40) ||
|
|
|
|
(minor == 8 && native == 41) ||
|
|
|
|
(minor == 9 && native == 42) ||
|
|
|
|
(minor == 10 && native == 43) ||
|
|
|
|
(minor == 11 && native == 43) ||
|
|
|
|
(minor == 12 && native == 44) ||
|
|
|
|
(minor == 13 && native == 45)
|
|
|
|
) {
|
|
|
|
do_redirect = true;
|
|
|
|
}
|
|
|
|
} else if (region == "K") {
|
|
|
|
if
|
|
|
|
(
|
2023-05-30 19:56:51 +02:00
|
|
|
(model == DEVICE_N3DS && minor == 4 && native == 33) ||
|
|
|
|
(model == DEVICE_N3DS && minor == 5 && native == 34) ||
|
|
|
|
(model == DEVICE_N3DS && minor == 6 && native == 35) ||
|
|
|
|
(model == DEVICE_N3DS && minor == 7 && native == 35) ||
|
|
|
|
(model == DEVICE_N3DS && minor == 8 && native == 35) ||
|
2023-05-23 21:50:05 +02:00
|
|
|
(minor == 9 && native == 36) ||
|
|
|
|
(minor == 10 && native == 37) ||
|
|
|
|
(minor == 12 && native == 38) ||
|
|
|
|
(minor == 13 && native == 39)
|
|
|
|
) {
|
|
|
|
do_redirect = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(do_redirect) {
|
|
|
|
window.location.href = "installing-boot9strap-(ssloth-browser)";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// safecerthax
|
|
|
|
// O3DS only, all regions
|
|
|
|
// Works on 1.0 to 11.14
|
|
|
|
// Soundhax and SSLoth should be validated before this
|
|
|
|
function can_safecerthax(major, minor, native, region, model) {
|
|
|
|
let do_redirect = false;
|
2023-05-30 19:56:51 +02:00
|
|
|
if (model == DEVICE_O3DS) {
|
2023-05-23 21:50:05 +02:00
|
|
|
if (major <= 10) do_redirect = true;
|
|
|
|
else if (major == 11 && minor <= 14) do_redirect = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(do_redirect) {
|
|
|
|
window.location.href = "installing-boot9strap-(safecerthax)";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// super-skaterhax
|
2023-07-19 05:01:08 +02:00
|
|
|
// N3DS only
|
|
|
|
// EUR/JPN/USA: 11.16-11.17
|
|
|
|
// KOR: 11.16 only, KOR does not have 11.17
|
2023-05-23 21:50:05 +02:00
|
|
|
// CHN/TWN has no N3DS
|
|
|
|
function can_superskaterhax(major, minor, native, region, model) {
|
|
|
|
let do_redirect_sysupdate = false;
|
|
|
|
let do_redirect = false;
|
|
|
|
// N3DS only
|
2023-05-30 19:56:51 +02:00
|
|
|
if(model == DEVICE_N3DS) {
|
2023-05-23 21:50:05 +02:00
|
|
|
if (major == 11) {
|
2023-07-19 05:01:08 +02:00
|
|
|
if (minor >= 16) do_redirect = true;
|
|
|
|
// Since this exploit works on latest,
|
|
|
|
// if no other exploit exists for that version, update
|
|
|
|
else do_redirect_sysupdate = true;
|
2023-05-23 21:50:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_redirect_sysupdate) {
|
|
|
|
window.location.href = "updating-firmware-(new-3ds)";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (do_redirect) {
|
2023-07-18 23:54:57 +02:00
|
|
|
window.location.href = "installing-boot9strap-(super-skaterhax)";
|
2023-05-23 21:50:05 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-05-30 20:07:49 +02:00
|
|
|
// Mii mining
|
2023-10-08 21:45:38 +02:00
|
|
|
// Only do on 11.15 O3DS
|
2023-05-25 01:11:05 +02:00
|
|
|
function can_miimine(major, minor, native, region, model) {
|
|
|
|
let do_redirect = false;
|
|
|
|
|
2023-05-30 19:56:51 +02:00
|
|
|
if (model == DEVICE_O3DS) {
|
|
|
|
if (major == 11 && minor == 15) {
|
2023-05-25 01:11:05 +02:00
|
|
|
// KOR and TWN can do normal seedminer
|
2023-06-12 23:40:07 +02:00
|
|
|
// CHN can't do seedminer at all (no valid exploit after doing so)
|
2023-05-25 01:11:05 +02:00
|
|
|
// All other O3DS must Mii mine
|
2023-06-12 23:40:07 +02:00
|
|
|
if (!["C", "K", "T"].includes(region)) do_redirect = true;
|
2023-05-25 01:11:05 +02:00
|
|
|
}
|
|
|
|
}
|
2023-05-30 19:56:51 +02:00
|
|
|
|
2023-05-25 01:11:05 +02:00
|
|
|
if (do_redirect) {
|
|
|
|
window.location.href = "seedminer-(mii)";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-23 21:50:05 +02:00
|
|
|
// Seedminer, U/E/J/K region
|
|
|
|
// only 11.16 can run Seedminer
|
|
|
|
function can_seedminer(major, minor, native, region, model) {
|
2023-05-25 04:24:57 +02:00
|
|
|
let do_redirect_sysupdate_kor = false;
|
2023-05-23 21:50:05 +02:00
|
|
|
let do_redirect = false;
|
2023-07-19 05:01:08 +02:00
|
|
|
|
2023-05-23 21:50:05 +02:00
|
|
|
// 11.16 should always do seedminer on 3DS
|
2023-10-08 21:45:38 +02:00
|
|
|
// CHN/TWN will use MSET9
|
2023-05-23 21:50:05 +02:00
|
|
|
if (major == 11 && minor == 16) {
|
|
|
|
if (["U", "E", "J", "K"].includes(region)) do_redirect = true;
|
|
|
|
}
|
2023-07-13 06:12:13 +02:00
|
|
|
// KOR on any version should update to 11.16
|
|
|
|
else if (region == "K") do_redirect_sysupdate_kor = true;
|
2023-05-23 21:50:05 +02:00
|
|
|
|
2023-05-25 04:24:57 +02:00
|
|
|
if (do_redirect_sysupdate_kor) {
|
|
|
|
window.location.href = "updating-firmware-(kor)";
|
2023-05-23 21:50:05 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (do_redirect) {
|
|
|
|
window.location.href = "seedminer";
|
|
|
|
return true;
|
2023-03-19 13:46:34 +01:00
|
|
|
}
|
2023-05-23 21:50:05 +02:00
|
|
|
return false;
|
2023-03-19 13:46:34 +01:00
|
|
|
}
|
|
|
|
|
2023-10-05 02:02:15 +02:00
|
|
|
// Huzzah, MSET9 for O3DS!
|
2023-10-08 21:45:38 +02:00
|
|
|
function can_mset9(major, minor, native, region, model) {
|
|
|
|
let do_redirect_sysupdate = false;
|
2023-05-24 10:01:03 +02:00
|
|
|
let do_redirect = false;
|
2023-10-08 21:45:38 +02:00
|
|
|
|
|
|
|
// Exploit supports 11.4 or later
|
|
|
|
// Update consoles that aren't there yet
|
2023-10-09 20:11:34 +02:00
|
|
|
if(model == DEVICE_O3DS && !(major == 11 && minor >= 4)) {
|
2023-10-08 21:45:38 +02:00
|
|
|
do_redirect_sysupdate = true;
|
2023-05-24 10:01:03 +02:00
|
|
|
}
|
2023-10-08 21:45:38 +02:00
|
|
|
else do_redirect = true;
|
|
|
|
|
2023-10-09 20:11:34 +02:00
|
|
|
if (do_redirect_sysupdate && model == DEVICE_O3DS) {
|
2023-10-08 21:45:38 +02:00
|
|
|
window.location.href = "updating-firmware-(old-3ds)";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (do_redirect) {
|
2023-10-05 02:02:15 +02:00
|
|
|
window.location.href = "installing-boot9strap-(mset9)"
|
2023-05-24 10:01:03 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-04-13 00:13:20 +02:00
|
|
|
/*
|
|
|
|
Redirects page based on input from user.
|
|
|
|
Input:
|
|
|
|
- System version
|
|
|
|
- O3DS/N3DS
|
|
|
|
|
2023-10-08 21:45:38 +02:00
|
|
|
Exploits are compatibility-checked in the following order.
|
|
|
|
Free exploits (exploits that do not require purchase of another device)
|
|
|
|
on latest system version will be updated if the console's version is not compatible.
|
|
|
|
|
|
|
|
- Soundhax
|
|
|
|
- 1.0 - 11.3
|
|
|
|
- All regions
|
|
|
|
- All models
|
|
|
|
- SSLoth-Browser
|
|
|
|
- 11.4 - 11.13 with matching NVer for each version
|
|
|
|
- USA, JPN, EUR, KOR
|
|
|
|
- All models
|
|
|
|
- safecerthax
|
|
|
|
- 11.4 - 11.14
|
|
|
|
- All regions
|
|
|
|
- O3DS only
|
|
|
|
- Mii mine
|
|
|
|
- 11.15
|
|
|
|
- USA / EUR / JPN
|
|
|
|
- O3DS only
|
|
|
|
- Seedminer
|
|
|
|
- 11.16
|
|
|
|
- KOR consoles will update to this version
|
|
|
|
- USA / EUR / JPN / KOR
|
|
|
|
- O3DS only
|
|
|
|
- super-skaterhax
|
|
|
|
- 11.16 - 11.17
|
|
|
|
- All N3DS consoles will update to this version
|
|
|
|
- USA / EUR / JPN / KOR
|
|
|
|
- N3DS only
|
|
|
|
- MSET9
|
|
|
|
- 11.4 - 11.17
|
|
|
|
- All consoles will update to this version
|
|
|
|
- All regions
|
|
|
|
- All models
|
2023-04-13 00:13:20 +02:00
|
|
|
*/
|
2023-03-19 13:46:34 +01:00
|
|
|
function redirect() {
|
2023-07-14 22:41:01 +02:00
|
|
|
const major = document.getElementById("major").value;
|
|
|
|
const minor = document.getElementById("minor").value;
|
|
|
|
const nver = document.getElementById("nver").value;
|
|
|
|
const region = document.getElementById("region").value;
|
|
|
|
const isN3DS = document.getElementById("new3DS").checked;
|
|
|
|
const isO3DS = document.getElementById("old3DS").checked;
|
2023-04-07 06:17:49 +02:00
|
|
|
document.getElementById("result_noneSelected").style.display = "none";
|
2023-03-19 13:46:34 +01:00
|
|
|
document.getElementById("result_invalidVersion").style.display = "none";
|
|
|
|
document.getElementById("result_methodUnavailable").style.display = "none";
|
2023-04-13 17:24:47 +02:00
|
|
|
if ((!isN3DS) && (!isO3DS)) {
|
|
|
|
document.getElementById("result_noneSelected").style.display = "block";
|
2023-05-23 21:50:05 +02:00
|
|
|
return;
|
2023-04-13 17:24:47 +02:00
|
|
|
}
|
2023-05-23 21:50:05 +02:00
|
|
|
|
2023-05-30 19:56:51 +02:00
|
|
|
// Realistically only one of these should be possible with the given elements
|
|
|
|
let model = -1;
|
|
|
|
if(isO3DS) model = DEVICE_O3DS
|
|
|
|
else if(isN3DS) model = DEVICE_N3DS;
|
2023-05-23 21:50:05 +02:00
|
|
|
|
2023-07-14 22:41:01 +02:00
|
|
|
if (!validate_version(major, minor, nver, region, model)) {
|
2023-06-12 11:43:16 +02:00
|
|
|
document.getElementById("result_invalidVersion").style.display = "block";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-14 22:41:01 +02:00
|
|
|
const redirected = [
|
2023-05-24 10:01:03 +02:00
|
|
|
can_soundhax,
|
|
|
|
can_ssloth,
|
|
|
|
can_safecerthax,
|
|
|
|
can_miimine,
|
|
|
|
can_superskaterhax,
|
2023-10-08 21:45:38 +02:00
|
|
|
can_seedminer,
|
|
|
|
can_mset9
|
2023-07-14 22:41:01 +02:00
|
|
|
].some(func => func(major, minor, nver, region, model));
|
2023-05-23 21:50:05 +02:00
|
|
|
if (redirected) return true;
|
|
|
|
|
|
|
|
// if it actually got to this point, there is no exploit available.
|
|
|
|
document.getElementById("result_methodUnavailable").style.display = "block";
|
|
|
|
return false;
|
2023-03-19 13:46:34 +01:00
|
|
|
}
|