Obfuscating
Obfuscating with nodejs
const psu = require("psuobf");
let options = {
"DisableSuperOperators": true,
"MaximumSecurityEnabled": true,
"ControlFlowObfuscation": true,
"ConstantEncryption": true,
"EncryptAllStrings": false,
"DisableAllMacros": false,
"EnhancedOutput": true,
"EnhancedConstantEncryption": true,
"CompressedOutput": false,
"PremiumFormat": true,
"ByteCodeMode": "Arabic"
}
let b = psu.obfuscate("KEY","print(\"I know JS!!!\")",options)
.then(ret => {
console.log(ret)
})
//Currently only supports returning body. Other responses like key used and reqsleft are comming soon
//If all goes well it'll return your obfuscated script if not it will return the reason
Last updated
Was this helpful?