-- This Script is Part of the Prometheus Obfuscator by levno-710 -- -- randomStrings.lua -- -- This Script provides a library for generating random strings local Ast = require("prometheus.ast") local utils = require("prometheus.util") local charset = utils.chararray("qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890") local function randomString(wordsOrLen) if type(wordsOrLen) == "table" then return wordsOrLen[math.random(1, #wordsOrLen)]; end wordsOrLen = wordsOrLen or math.random(2, 15); if wordsOrLen > 0 then return randomString(wordsOrLen - 1) .. charset[math.random(1, #charset)] else return "" end end local function randomStringNode(wordsOrLen) return Ast.StringExpression(randomString(wordsOrLen)) end return { randomString = randomString, randomStringNode = randomStringNode, }