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.10
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 /
oj /
[ HOME SHELL ]
Name
Size
Permission
Action
active_support_helper.rb
1.02
KB
-rw-r--r--
bag.rb
3.35
KB
-rw-r--r--
easy_hash.rb
1.92
KB
-rw-r--r--
error.rb
630
B
-rw-r--r--
json.rb
5.52
KB
-rw-r--r--
mimic.rb
7.35
KB
-rw-r--r--
saj.rb
1.5
KB
-rw-r--r--
schandler.rb
3.87
KB
-rw-r--r--
state.rb
4.21
KB
-rw-r--r--
version.rb
71
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : saj.rb
module Oj # A SAX style parse handler for JSON hence the acronym SAJ for Simple API for # JSON. The Oj::Saj handler class should be subclassed and then used with the # Oj::Saj key_parse() method. The Saj methods will then be called as the file # is parsed. # # @example # # require 'oj' # # class MySaj < ::Oj::Saj # def initialize() # @hash_cnt = 0 # end # # def hash_start(key) # @hash_cnt += 1 # end # end # # cnt = MySaj.new() # File.open('any.json', 'r') do |f| # Oj.saj_parse(cnt, f) # end # # To make the desired methods active while parsing the desired method should # be made public in the subclasses. If the methods remain private they will # not be called during parsing. # # def hash_start(key); end # def hash_end(key); end # def array_start(key); end # def array_end(key); end # def add_value(value, key); end # def error(message, line, column); end # class Saj # Create a new instance of the Saj handler class. def initialize() end # To make the desired methods active while parsing the desired method should # be made public in the subclasses. If the methods remain private they will # not be called during parsing. private def hash_start(key) end def hash_end(key) end def array_start(key) end def array_end(key) end def add_value(value, key) end def error(message, line, column) end end # Saj end # Oj
Close