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 /
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.1
KB
-rw-r--r--
oj.rb
736
B
-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 : nsjsonserialization.rb
framework 'Foundation' require 'multi_json/adapters/ok_json' module MultiJson module Adapters class Nsjsonserialization < MultiJson::Adapters::OkJson ParseError = ::MultiJson::OkJson::Error def load(string, options = {}) data = string.dataUsingEncoding(NSUTF8StringEncoding) object = NSJSONSerialization.JSONObjectWithData(data, :options => NSJSONReadingMutableContainers | NSJSONReadingMutableLeaves, :error => nil) if object object = symbolize_keys(object) if options[:symbolize_keys] object else super(string, options) end end def dump(object, options = {}) pretty = options[:pretty] ? NSJSONWritingPrettyPrinted : 0 object = object.as_json if object.respond_to?(:as_json) if NSJSONSerialization.isValidJSONObject(object) data = NSJSONSerialization.dataWithJSONObject(object, :options => pretty, :error => nil) NSMutableString.alloc.initWithData(data, :encoding => NSUTF8StringEncoding) else super(object, options) end end end end end
Close