Linux server123.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 198.54.126.127 | : 216.73.216.140
Cant Read [ /etc/named.conf ]
?8.4.14
ezdajrnh
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby34 /
share /
ruby /
reline /
key_actor /
[ HOME SHELL ]
Name
Size
Permission
Action
base.rb
712
B
-rw-r--r--
composite.rb
324
B
-rw-r--r--
emacs.rb
7.01
KB
-rw-r--r--
vi_command.rb
6.49
KB
-rw-r--r--
vi_insert.rb
6.6
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : base.rb
class Reline::KeyActor::Base def initialize(mappings = nil) @matching_bytes = {} @key_bindings = {} add_mappings(mappings) if mappings end def add_mappings(mappings) add([27], :ed_ignore) 128.times do |key| func = mappings[key] meta_func = mappings[key | 0b10000000] add([key], func) if func add([27, key], meta_func) if meta_func end end def add(key, func) (1...key.size).each do |size| @matching_bytes[key.take(size)] = true end @key_bindings[key] = func end def matching?(key) @matching_bytes[key] end def get(key) @key_bindings[key] end def clear @matching_bytes.clear @key_bindings.clear end end
Close