DarkRP_Encrypt
Some cheat can dump client slide script and reverse engineer to do something to your server.
Last updated

Some cheat can dump client slide script and reverse engineer to do something to your server.
Last updated
let elKey = "g4dHxF7MQLDeSfGN"; // https://passwordsgenerator.net/
let sv_projectName = "Hello World"; // Wont allow other server name to run script
// https://cryptotools.net/rsagen
let rsaKey = `-----BEGIN PUBLIC KEY-----
MIGeMA0GCSqGSIb3DQEBAQUAA4GMADCBiAKBgGL5iOvcjnIO9cUc7r7Afs/vZJ1d
UKJCT1v7XLIR4Dm9TLUroTSP1Slzi9yravq+dL1bsGH+bWXhDrlCN1ACi2IhxJA8
ki8B7iNvra+ZGoU2c0M59NqaZFfC5nCX5zgCld/0M//WZ58oXazcdih/fug1VPW3
e/zz2Eoh+oFzZ3+hAgMBAAE=
-----END PUBLIC KEY-----`
// List of excluding to encryption of .lua files
const excludeList_LUA = [
"config/", // Define as path
"locales/",
"config.lua", // Define as file name
"fxmanifest.lua",
];
// List of excluding to encryption of .js files
const excludeList_JS = [
"utk_render/", // Define as path
"module/",
"config.js", // Define as file name
];setr sv_projectName "Hello World"
setr elKey "g4dHxF7MQLDeSfGN"