Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.138
676 Domain
5.6.40
omxrelocation
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
/
opt /
imunify360-webshield /
lualib /
resty /
[ HOME SHELL ]
Name
Size
Permission
Action
core
[ DIR ]
drwxr-xr-x
dns
[ DIR ]
drwxr-xr-x
limit
[ DIR ]
drwxr-xr-x
lrucache
[ DIR ]
drwxr-xr-x
template
[ DIR ]
drwxr-xr-x
upstream
[ DIR ]
drwxr-xr-x
websocket
[ DIR ]
drwxr-xr-x
aes.lua
9.62
KB
-rw-r--r--
cookie.lua
5.55
KB
-rw-r--r--
core.lua
710
B
-rw-r--r--
http.lua
28.99
KB
-rw-r--r--
http_headers.lua
1.12
KB
-rw-r--r--
lock.lua
4.58
KB
-rw-r--r--
lrucache.lua
6.95
KB
-rw-r--r--
md5.lua
1.19
KB
-rw-r--r--
random.lua
672
B
-rw-r--r--
sha.lua
236
B
-rw-r--r--
sha1.lua
1.16
KB
-rw-r--r--
sha224.lua
1.02
KB
-rw-r--r--
sha256.lua
1.19
KB
-rw-r--r--
sha384.lua
1.02
KB
-rw-r--r--
sha512.lua
1.33
KB
-rw-r--r--
shell.lua
4.88
KB
-rw-r--r--
signal.lua
3.12
KB
-rwxr-xr-x
string.lua
887
B
-rw-r--r--
template.lua
22.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : http_headers.lua
local rawget, rawset, setmetatable = rawget, rawset, setmetatable local str_lower = string.lower local _M = { _VERSION = '0.12', } -- Returns an empty headers table with internalised case normalisation. function _M.new() local mt = { normalised = {}, } mt.__index = function(t, k) return rawget(t, mt.normalised[str_lower(k)]) end mt.__newindex = function(t, k, v) local k_normalised = str_lower(k) -- First time seeing this header field? if not mt.normalised[k_normalised] then -- Create a lowercased entry in the metatable proxy, with the value -- of the given field case mt.normalised[k_normalised] = k -- Set the header using the given field case rawset(t, k, v) else -- We're being updated just with a different field case. Use the -- normalised metatable proxy to give us the original key case, and -- perorm a rawset() to update the value. rawset(t, mt.normalised[k_normalised], v) end end return setmetatable({}, mt) end return _M
Close