Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
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
756
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 = {}) fail self::ParseError if blank?(string) string = string.read if string.respond_to?(:read) 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