mirror of
https://github.com/lordfriky/web-cfw-loader.git
synced 2025-01-27 23:11:27 +00:00
Update main.js
This commit is contained in:
parent
c6932acf8b
commit
9dce1524cb
15
main.js
15
main.js
@ -105,14 +105,6 @@ async function launchPayload(payload) {
|
|||||||
}, vulnerabilityLength);
|
}, vulnerabilityLength);
|
||||||
}
|
}
|
||||||
|
|
||||||
function hexToString (hex) {
|
|
||||||
var string = '';
|
|
||||||
for (var i = 0; i < hex.length; i += 2) {
|
|
||||||
string += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
|
|
||||||
}
|
|
||||||
return string;
|
|
||||||
}
|
|
||||||
|
|
||||||
document.getElementById("goButton").addEventListener("click", async () => {
|
document.getElementById("goButton").addEventListener("click", async () => {
|
||||||
var debugCheckbox = document.getElementById("shouldDebug");
|
var debugCheckbox = document.getElementById("shouldDebug");
|
||||||
const payloadType = document.forms.mainForm.payload.value;
|
const payloadType = document.forms.mainForm.payload.value;
|
||||||
@ -132,12 +124,7 @@ document.getElementById("goButton").addEventListener("click", async () => {
|
|||||||
logOutput("You're trying to load a payload type that doesn't exist.");
|
logOutput("You're trying to load a payload type that doesn't exist.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var payloadToLog = "";
|
logOutput(payloadToLog.toUpperCase());
|
||||||
for (var i = 0; i < payload.length; i++) {
|
|
||||||
payloadToLog += "0x" + payload[i].toString(16) + ", ";
|
|
||||||
}
|
|
||||||
logOutput(payloadToLog);
|
|
||||||
const storedpayload = payloadToLog;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
logOutput("Requesting access to device...");
|
logOutput("Requesting access to device...");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user