Update main.js
parent
969165a779
commit
f8922c89ae
7
main.js
7
main.js
|
@ -110,6 +110,7 @@ document.getElementById("goButton").addEventListener("click", async () => {
|
|||
device = await navigator.usb.requestDevice({ filters: [{ vendorId: 0x0955 }] });
|
||||
|
||||
const payloadType = document.forms.mainForm.payload.value;
|
||||
const shouldDebug = document.forms.mainForm.debug.value;
|
||||
logOutput(`Preparing to launch ${payloadType}...`);
|
||||
|
||||
let payload;
|
||||
|
@ -123,10 +124,14 @@ document.getElementById("goButton").addEventListener("click", async () => {
|
|||
}
|
||||
payload = new Uint8Array(await readFileAsArrayBuffer(file));
|
||||
} else {
|
||||
console.log("how?");
|
||||
logOutput("You're trying to load a payload type that doesn't exist.");
|
||||
return;
|
||||
}
|
||||
|
||||
if(shouldDebug == "shouldDebug") {
|
||||
logOutput(payload);
|
||||
}
|
||||
|
||||
launchPayload(payload);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue