2020-12-23 23:31:17 +00:00
|
|
|
#include "mainmenu.h"
|
2020-12-23 16:39:22 +00:00
|
|
|
#include "../gfx/gfx.h"
|
|
|
|
#include "../gfx/gfxutils.h"
|
|
|
|
#include "../gfx/menu.h"
|
|
|
|
#include "tools.h"
|
2020-05-01 21:42:49 +01:00
|
|
|
#include "../hid/hid.h"
|
2020-12-23 16:39:22 +00:00
|
|
|
#include "../fs/menus/explorer.h"
|
|
|
|
#include <utils/btn.h>
|
|
|
|
#include <storage/nx_sd.h>
|
2020-12-25 20:16:24 +00:00
|
|
|
#include "tconf.h"
|
2020-12-26 21:24:41 +00:00
|
|
|
#include "../keys/keys.h"
|
2020-12-23 16:39:22 +00:00
|
|
|
|
|
|
|
MenuEntry_t mainMenuEntries[] = {
|
|
|
|
{.R = 255, .G = 255, .B = 255, .skip = 1, .name = "-- Main Menu --"},
|
|
|
|
{.G = 255, .name = "SD:/"},
|
|
|
|
{.B = 255, .G = 255, .name = "Test Controllers"},
|
2020-12-25 20:16:24 +00:00
|
|
|
{.R = 255, .name = "Cause an exception"},
|
2020-12-26 21:24:41 +00:00
|
|
|
{.optionUnion = COLORTORGB(COLOR_ORANGE), .name = "View dumped keys"},
|
2020-12-23 16:39:22 +00:00
|
|
|
{.R = 255, .name = "Reboot to payload"}
|
|
|
|
};
|
2020-02-11 16:18:29 +00:00
|
|
|
|
2020-12-23 16:39:22 +00:00
|
|
|
void HandleSD(){
|
|
|
|
gfx_clearscreen();
|
2020-12-25 20:16:24 +00:00
|
|
|
TConf.curExplorerLoc = LOC_SD;
|
2020-12-23 16:39:22 +00:00
|
|
|
if (!sd_mount()){
|
|
|
|
gfx_printf("Sd is not mounted!");
|
|
|
|
hidWait();
|
2020-02-11 16:18:29 +00:00
|
|
|
}
|
2020-12-23 16:39:22 +00:00
|
|
|
else
|
|
|
|
FileExplorer("sd:/");
|
2020-02-11 16:18:29 +00:00
|
|
|
}
|
|
|
|
|
2020-12-25 20:16:24 +00:00
|
|
|
void CrashTE(){
|
|
|
|
gfx_printf("%d", *((int*)0));
|
|
|
|
}
|
|
|
|
|
2020-12-26 21:24:41 +00:00
|
|
|
void ViewKeys(){
|
|
|
|
gfx_clearscreen();
|
|
|
|
for (int i = 0; i < 3; i++){
|
|
|
|
gfx_printf("\nBis key 0%d: ", i);
|
|
|
|
PrintKey(dumpedKeys.bis_key[i], AES_128_KEY_SIZE * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx_printf("\nMaster key 0: ");
|
|
|
|
PrintKey(dumpedKeys.master_key, AES_128_KEY_SIZE);
|
|
|
|
gfx_printf("\nHeader key: ");
|
|
|
|
PrintKey(dumpedKeys.header_key, AES_128_KEY_SIZE * 2);
|
|
|
|
gfx_printf("\nSave mac key: ");
|
|
|
|
PrintKey(dumpedKeys.save_mac_key, AES_128_KEY_SIZE);
|
|
|
|
|
|
|
|
hidWait();
|
|
|
|
}
|
|
|
|
|
2020-12-23 16:39:22 +00:00
|
|
|
menuPaths mainMenuPaths[] = {
|
|
|
|
NULL,
|
|
|
|
HandleSD,
|
|
|
|
TestControllers,
|
2020-12-25 20:16:24 +00:00
|
|
|
CrashTE,
|
2020-12-26 21:24:41 +00:00
|
|
|
ViewKeys,
|
2020-12-23 16:39:22 +00:00
|
|
|
RebootToPayload
|
2020-02-11 16:18:29 +00:00
|
|
|
};
|
|
|
|
|
2020-12-23 16:39:22 +00:00
|
|
|
void EnterMainMenu(){
|
2019-11-21 15:02:45 +00:00
|
|
|
while (1){
|
2020-12-26 21:24:41 +00:00
|
|
|
mainMenuEntries[4].hide = !TConf.keysDumped;
|
|
|
|
FunctionMenuHandler(mainMenuEntries, ARR_LEN(mainMenuEntries), mainMenuPaths, ALWAYSREDRAW);
|
2019-11-21 15:02:45 +00:00
|
|
|
}
|
2020-12-23 16:39:22 +00:00
|
|
|
}
|
|
|
|
|