2018-04-27 22:54:46 +00:00
<!doctype html>
< html >
< head >
< meta charset = "utf-8" >
2018-05-17 19:06:27 +00:00
< link rel = "stylesheet" type = "text/css" href = "style.css" / >
2018-05-17 21:38:07 +00:00
< link href = "favicon.png" rel = "icon" type = "image/x-icon" / >
2018-05-21 03:05:48 +00:00
< title > Switch Payload Loader v1.3< / title >
2018-05-20 05:39:19 +00:00
<!-- JQuery: needed for some Bootstrap Components -->
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" > < / script >
<!-- Bootstrap 3 framework -->
<!-- Latest compiled and minified CSS -->
< link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity = "sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin = "anonymous" >
<!-- Optional theme -->
< link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity = "sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin = "anonymous" >
<!-- Latest compiled and minified JavaScript -->
< script src = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity = "sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin = "anonymous" > < / script >
2018-04-27 22:54:46 +00:00
< / head >
2018-05-21 17:53:56 +00:00
< body class = "container-fluid" id = "pageBody" >
2018-05-20 05:39:19 +00:00
< div class = "row" id = "title" >
2018-05-18 01:13:27 +00:00
< h1 > Nintendo Switch Payload Loader< / h1 >
2018-05-20 05:39:19 +00:00
< h4 > Fusee Launcher ported to JavaScript using WebUSB.< / h4 >
2018-05-17 19:11:43 +00:00
< / div >
2018-05-20 05:39:19 +00:00
< div class = "row margin-top-md" >
< div class = "col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3" >
< div class = "btn-group" role = "group" aria-label = "..." >
< a class = "btn btn-info disabled" href = "#" > English< / a >
< a class = "btn btn-info" href = "./it_IT/index.html" > Italiano< / a >
< a class = "btn btn-info" href = "./pt_BR/index.html" > Português< / a >
2018-05-21 19:53:35 +00:00
< a class = "btn btn-info" href = "./de_DE/index.html" > Deutsch< / a >
2018-05-20 05:39:19 +00:00
< / div >
< / div >
< / div >
< div class = "row margin-top-md" id = "infodiv" >
< div class = "col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3" >
2018-05-21 03:38:41 +00:00
< div class = "alert alert-danger" role = "alert" >
< p > For some reason, uploaded payloads are not working. I'm currently trying to fix this.< / p >
< / div >
2018-05-20 05:39:19 +00:00
< div class = "alert alert-danger" role = "alert" >
< p > This is moderately tested. Although no issues have been discovered, I'm not responsible if anything goes wrong!< / p >
< / div >
< div class = "alert alert-warning alert-dismissible" role = "alert" >
< button type = "button" class = "close" data-dismiss = "alert" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< p > This does NOT work on Windows due to a limitation in the Chrome implementation of WebUSB (and probably other reasons!)< / p >
< / div >
< div class = "alert alert-warning alert-dismissible" role = "alert" >
< button type = "button" class = "close" data-dismiss = "alert" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< p > This does NOT currently work on any browser but Chrome, because they don't implement WebUSB.< / p >
< / div >
< div class = "alert alert-warning alert-dismissible" role = "alert" >
< button type = "button" class = "close" data-dismiss = "alert" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
2018-05-21 17:17:48 +00:00
< p > On Linux, you might get an 'Access Denied' or 'No Compatible Device' error on the Connect dialog! If you do, you can try creating a file at < code > /etc/udev/rules.d/50-switch.rules< / code > With the following contents:< br > < code > SUBSYSTEM==\"usb\", ATTR{idVendor}==\"0955\", MODE=\"0664\", GROUP=\"plugdev\"< / code > < / p >
2018-05-20 05:39:19 +00:00
< / div >
< div class = "alert alert-warning alert-dismissible" role = "alert" >
< button type = "button" class = "close" data-dismiss = "alert" aria-label = "Close" > < span aria-hidden = "true" > × < / span > < / button >
< p > This has been tested and appears to work on Linux, OSX, Android (unrooted) and Chromebooks. Your mileage may vary.< / p >
< / div >
< div class = "alert alert-info" role = "alert" >
2018-05-21 18:36:24 +00:00
< p > < strong > Instructions:< / strong > < / p >
2018-05-20 05:39:19 +00:00
< ul >
< li > Put the Switch in RCM, and connect it to your device.< / li >
< li > Select either the example payload, or upload one.< / li >
2018-05-21 17:10:50 +00:00
< li > Press 'Deliver Payload!'< / li >
2018-05-21 17:17:48 +00:00
< li > On the consent screen that appears, select 'APX' and hit 'Connect'.< / li >
2018-05-20 05:39:19 +00:00
< li > If all goes well, the payload will launch!< / li >
< / ul >
< / div >
2018-05-21 17:17:48 +00:00
2018-05-20 05:39:19 +00:00
< / div >
2018-05-18 04:46:02 +00:00
< / div >
2018-05-20 05:39:19 +00:00
< div class = "row" >
2018-05-21 18:31:13 +00:00
< div class = "col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3" >
2018-05-20 05:39:19 +00:00
< h1 > Setup Payload Delivery< / h1 >
< form id = "mainForm" >
< div class = "row" >
< div class = "col-xs-6" >
< h4 > Select Payload:< / h4 >
< / div >
< div class = "col-xs-6" >
< select class = "pull-right" id = "payloadSelect" onchange = "onSelectChange()" >
< option value = "instaboot" > Instantly boot CFW (5.0.x)< / option >
< option value = "hekate v5" > Hekate for 5.0.x Switches< / option >
< option value = "hekate v4" > Hekate for 4.0.x Switches< / option >
< option value = "fusee" > (Re)Switched test payload (fusee)< / option >
< option value = "uploaded" > Upload payload< / option >
< / select >
< / div >
< / div >
2018-04-27 22:54:46 +00:00
2018-05-20 05:39:19 +00:00
< div class = "row" id = "uploadContainer" style = "display: none" >
2018-05-21 17:27:30 +00:00
< div class = "col-xs-12" >
2018-05-20 05:39:19 +00:00
< input style = "float: right" type = "file" id = "payloadUpload" accept = ".bin" / >
< / div >
< / div >
< div class = "row divider-line" > < / div >
< div class = "row margin-top-md" >
< div class = "col-xs-10" >
< h4 > Get payload byte array (don't sploit)< / h4 >
< / div >
< div class = "col-xs-2" >
< input class = "pull-right" type = "checkbox" name = "shouldDebug" id = "shouldDebug" >
< / div >
< / div >
< div class = "row divider-line" > < / div >
< / form >
2018-05-17 22:54:16 +00:00
2018-05-20 05:39:19 +00:00
< div class = "row margin-top-md" >
2018-05-21 18:31:13 +00:00
< div class = "col-xs-6 col-xs-offset-6 col-md-4 col-md-offset-8" >
< button class = "btn btn-primary btn-lg btn-block" id = "goButton" > Deliver Payload!< / button >
2018-05-20 05:39:19 +00:00
< / div >
< / div >
< / div >
2018-04-27 22:54:46 +00:00
< / div >
2018-05-20 05:39:19 +00:00
< div class = "row" >
2018-05-21 18:31:13 +00:00
< div class = "col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3" >
2018-05-20 05:39:19 +00:00
< h3 > Log:< / h3 >
< div id = "output" > < / div >
< button class = "btn btn-primary pull-right margin-top-md" id = "clearlogsbutton" onclick = "clearLog();" > Clear Logs< / button > < br > < br >
< / div >
2018-05-17 22:54:16 +00:00
< / div >
2018-04-27 22:54:46 +00:00
2018-05-19 10:01:17 +00:00
< script src = "./payloads.js" > < / script >
2018-04-27 22:54:46 +00:00
< script src = "./main.js" > < / script >
< / body >
2018-05-20 05:39:19 +00:00
< div class = "row margin-top-md" id = "page-footer" >
< div class = "col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3" >
< div id = "disclaimer" >
< p > Source can be found on < a href = "https://github.com/ElijahZAwesome/web-cfw-loader/" > GitHub< / a > (or by hitting view source, there is no backend!).< / p >
< p > Ported from < a href = "https://github.com/reswitched/fusee-launcher" > fusee-launcher< / a > .< / p >
< p > Thanks to ktemkin and ReSwitched, as well as < br > < a href = "https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html" > Atlas44 and his website< / a > as a beginning point for this one. < / p >
2018-05-21 19:53:35 +00:00
< p > Lastly, thanks to < a href = "https://github.com/falquinho" > falquinho< / a > for the new bootstrap layout and portuguese translation, < a href = "https://github.com/Filo97" > Filo97< / a > for the italian translation, and < a href = "https://github.com/tumGER" > tumGER< / a > for his german translation.< / p >
2018-05-20 05:39:19 +00:00
< / div >
< / div >
< / div >
< / html >