From 5f4a020e98b9b10c8582d2c465c535d5c0d1023d Mon Sep 17 00:00:00 2001 From: lily Date: Sun, 23 Mar 2025 21:27:49 -0700 Subject: [PATCH] skater: unstub --- docs/installing-boot9strap-(super-skaterhax).md | 8 -------- docs/public/assets/js/selecting.js | 16 ++++++++++++++-- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/docs/installing-boot9strap-(super-skaterhax).md b/docs/installing-boot9strap-(super-skaterhax).md index 70cc73e3f8..3ae564e241 100644 --- a/docs/installing-boot9strap-(super-skaterhax).md +++ b/docs/installing-boot9strap-(super-skaterhax).md @@ -8,14 +8,6 @@ head: [ # Installing boot9strap (super-skaterhax) -::: danger - -# This method is currently **not working** due to server-side SSL certificate changes. The timeline for a fix is unknown. In the meantime, follow [Installing boot9strap (MSET9)](installing-boot9strap-(mset9)) instead. - -[![distraction so that people don't look at the rest of the page](/images/distraction.gif)](installing-boot9strap-(mset9)) - -::: - ::: details Technical Details (optional) For technical details on the exploits that you will be using on this page, see [here](https://github.com/zoogie/super-skaterhax). diff --git a/docs/public/assets/js/selecting.js b/docs/public/assets/js/selecting.js index 3fc4d58014..6d0d5f76fe 100644 --- a/docs/public/assets/js/selecting.js +++ b/docs/public/assets/js/selecting.js @@ -87,12 +87,24 @@ function can_safecerthax(major, minor, native, region, model) { return false; } -// super-skaterhax (stubbed due to cert changes) +// super-skaterhax // N3DS only // EUR/JPN/USA: 11.15-11.17 // KOR: 11.15-11.16 only, KOR does not have 11.17 // CHN/TWN has no N3DS function can_superskaterhax(major, minor, native, region, model) { + let do_redirect = false; + // N3DS only + if(model == DEVICE_N3DS) { + if (major == 11) { + if (minor >= 15) do_redirect = true; + } + } + + if (do_redirect) { + window.location.href = "installing-boot9strap-(super-skaterhax)"; + return true; + } return false; } @@ -130,7 +142,7 @@ function can_mset9(major, minor, native, region, model) { - 11.4 - 11.14 - All regions - O3DS only - - super-skaterhax (stubbed) + - super-skaterhax - 11.15 - 11.17 - USA / EUR / JPN / KOR - N3DS only