SS • Lua
213 subscribers
209 photos
24 videos
714 files
133 links
- > offline .
Download Telegram
--- Here is a random generator

local hexset = {
'0', '1', '2', '3', '4', '5', '6', '7',
'8','9', 'a', 'b', 'c', 'd', 'e', 'f'
}

function random_hex(length)
math.randomseed(os.time())

if length > 0 then
return random_hex(length - 1) .. hexset[math.random(1, #hexset)]
else
return ""
end
end

print(random_hex(32))

--- Results
3996cb65d001f60c0088149f6bbca490
dec2hex = function(num)

local hexstr = '0123456789ABCDEF'
local s = ''

while num > 0 do
local mod = math.fmod(num, 16)
s = string.sub(hexstr, mod+1, mod+1) .. s
num = math.floor(num / 16)
end
if s == '' then s = '0' end
return s

end

function str2hex(str)
local hex = ''
while #str > 0 do
local hb = dec2hex(string.byte(str, 1, 1))
if #hb < 2 then hb = '0' .. hb end
hex = hex .. hb
str = string.sub(str, 2)
end
return hex
end
function ASCII(hex_string)
local GSM_Base = {
[0] = '@', '£', '$', '¥', 'è', 'é', 'ù', 'ì', 'ò', 'Ç', '\n',
'Ø', 'ø', '\r', 'Å', 'å', 'Δ', '_', 'Φ', 'Γ', 'Λ', 'Ω', 'Π',
'Ψ', 'Σ', 'Θ', 'Ξ', '', 'Æ', 'æ', 'ß', 'É', [36] = '¤',
[64] = '¡', [91] = 'Ä', [92] = 'Ö', [93] = 'Ñ', [94] = 'Ü',
[95] = '§', [96] = '¿', [123] = 'ä', [124] = 'ö', [125] = 'ñ',
[126] = 'ü', [127] = 'à'
}
local GSM_Ext = {
[20] = '^', [40] = '{', [41] = '}', [47] = '\\', [60] = '[',
[61] = '~', [62] = ']', [64] = '|', [101] = '€'
}

local buffer = 0
local buffer_width = 0
local esc = false
local result = {}

for hh in hex_string:gmatch"%x%x" do
buffer = buffer + 2^buffer_width * tonumber(hh, 16)
buffer_width = buffer_width + 8
repeat
local c = buffer % 128
buffer = (buffer - c) / 128
buffer_width = buffer_width - 7
if c == 27 then
esc = true
else
local symbol = esc and GSM_Ext[c] or GSM_Base[c] or string.char(c)
esc = false
table.insert(result, symbol)
end
until buffer_width < 7
end

if buffer_width == 0 and result[#result] == "\r" then
table.remove(result) -- remove padding
end

return table.concat(result)

end
Ori_Sino_.lua
921 B
Test full decode + log 😂
Anti Log Detected and BigLog 15GB

a = os.clock()
s = string.char(255,255):rep(999999)
for i = 1,4321 do
debug.traceback(1000,nil,s)
x = os.clock() - a
if x >= 3 then
print('🌹 Log Succckes')
return
else
end
end
gg.alert("Hello")
s = string.char(255,255):rep(999999) for i = 1,444 do
debug.getinfo(1000,nil,s) end
gg.alert('Hello')


---- BigLog / load 0.1 second 😜
s = os.clock()
v = string.char(255,255,255,255):rep(9999999)
for i = 1,1030 do debug.traceback(2000,nil,v) end
z = os.clock() gg.sleep(1) a = z - s
if a >= 3 then print('🌹 Log Succkes : ',a) return else end
gg.setVisible(false)
if a <= 0.5 or os.clock() > os.clock() then
return gg.alert("⚠️ Restart Script !! ", "") end
if a == 0 or os.clock() - os.clock() then end
gg.alert('Hello Word !!')
Encode Konzlet v4 ( New Fix Error ) !
👍1
KonɀLeΙ͠V4.lua
23.1 KB
Fix Error and Encode ( Fast Load File 90℅ )
SS • Lua
Photo
Full Dec
This media is not supported in your browser
VIEW IN TELEGRAM
SS • Lua
#ELGGDarkEarl{V5.0}.lua
Pero
This media is not supported in your browser
VIEW IN TELEGRAM
Fix = gg.prompt({"Select File To Fix","Remove os.exit"},{"/sdcard/FixTool"},{"file","checkbox"})
if Fix == nil then return end
Lua = io.open(Fix[1],"r"):read("*a")

if Fix[2] then
S = Lua:gsub("exit","time")

io.open(Fix[1].."Fix.lua","w"):write(string.dump(load(S),true)):close()
end



--- Make Code ( Remove os.exit() ) 😆
Ez to Dec
This media is not supported in your browser
VIEW IN TELEGRAM