2018-05-19 10:53:33 +00:00
<!doctype html>
< html >
< head >
< meta charset = "utf-8" >
< link rel = "stylesheet" type = "text/css" href = "style.css" / >
< link href = "favicon.png" rel = "icon" type = "image/x-icon" / >
< title > Switch Payload Loader v1.2< / title >
< / head >
< body >
< div id = "title" >
< h1 > Nintendo Switch Payload Loader< / h1 >
2018-05-19 10:56:35 +00:00
< p > Fusee Launcher portato a JavaScript usando WebUSB.< / p >
2018-05-19 10:53:33 +00:00
< div id = "disclaimer" >
< p >
2018-05-19 11:19:32 +00:00
Il source puo essere trovato a < a href = "https://github.com/ElijahZAwesome/web-cfw-loader/" > GitHub< / a > (o premendo guarda source, ma non c'è backend!).
2018-05-19 10:56:35 +00:00
Portato da < a href = "https://github.com/reswitched/fusee-launcher" > fusee-launcher< / a > .
Grazie tante a ktemkin e ReSwitched, e non dimentichiamoci < br > < a href = "https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html" > Atlas44 e il suo sito< / a > come punto di inizio per questo.
2018-05-19 10:53:33 +00:00
< / p >
< / div >
< / div >
< br >
2018-05-19 11:19:32 +00:00
< button class = "btn" id = "instructionsbutton" onclick = "openInstructions();" > Istruzioni< / button >
2018-05-19 10:53:33 +00:00
< button class = "btn" id = "infobutton" onclick = "openInfo();" > Info< / button >
< div id = "infodiv" > < / div >
< div >
2018-05-19 11:19:32 +00:00
< h1 > Carica un payload:< / h1 >
2018-05-19 10:53:33 +00:00
< div >
< form id = "mainForm" >
< p >
< input type = "radio" name = "payload" id = "instaboot" value = "instaboot" checked >
2018-05-19 11:19:32 +00:00
< label for = "instaboot" > Avvia istantaneamente CFW (5.0.x)< / label >
2018-05-19 10:53:33 +00:00
< / p >
< p >
< input type = "radio" name = "payload" id = "hekate v5" value = "hekate v5" >
2018-05-19 11:19:32 +00:00
< label for = "hekate v5" > Hekate per Switch su 5.0.X< / label >
2018-05-19 10:53:33 +00:00
< / p >
< p >
< input type = "radio" name = "payload" id = "hekate v4" value = "hekate v4" >
2018-05-19 11:19:32 +00:00
< label for = "hekate v4" > Hekate per Switch su 5.0.X< / label >
2018-05-19 10:53:33 +00:00
< / p >
< p >
< input type = "radio" name = "payload" id = "fusee" value = "fusee" >
2018-05-19 11:19:32 +00:00
< label for = "fusee" > (Re)Switched payload di test (fusee)< / label >
2018-05-19 10:53:33 +00:00
< / p >
< p >
< input type = "radio" name = "payload" id = "uploaded" value = "uploaded" >
2018-05-19 11:19:32 +00:00
< label for = "uploaded" > Carica payload:< br > < / label >
2018-05-19 10:53:33 +00:00
< input type = "file" id = "payloadUpload" accept = ".bin" >
< / p >
< p >
< input type = "checkbox" name = "shouldDebug" id = "shouldDebug" >
2018-05-19 11:19:32 +00:00
< label for = "shouldDebug" > Ottieni byte array del payload (no exploit)< / label >
2018-05-19 10:53:33 +00:00
< / p >
< / form >
2018-05-19 11:19:32 +00:00
< button class = "btn" id = "goButton" > Avvia Payload!< / button >
2018-05-19 10:53:33 +00:00
< / div >
< / div >
< h3 > Log:< / h3 >
< div id = "output" > < / div > < br >
2018-05-19 11:19:32 +00:00
< button class = "btn" id = "clearlogsbutton" onclick = "clearLog();" > Pulisci logs< / button >
2018-05-19 10:53:33 +00:00
< script src = "./payloads.js" > < / script >
< script src = "./main.js" > < / script >
< / body >
< /html
>