metasploit-framework/modules/auxiliary/scanner/scada/modbusclient.rb

170 lines
4.9 KiB
Ruby
Raw Normal View History

##
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
2013-08-30 21:28:54 +00:00
include Msf::Exploit::Remote::Tcp
2013-08-30 21:28:54 +00:00
def initialize(info = {})
super(update_info(info,
2014-04-29 14:09:47 +00:00
'Name' => 'Modbus Client Utility',
'Description' => %q{
This module allows reading and writing data to a PLC using the Modbus protocol.
2014-05-01 14:52:55 +00:00
This module is based on the 'modiconstop.rb' Basecamp module from DigitalBond,
as well as the mbtget perl script.
2013-08-30 21:28:54 +00:00
},
'Author' =>
2013-08-30 21:28:54 +00:00
[
2014-04-29 14:09:47 +00:00
'EsMnemon <esm[at]mnemonic.no>', # original write-only module
'Arnaud SOULLIE <arnaud.soullie[at]solucom.fr>' # new code that allows read/write
2013-08-30 21:28:54 +00:00
],
'License' => MSF_LICENSE,
2014-05-01 14:52:55 +00:00
'Actions' =>
[
['READ_COIL', { 'Description' => 'Read one bit from a coil' } ],
['WRITE_COIL', { 'Description' => 'Write one bit to a coil' } ],
['READ_REGISTER', { 'Description' => 'Read one word from a register' } ],
['WRITE_REGISTER', { 'Description' => 'Write one word to a register' } ],
]
))
2014-05-01 14:52:55 +00:00
register_options(
[
Opt::RPORT(502),
2014-04-29 14:09:47 +00:00
OptInt.new('DATA', [false, "Data to write (WRITE_COIL and WRITE_REGISTER modes only)"]),
OptInt.new('DATA_ADDRESS', [true, "Modbus data address"]),
OptInt.new('UNIT_NUMBER', [false, "Modbus unit number", 1]),
], self.class)
2013-08-30 21:28:54 +00:00
end
# a wrapper just to be sure we increment the counter
2014-04-29 14:09:47 +00:00
def send_frame(payload)
sock.put(payload)
2014-04-29 14:09:47 +00:00
@modbus_counter += 1
2014-05-01 16:04:29 +00:00
r = sock.get(sock.def_read_timeout)
return r
end
2014-05-01 15:23:33 +00:00
def make_payload(payload)
packet_data = [@modbus_counter].pack("n")
packet_data += "\x00\x00\x00" #dunno what these are
packet_data += [payload.size].pack("c") # size byte
packet_data += payload
packet_data
end
def make_read_payload
2014-05-01 14:52:55 +00:00
payload = [datastore['UNIT_NUMBER']].pack("c")
payload += [@function_code].pack("c")
payload += [datastore['DATA_ADDRESS']].pack("n")
payload += [1].pack("n")
2014-05-01 15:23:33 +00:00
packet_data = make_payload(payload)
2014-05-01 14:52:55 +00:00
packet_data
end
def make_write_coil_payload(data)
2014-05-01 14:52:55 +00:00
payload = [datastore['UNIT_NUMBER']].pack("c")
payload += [@function_code].pack("c")
payload += [datastore['DATA_ADDRESS']].pack("n")
payload += [data].pack("c")
payload += "\x00"
2014-05-01 15:23:33 +00:00
packet_data = make_payload(payload)
2014-05-01 14:52:55 +00:00
packet_data
end
2014-05-01 16:04:29 +00:00
def make_write_register_payload(data)
payload = [datastore['UNIT_NUMBER']].pack("c")
payload += [@function_code].pack("c")
payload += [datastore['DATA_ADDRESS']].pack("n")
payload += [data].pack("n")
2014-05-01 15:23:33 +00:00
packet_data = make_payload(payload)
2014-05-01 14:52:55 +00:00
packet_data
end
2014-05-01 16:04:29 +00:00
def read_coil
@function_code = 1
2014-05-01 16:05:55 +00:00
print_status("Sending READ COIL...")
2014-05-01 16:04:29 +00:00
response = send_frame(make_read_payload)
if response.nil?
print_error("No answer for the READ COIL")
return
end
print_good("Coil value at address #{datastore['DATA_ADDRESS']} : " + response.reverse.unpack("c").to_s.gsub('[', '').gsub(']', ''))
end
def read_register
@function_code = 3
2014-05-01 16:05:55 +00:00
print_status("Sending READ REGISTER...")
2014-05-01 16:04:29 +00:00
response = send_frame(make_read_payload)
if response.nil?
print_error("No answer for the READ REGISTER")
return
end
value = response.split[0][9..10].to_s.unpack("n").to_s.gsub('[', '').gsub(']','')
print_good("Register value at address #{datastore['DATA_ADDRESS']} : " + value)
end
def write_coil
@function_code = 5
if datastore['DATA'] == 0
data = 0
elsif datastore['DATA'] == 1
data = 255
else
print_error("Data value must be 0 or 1 in WRITE_COIL mode")
return
end
2014-05-01 16:05:55 +00:00
print_status("Sending WRITE COIL...")
2014-05-01 16:04:29 +00:00
response = send_frame(make_write_coil_payload(data))
if response.nil?
print_error("No answer for the WRITE COIL")
return
end
print_good("Value #{datastore['DATA']} successfully written at coil address #{datastore['DATA_ADDRESS']}")
end
def write_register
@function_code = 6
if datastore['DATA'] < 0 || datastore['DATA'] > 65535
print_error("Data to write must be an integer between 0 and 65535 in WRITE_REGISTER mode")
return
end
2014-05-01 16:05:55 +00:00
print_status("Sending WRITE REGISTER...")
2014-05-01 16:04:29 +00:00
response = send_frame(make_write_register_payload(datastore['DATA']))
if response.nil?
print_error("No answer for the WRITE REGISTER")
return
end
print_good("Value #{datastore['DATA']} successfully written at registry address #{datastore['DATA_ADDRESS']}")
end
def run
2014-04-29 14:09:47 +00:00
@modbus_counter = 0x0000 # used for modbus frames
connect
2014-04-29 14:09:47 +00:00
case datastore['ACTION']
when "READ_COIL"
2014-05-01 16:04:29 +00:00
read_coil
when "READ_REGISTER"
2014-05-01 16:04:29 +00:00
read_register
when "WRITE_COIL"
2014-05-01 16:04:29 +00:00
write_coil
when "WRITE_REGISTER"
2014-05-01 16:04:29 +00:00
write_register
else
2014-04-29 14:09:47 +00:00
print_error("Invalid ACTION")
end
2014-05-01 14:52:55 +00:00
disconnect
end
end