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.69.6.245
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 : babelfish.lua
function babelfish (url) local from, to, rest local lang_pair local param local lang2code = { ["chinese-simp"] = 'zh', ["chinese-simple"] = 'zh', ["chinese-simplified"] = 'zh', ["chinese-trad"] = 'zt', ["chinese-traditional"] = 'zt', ["dutch"] = 'nl', ["nederlands"] = 'nl', ["Nederlands"] = 'nl', ["german"] = 'de', ["deutsch"] = 'de', ["Deutsch"] = 'de', ["english"] = 'en', ["french"] = 'fr', ["fran\231ais"] = 'fr', ["greek"] = 'el', ["italian"] = 'it', ["italiano"] = 'it', ["japanese"] = 'ja', ["korean"] = 'ko', ["portuguese"] = 'pt', ["portugu\234s"] = 'pt', ["russian"] = 'ru', ["spanish"] = 'es', ["espanol"] = 'es', ["espa\241ol"] = 'es', } _,_,from,to,rest = string.find(url, '^bb%s*([^%s]+)[%s]+([^%s]+)[%s]*(.*)') if not rest then return url,nil end from = lang2code[from] or from to = lang2code[to] or to lang_pair = from..'_'..to if string.find(rest, ':[^%s]') then url = "http://babelfish.altavista.com/babelfish/urltrurl" .."?url="..escape(rest) .."&lp="..lang_pair else url = "http://babelfish.altavista.com/babelfish/tr" .."?trtext="..escape(rest) .."&lp="..lang_pair end return url,true end table.insert(goto_url_hooks, babelfish)
Close