Lucene search
+L

PCWorx Detection (TCP)

🗓️ 28 Sep 2017 00:00:00Reported by Copyright (C) 2017 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 139 Views

PCWorx Detection (TCP) - Detection of PCWorx service via TCP with details extractio

Refs
Code
SourceLink
phoenixcontactwww.phoenixcontact.com/
# SPDX-FileCopyrightText: 2017 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.140418");
  script_version("2023-09-22T16:08:59+0000");
  script_tag(name:"last_modification", value:"2023-09-22 16:08:59 +0000 (Fri, 22 Sep 2023)");
  script_tag(name:"creation_date", value:"2017-09-28 15:33:55 +0700 (Thu, 28 Sep 2017)");
  script_tag(name:"cvss_base", value:"0.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");

  script_tag(name:"qod_type", value:"remote_banner");

  script_name("PCWorx Detection (TCP)");

  script_category(ACT_GATHER_INFO);

  script_copyright("Copyright (C) 2017 Greenbone AG");
  script_family("Service detection");
  script_dependencies("find_service.nasl");
  script_require_ports(1962);

  script_tag(name:"summary", value:"TCP based detection of a PCWorx service.");

  script_tag(name:"insight", value:"PCWorx is a protocol and program by Phoenix Contact used by a
  wide range of industries.");

  script_xref(name:"URL", value:"https://www.phoenixcontact.com");

  exit(0);
}

include("dump.inc");
include("host_details.inc");
include("misc_func.inc");
include("port_service_func.inc");

port = 1962;

if (!get_port_state(port))
  exit(0);

soc = open_sock_tcp(port);
if (!soc)
  exit(0);

# nb: initialize
query = raw_string(0x01, 0x01, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x78, 0x80, 0x00, 0x03, 0x00, 0x0c,
                   'IBETH01N0_M', 0x00);
send(socket: soc, data: query);
recv = recv(socket: soc, length: 512);

if (!recv) {
  close(soc);
  exit(0);
}

# nb: Check if error occurred
if (hexstr(recv[0]) != "81" || strlen(recv) < 20) {
  unknown_banner_set(port: port, banner: recv, set_oid_based: TRUE);
  close(soc);
  exit(0);
}

# The PLC returns a session ID, which we need for further communication
sessionid = recv[17];

# Second request
query = raw_string(0x01, 0x05, 0x00, 0x16, 0x00, 0x01, 0x00, 0x00, 0x78, 0x80, 0x00, sessionid,
                   0x00, 0x00, 0x00, 0x06, 0x00, 0x04, 0x02, 0x95, 0x00, 0x00);
send(socket: soc, data: query);
recv = recv(socket: soc, length: 512);

if (!recv) {
  close(soc);
  exit(0);
}

# nb: Check if error occurred
if (hexstr(recv[0]) != "81") {
  unknown_banner_set(port: port, banner: recv, set_oid_based: TRUE);
  close(soc);
  exit(0);
}

# Request the information about the PLC
query = raw_string(0x01, 0x06, 0x00, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, sessionid, 0x04, 0x00);
send(socket: soc, data: query);
recv = recv(socket: soc, length: 512);
close(soc);

if (!recv)
  exit(0);

# nb: Check if error occurred
if (hexstr(recv[0]) != "81") {
  unknown_banner_set(port: port, banner: recv, set_oid_based: TRUE);
  exit(0);
}

# PLC Type (Remove unprintable characters)
type = bin2string(ddata: substr(recv, 30, 65), noprint_replacement: "");
set_kb_item(name: "pcworx/plc_type", value: type);

# Model Number (Remove unprintable characters)
model_num = chomp(bin2string(ddata: substr(recv, 152), noprint_replacement: ""));

# Firmware version (Remove unprintable characters)
fw_ver = bin2string(ddata: substr(recv, 66, 71), noprint_replacement: "");
set_kb_item(name: "pcworx/fw_version", value: fw_ver);

# Firmware date (Remove unprintable characters)
fw_date = bin2string(ddata: substr(recv, 79, 90), noprint_replacement: "");

# Firmware time (Remove unprintable characters)
fw_time = bin2string(ddata: substr(recv, 91, 99), noprint_replacement: "");

set_kb_item(name: "pcworx/detected", value: TRUE);
set_kb_item(name: "pcworx/tcp/detected", value: TRUE);

service_register(port: port, proto: "pcworx");

report = 'A PCWorx service is running at this port.\n\nThe following information was extracted:\n\n' +
         "PLC Type:          " + type + '\n' +
         "Model Number:      " + model_num + '\n' +
         "Firmware Version:  " + fw_ver + '\n' +
         "Firmware Date:     " + fw_date + '\n' +
         "Firmware Time:     " + fw_time;

log_message(data: report, port: port);

exit(0);

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

22 Sep 2023 00:00Current
7High risk
Vulners AI Score7
139