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 /
em /
protocols /
[ HOME SHELL ]
Name
Size
Permission
Action
header_and_content.rb
4.03
KB
-rw-r--r--
httpclient.rb
11.15
KB
-rw-r--r--
httpclient2.rb
17.62
KB
-rw-r--r--
line_and_text.rb
4.38
KB
-rw-r--r--
line_protocol.rb
702
B
-rw-r--r--
linetext2.rb
6.06
KB
-rw-r--r--
memcache.rb
7.62
KB
-rw-r--r--
object_protocol.rb
1.16
KB
-rw-r--r--
postgres3.rb
7.8
KB
-rw-r--r--
saslauth.rb
5.89
KB
-rw-r--r--
smtpclient.rb
13.78
KB
-rw-r--r--
smtpserver.rb
21.57
KB
-rw-r--r--
socks4.rb
1.45
KB
-rw-r--r--
stomp.rb
5.61
KB
-rw-r--r--
tcptest.rb
1.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tcptest.rb
#-- # # Author:: Francis Cianfrocca (gmail: blackhedd) # Homepage:: http://rubyeventmachine.com # Date:: 16 July 2006 # # See EventMachine and EventMachine::Connection for documentation and # usage examples. # #---------------------------------------------------------------------------- # # Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved. # Gmail: blackhedd # # This program is free software; you can redistribute it and/or modify # it under the terms of either: 1) the GNU General Public License # as published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version; or 2) Ruby's License. # # See the file COPYING for complete licensing information. # #--------------------------------------------------------------------------- # # # module EventMachine module Protocols # @private class TcpConnectTester < Connection include EventMachine::Deferrable def self.test( host, port ) EventMachine.connect( host, port, self ) end def post_init @start_time = Time.now end def connection_completed @completed = true set_deferred_status :succeeded, (Time.now - @start_time) close_connection end def unbind set_deferred_status :failed, (Time.now - @start_time) unless @completed end end end end
Close