Files
metasploit-gs/lib/msf/core/handler/reverse/ssl.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
444 B
Ruby
Raw Normal View History

2015-10-07 09:59:12 -05:00
module Msf
module Handler
module Reverse
module SSL
#
# Adds the certificate option.
#
def initialize(info = {})
super
register_advanced_options(
[
OptPath.new('HandlerSSLCert', [false, "Path to a SSL certificate in unified PEM format"]),
Opt::SSLVersion,
2015-10-07 09:59:12 -05:00
], Msf::Handler::Reverse::SSL)
end
end
end
end
end