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 : at_exit.rb
require 'logger' require 'concurrent/synchronization' module Concurrent # Provides ability to add and remove handlers to be run at `Kernel#at_exit`, order is undefined. # Each handler is executed at most once. # # @!visibility private class AtExitImplementation < Synchronization::LockableObject include Logger::Severity def initialize(*args) super() synchronize { ns_initialize(*args) } end # Add a handler to be run at `Kernel#at_exit` # @param [Object] handler_id optionally provide an id, if allready present, handler is replaced # @yield the handler # @return id of the handler def add(handler_id = nil, &handler) id = handler_id || handler.object_id synchronize { @handlers[id] = handler } id end # Delete a handler by handler_id # @return [true, false] def delete(handler_id) !!synchronize { @handlers.delete handler_id } end # Is handler with handler_id rpesent? # @return [true, false] def handler?(handler_id) synchronize { @handlers.key? handler_id } end # @return copy of the handlers def handlers synchronize { @handlers }.clone end # install `Kernel#at_exit` callback to execute added handlers def install synchronize do @installed ||= begin at_exit { runner } true end self end end # Will it run during `Kernel#at_exit` def enabled? synchronize { @enabled } end # Configure if it runs during `Kernel#at_exit` def enabled=(value) synchronize { @enabled = value } end # run the handlers manually # @return ids of the handlers def run handlers, _ = synchronize { handlers, @handlers = @handlers, {} } handlers.each do |_, handler| begin handler.call rescue => error Concurrent.global_logger.call(ERROR, error) end end handlers.keys end private def ns_initialize(enabled = true) @handlers = {} @enabled = enabled end def runner run if synchronize { @enabled } end end private_constant :AtExitImplementation # @see AtExitImplementation # @!visibility private AtExit = AtExitImplementation.new.install end
Close