Linux server123.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 198.54.126.127 | : 216.73.216.107
Cant Read [ /etc/named.conf ]
?8.4.14
ezdajrnh
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
Hash /
[ HOME SHELL ]
Name
Size
Permission
Action
%3d%3d-i.yaml
833
B
-rw-r--r--
%5b%5d%3d-i.yaml
744
B
-rw-r--r--
%5b%5d-c.yaml
818
B
-rw-r--r--
%5b%5d-i.yaml
567
B
-rw-r--r--
cdesc-Hash.yaml
4.2
KB
-rw-r--r--
clear-i.yaml
470
B
-rw-r--r--
default%3d-i.yaml
878
B
-rw-r--r--
default-i.yaml
998
B
-rw-r--r--
default_proc-i.yaml
633
B
-rw-r--r--
delete-i.yaml
884
B
-rw-r--r--
delete_if-i.yaml
571
B
-rw-r--r--
each-i.yaml
882
B
-rw-r--r--
each_key-i.yaml
576
B
-rw-r--r--
each_pair-i.yaml
649
B
-rw-r--r--
each_value-i.yaml
596
B
-rw-r--r--
empty%3f-i.yaml
370
B
-rw-r--r--
eql%3f-i.yaml
330
B
-rw-r--r--
fetch-i.yaml
1.38
KB
-rw-r--r--
has_key%3f-i.yaml
623
B
-rw-r--r--
has_value%3f-i.yaml
554
B
-rw-r--r--
hash-i.yaml
359
B
-rw-r--r--
include%3f-i.yaml
623
B
-rw-r--r--
index-i.yaml
471
B
-rw-r--r--
indexes-i.yaml
319
B
-rw-r--r--
indices-i.yaml
319
B
-rw-r--r--
initialize_copy-i.yaml
558
B
-rw-r--r--
inspect-i.yaml
273
B
-rw-r--r--
invert-i.yaml
602
B
-rw-r--r--
key%3f-i.yaml
615
B
-rw-r--r--
keys-i.yaml
544
B
-rw-r--r--
length-i.yaml
557
B
-rw-r--r--
member%3f-i.yaml
621
B
-rw-r--r--
merge%21-i.yaml
1.27
KB
-rw-r--r--
merge-i.yaml
852
B
-rw-r--r--
new-c.yaml
1.66
KB
-rw-r--r--
pretty_print-i.yaml
177
B
-rw-r--r--
pretty_print_cycle-i.yaml
189
B
-rw-r--r--
rehash-i.yaml
886
B
-rw-r--r--
reject%21-i.yaml
344
B
-rw-r--r--
reject-i.yaml
387
B
-rw-r--r--
replace-i.yaml
542
B
-rw-r--r--
select-i.yaml
660
B
-rw-r--r--
shift-i.yaml
627
B
-rw-r--r--
size-i.yaml
553
B
-rw-r--r--
sort-i.yaml
747
B
-rw-r--r--
store-i.yaml
746
B
-rw-r--r--
to_a-i.yaml
550
B
-rw-r--r--
to_hash-i.yaml
248
B
-rw-r--r--
to_s-i.yaml
635
B
-rw-r--r--
to_yaml-i.yaml
177
B
-rw-r--r--
update-i.yaml
1.27
KB
-rw-r--r--
value%3f-i.yaml
546
B
-rw-r--r--
values-i.yaml
485
B
-rw-r--r--
values_at-i.yaml
620
B
-rw-r--r--
yaml_initialize-i.yaml
192
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : new-c.yaml
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Returns a new, empty hash. If this hash is subsequently accessed by a key that doesn't correspond to a hash entry, the value returned depends on the style of <tt>new</tt> used to create the hash. In the first form, the access returns <tt>nil</tt>. If <em>obj</em> is specified, this single object will be used for all <em>default values</em>. If a block is specified, it will be called with the hash object and the key, and should return the default value. It is the block's responsibility to store the value in the hash if required. - !ruby/struct:SM::Flow::VERB body: " h = Hash.new("Go Fish")\n h["a"] = 100\n h["b"] = 200\n h["a"] #=> 100\n h["c"] #=> "Go Fish"\n # The following alters the single default object\n h["c"].upcase! #=> "GO FISH"\n h["d"] #=> "GO FISH"\n h.keys #=> ["a", "b"]\n\n # While this creates a new default object each time\n h = Hash.new { |hash, key| hash[key] = "Go Fish: #{key}" }\n h["c"] #=> "Go Fish: c"\n h["c"].upcase! #=> "GO FISH: C"\n h["d"] #=> "Go Fish: d"\n h.keys #=> ["c", "d"]\n" full_name: Hash::new is_singleton: true name: new params: | Hash.new => hash Hash.new(obj) => aHash Hash.new {|hash, key| block } => aHash visibility: public
Close