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.171
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 /
spring /
watcher /
[ HOME SHELL ]
Name
Size
Permission
Action
listen.rb
1.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : listen.rb
require "spring/watcher" require "spring/watcher/abstract" require "listen" require "listen/version" if defined?(Celluloid) # fork() doesn't preserve threads, so a clean # Celluloid shutdown isn't possible, but we can # reduce the 10 second timeout # There's a patch for Celluloid to avoid this (search for 'fork' in Celluloid # issues) Celluloid.shutdown_timeout = 2 end module Spring module Watcher class Listen < Abstract Spring.watch_method = self attr_reader :listener def start unless @listener @listener = ::Listen.to(*base_directories, latency: latency, &method(:changed)) @listener.start end end def stop if @listener @listener.stop @listener = nil end end def subjects_changed return unless @listener return unless @listener.respond_to?(:directories) return unless @listener.directories.sort != base_directories.sort restart end def watching?(file) files.include?(file) || file.start_with?(*directories) end def changed(modified, added, removed) synchronize do if (modified + added + removed).any? { |f| watching? f } mark_stale end end end def base_directories ([root] + files.reject { |f| f.start_with? "#{root}/" }.map { |f| File.expand_path("#{f}/..") } + directories.reject { |d| d.start_with? "#{root}/" } ).uniq.map { |path| Pathname.new(path) } end end end end
Close