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 /
mysql2 /
[ HOME SHELL ]
Name
Size
Permission
Action
client.rb
6.07
KB
-rw-r--r--
console.rb
121
B
-rw-r--r--
em.rb
1.1
KB
-rw-r--r--
error.rb
3.7
KB
-rw-r--r--
field.rb
53
B
-rw-r--r--
result.rb
93
B
-rw-r--r--
statement.rb
231
B
-rw-r--r--
version.rb
45
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : em.rb
require 'eventmachine' require 'mysql2' module Mysql2 module EM class Client < ::Mysql2::Client module Watcher def initialize(client, deferable) @client = client @deferable = deferable @is_watching = true end def notify_readable detach begin result = @client.async_result rescue StandardError => e @deferable.fail(e) else @deferable.succeed(result) end end def watching? @is_watching end def unbind @is_watching = false end end def close(*args) @watch.detach if @watch && @watch.watching? super(*args) end def query(sql, opts = {}) if ::EM.reactor_running? super(sql, opts.merge(async: true)) deferable = ::EM::DefaultDeferrable.new @watch = ::EM.watch(socket, Watcher, self, deferable) @watch.notify_readable = true deferable else super(sql, opts) end end end end end
Close