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 /
ruby25 /
lib64 /
ruby /
2.5.0 /
rexml /
dtd /
Delete
Unzip
Name
Size
Permission
Date
Action
attlistdecl.rb
228
B
-rw-r--r--
2021-04-05 17:16
dtd.rb
1.2
KB
-rw-r--r--
2021-04-05 17:16
elementdecl.rb
450
B
-rw-r--r--
2021-04-05 17:16
entitydecl.rb
1.66
KB
-rw-r--r--
2021-04-05 17:16
notationdecl.rb
1.06
KB
-rw-r--r--
2021-04-05 17:16
Save
Rename
# frozen_string_literal: false require "rexml/child" module REXML module DTD class ElementDecl < Child START = "<!ELEMENT" START_RE = /^\s*#{START}/um # PATTERN_RE = /^\s*(#{START}.*?)>/um PATTERN_RE = /^\s*#{START}\s+((?:[:\w][-\.\w]*:)?[-!\*\.\w]*)(.*?)>/ #\s*((((["']).*?\5)|[^\/'">]*)*?)(\/)?>/um, true) def initialize match @name = match[1] @rest = match[2] end end end end