| Source | Link |
|---|---|
| ibm | www.ibm.com/analytics/us/en/db2/ |
| nessus | www.nessus.org/u |
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
include('deprecated_nasl_level.inc');
include("compat.inc");
if (description)
{
script_id(22417);
script_version("1.11");
script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");
script_name(english:"IBM DB2 Interrupt Port Detection");
script_set_attribute(attribute:"synopsis", value:
"The remote host has an open interrupt port for a DB2 instance.");
script_set_attribute(attribute:"description", value:
"The remote host is running IBM DB2, with an open interrupt port for a
DB2 instance. DB2 is an enterprise database solution, and an interrupt
port is used to support requests from down-level clients.");
script_set_attribute(attribute:"see_also", value:"https://www.ibm.com/analytics/us/en/db2/");
# https://www.ibm.com/support/knowledgecenter/SSEPGG_10.1.0/com.ibm.db2.luw.kc.doc/welcome.html?origURL=api/redirect/db2luw/v10r1/index.jsp
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?0cf99b58");
script_set_attribute(attribute:"solution", value:
"Limit incoming traffic to this port if desired.");
script_set_attribute(attribute:"risk_factor", value:"None");
script_set_attribute(attribute:"plugin_publication_date", value:"2006/09/21");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_set_attribute(attribute:"cpe", value:"cpe:/a:ibm:db2");
script_set_attribute(attribute:"thorough_tests", value:"true");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Databases");
script_copyright(english:"This script is Copyright (C) 2006-2022 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("find_service1.nasl");
script_require_ports("Services/unknown", 50001);
exit(0);
}
include("byte_func.inc");
include("charset_func.inc");
include("global_settings.inc");
include("misc_func.inc");
if (thorough_tests && ! get_kb_item("global_settings/disable_service_discovery") ) {
port = get_unknown_svc(50001);
if (!port) exit(0);
}
else port = 50001;
if (known_service(port:port)) exit(0);
if (!get_tcp_port_state(port)) exit(0);
soc = open_sock_tcp(port);
if (!soc) exit(0);
# Try to connect to a database named "nessus" + unixtime().
req =
mkword(0x89) + # length (?)
mkbyte(0xd0) + # type (?)
raw_string(0x41, 0x00, 0x01, 0x00, 0x83, 0x10, 0x41) + # ?
mkword(0x39) + # length (?)
mkbyte(0x11) + # type, 0x11 => string (?)
ascii2ebcdic(
str:";db2jcc_application JCC020800.GA0A01CB" +
raw_string(
0x2e, 0x01, 0x0c, 0xe1, 0xe9, 0x3e, 0x9d, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
)
) +
mkword(0x16) + # length (?)
mkbyte(0x11) + # type, 0x11 => string (?)
ascii2ebcdic(str:"_nessus" + unixtime() + " ") +
mkword(0x0c) + # length (?)
mkbyte(0x11) + # type, 0x11 => string (?)
ascii2ebcdic(str:"!JCC02080") +
mkword(0x18) + # length (?)
mkbyte(0x14) + # type (?)
raw_string(
0x04, 0x14, 0x03, 0x00, 0x07, 0x24, 0x07, 0x00,
0x07, 0x24, 0x0f, 0x00, 0x07, 0x14, 0x40, 0x00,
0x07, 0x14, 0x74, 0x00, 0x05
) +
mkword(0x0c) + # length (?)
mkbyte(0x11) + # type, 0x11 => string (?)
ascii2ebcdic(str:raw_string(0xe5) + "QDB2/JVM") +
mkword(0x26) + # length (?)
mkbyte(0xd0) + # type (?)
raw_string(
0x01, 0x00, 0x02, 0x00, 0x20, 0x10, 0x6d, 0x00,
0x06, 0x11, 0xa2, 0x00, 0x03, 0x00, 0x16, 0x21,
0x10, 0xe2, 0xc1, 0xd4, 0xd7, 0xd3, 0xc5, 0x40,
0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
0x40, 0x40, 0x40
);
send(socket:soc, data:req);
res = recv(socket:soc, length:2048);
close(soc);
# If first record is of type 0xd0...
if (strlen(res) > 3 && getbyte(blob:res, pos:2) == 0xd0)
{
# Extract it.
len = getword(blob:res, pos:0);
if (len > 0 && len <= strlen(res))
{
rec = substr(res, 0, len-1);
# If it looks like a DB2 instance connection port...
if (
ascii2ebcdic(str:"QDB2/") >< rec &&
ascii2ebcdic(str:"DB2CTLSV") >< rec
)
{
# Grab the application info.
app = "";
i = stridx(res, ascii2ebcdic(str:"QDB2/"));
if (i > 0 && getbyte(blob:res, pos:i-2) == 0x11)
{
len = getword(blob:res, pos:i-4);
if (len > 0) app = ebcdic2ascii(str:substr(res, i+1, i+len-4-1));
j = stridx(res, ascii2ebcdic(str:"!SQL"));
if (j > 0 && getbyte(blob:res, pos:j-1) == 0x11)
{
len = getword(blob:res, pos:j-3);
if (len > 0)
{
ver = ebcdic2ascii(str:substr(res, j+4, j+len-3-1));
app += " " +
int(substr(ver, 0, 1)) + "." +
int(substr(ver, 2, 3)) + "." +
int(substr(ver, 4, 4));
}
}
}
# Register and report the service.
register_service(port:port, ipproto:"tcp", proto:"db2i_db2");
if (report_verbosity && app)
report = strcat('\nApplication : ', app, '\n');
else
report = NULL;
security_note(port:port, extra: report);
}
}
}
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