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 /
mail /
core_extensions /
[ HOME SHELL ]
Name
Size
Permission
Action
smtp.rb
709
B
-rw-r--r--
string.rb
358
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : smtp.rb
# encoding: utf-8 # frozen_string_literal: true # This is a backport of r30294 from ruby trunk because of a bug in net/smtp. # http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=30294 # # Fixed in Ruby 1.9.3 - tlsconnect also does not exist in some early versions of ruby if RUBY_VERSION < '1.9.3' module Net class SMTP begin alias_method :original_tlsconnect, :tlsconnect def tlsconnect(s) verified = false begin original_tlsconnect(s).tap { verified = true } ensure unless verified s.close rescue nil end end end rescue NameError end end end end
Close