Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
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
/
usr /
lib /
ruby /
vendor_ruby /
execjs /
[ HOME SHELL ]
Name
Size
Permission
Action
support
[ DIR ]
drwxr-xr-x
disabled_runtime.rb
447
B
-rw-r--r--
duktape_runtime.rb
1.67
KB
-rw-r--r--
encoding.rb
760
B
-rw-r--r--
external_runtime.rb
6.58
KB
-rw-r--r--
mini_racer_runtime.rb
2.33
KB
-rw-r--r--
module.rb
955
B
-rw-r--r--
ruby_rhino_runtime.rb
2.39
KB
-rw-r--r--
runtime.rb
2.02
KB
-rw-r--r--
runtimes.rb
2.62
KB
-rw-r--r--
version.rb
38
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : encoding.rb
module ExecJS # Encodes strings as UTF-8 module Encoding if RUBY_ENGINE == 'jruby' || RUBY_ENGINE == 'rbx' # workaround for jruby bug http://jira.codehaus.org/browse/JRUBY-6588 # workaround for rbx bug https://github.com/rubinius/rubinius/issues/1729 def encode(string) if string.encoding.name == 'ASCII-8BIT' data = string.dup data.force_encoding('UTF-8') unless data.valid_encoding? raise ::Encoding::UndefinedConversionError, "Could not encode ASCII-8BIT data #{string.dump} as UTF-8" end else data = string.encode('UTF-8') end data end else def encode(string) string.encode('UTF-8') end end end end
Close