Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
lib /
ruby /
vendor_ruby /
concurrent /
utility /
[ HOME SHELL ]
Name
Size
Permission
Action
at_exit.rb
2.3
KB
-rw-r--r--
engine.rb
1.27
KB
-rw-r--r--
monotonic_time.rb
1.41
KB
-rw-r--r--
native_extension_loader.rb
1.7
KB
-rw-r--r--
native_integer.rb
1.27
KB
-rw-r--r--
processor_counter.rb
6.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : engine.rb
module Concurrent module Utility # @!visibility private module EngineDetector def on_jruby? ruby_engine == 'jruby' end def on_jruby_9000? on_jruby? && ruby_version(:>=, 9, 0, 0, JRUBY_VERSION) end def on_cruby? ruby_engine == 'ruby' end def on_rbx? ruby_engine == 'rbx' end def on_truffle? ruby_engine == 'jruby+truffle' end def on_windows? !(RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/).nil? end def on_osx? !(RbConfig::CONFIG['host_os'] =~ /darwin|mac os/).nil? end def on_linux? !(RbConfig::CONFIG['host_os'] =~ /linux/).nil? end def ruby_engine defined?(RUBY_ENGINE) ? RUBY_ENGINE : 'ruby' end def ruby_version(comparison, major, minor, patch, version = RUBY_VERSION) result = (version.split('.').map(&:to_i) <=> [major, minor, patch]) comparisons = { :== => [0], :>= => [1, 0], :<= => [-1, 0], :> => [1], :< => [-1] } comparisons.fetch(comparison).include? result end end end # @!visibility private extend Utility::EngineDetector end
Close