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.130.137
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 /
smjs /
[ HOME SHELL ]
Name
Size
Permission
Action
README
1023
B
-rw-r--r--
google_video.js
624
B
-rw-r--r--
hooks.js
2.11
KB
-rw-r--r--
pornotube.js
899
B
-rw-r--r--
smartprefixes_bookmarks.js
1.23
KB
-rw-r--r--
smartprefixes_classic.js
5.72
KB
-rw-r--r--
smartprefixes_common.js
4.49
KB
-rw-r--r--
youtube.js
1.1
KB
-rw-r--r--
youtube2.js
1019
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hooks.js
/* These are examples for the ELinks SpiderMonkey scripting interface. * Place choice parts in a file named "hooks.js" in your ELinks configuration * directory (~/.elinks). */ elinks.keymaps.main["@"] = function () { elinks.location = elinks.location + "/.."; }; elinks.preformat_html_hooks = new Array(); elinks.preformat_html = function (cached, vs) { for (var i in elinks.preformat_html_hooks) if (!elinks.preformat_html_hooks[i](cached, vs)) return false; return true; }; elinks.goto_url_hooks = new Array(); elinks.goto_url_hook = function (url) { for (var i in elinks.goto_url_hooks){ url = elinks.goto_url_hooks[i](url); if (false === url) return false; } return url; }; elinks.follow_url_hooks = new Array(); elinks.follow_url_hook = function (url) { for (var i in elinks.follow_url_hooks) { url = elinks.follow_url_hooks[i](url); if (false === url) return false; } return url; }; function root_w00t(cached, vs) { cached.content = cached.content.replace(/root/g, "w00t"); return true; }; elinks.preformat_html_hooks.push(root_w00t); function mangle_deb_bugnumbers(cached, vs) { if (!cached.uri.match(/^[a-z0-9]+:\/\/[a-z0-9A-Z.-]+debian\.org/) && !cached.uri.match(/changelog\.Debian/)) return true; var num_re = /([0-9]+)/g; var rewrite_closes_fn = function (str) { return str.replace(num_re, '<a href="http://bugs.debian.org/$1">$1</a>'); } /* Debian Policy Manual 4.4 footnote 16 */ var closes_re = /closes:\s*(?:bug)?\#?\s?\d+(?:,\s*(?:bug)?\#?\s?\d+)*/gi; var new_content = cached.content.replace(closes_re, rewrite_closes_fn); if (cached.type == 'text/plain') { cached.content = '<pre>' + new_content + '</pre>'; vs.plain = "0"; } else { cached.content = new_content; } return true; } elinks.preformat_html_hooks.push(mangle_deb_bugnumbers); function block_pr0n(uri) { if (uri.match(/pr0n/)) { elinks.alert('No pr0n!'); return ""; } return uri; } elinks.follow_url_hooks.push(block_pr0n); function reload() { do_file(elinks.home + 'hooks.js'); } do_file(elinks.home + 'smartprefixes_bookmarks.js'); do_file(elinks.home + 'smartprefixes_classic.js');
Close