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 /
yaml /
[ HOME SHELL ]
Name
Size
Permission
Action
baseemitter.rb
5.62
KB
-rw-r--r--
basenode.rb
5.98
KB
-rw-r--r--
constants.rb
1.16
KB
-rw-r--r--
dbm.rb
2.24
KB
-rw-r--r--
encoding.rb
605
B
-rw-r--r--
error.rb
1.04
KB
-rw-r--r--
loader.rb
296
B
-rw-r--r--
rubytypes.rb
12.73
KB
-rw-r--r--
store.rb
703
B
-rw-r--r--
stream.rb
700
B
-rw-r--r--
stringio.rb
1.92
KB
-rw-r--r--
syck.rb
271
B
-rw-r--r--
tag.rb
3.08
KB
-rw-r--r--
types.rb
4.88
KB
-rw-r--r--
yamlnode.rb
1.19
KB
-rw-r--r--
ypath.rb
1.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : yamlnode.rb
# # YAML::YamlNode class # require 'yaml/basenode' module YAML # # YAML Generic Model container # class YamlNode include BaseNode attr_accessor :kind, :type_id, :value, :anchor def initialize( t, v ) @type_id = t if Hash === v @kind = 'map' @value = {} v.each { |k,v| @value[ k.transform ] = [ k, v ] } elsif Array === v @kind = 'seq' @value = v elsif String === v @kind = 'scalar' @value = v end end # # Transform this node fully into a native type # def transform t = nil if @value.is_a? Hash t = {} @value.each { |k,v| t[ k ] = v[1].transform } elsif @value.is_a? Array t = [] @value.each { |v| t.push v.transform } else t = @value end YAML.transfer_method( @type_id, t ) end end end
Close