Sphinx search server Detection
🗓️ 31 Aug 2015 00:00:00Reported by Copyright (C) 2015 SCHUTZWERK GmbHType
openvas🔗 plugins.openvas.org👁 85 Views
# SPDX-FileCopyrightText: 2015 SCHUTZWERK GmbH
# 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-or-later
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.111034");
script_version("2023-07-26T05:05:09+0000");
script_tag(name:"last_modification", value:"2023-07-26 05:05:09 +0000 (Wed, 26 Jul 2023)");
script_tag(name:"creation_date", value:"2015-08-31 18:00:00 +0200 (Mon, 31 Aug 2015)");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_tag(name:"cvss_base", value:"0.0");
script_name("Sphinx search server Detection");
script_copyright("Copyright (C) 2015 SCHUTZWERK GmbH");
script_category(ACT_GATHER_INFO);
script_family("Product detection");
script_dependencies("find_service1.nasl");
script_require_ports("Services/sphinxql", 9306, "Services/sphinxapi", 9312);
script_tag(name:"summary", value:"The script checks the presence of a Sphinx search server
and sets the version in the kb.");
script_tag(name:"qod_type", value:"remote_banner");
exit(0);
}
include("cpe.inc");
include("host_details.inc");
include("dump.inc");
include("port_service_func.inc");
include("misc_func.inc");
ports = service_get_ports( default_port_list:make_list( 9306 ), proto:"sphinxql" );
foreach port( ports ) {
if( ! banner = get_kb_item( "sphinxsearch/" + port + "/sphinxql/banner" ) ) {
soc = open_sock_tcp( port );
if( ! soc )
continue;
send( socket:soc, data:"TEST\r\n" );
buf = recv( socket:soc, length:64 );
close( soc );
if( ! buf )
continue;
banner = bin2string( ddata:buf, noprint_replacement:' ' );
if( ! banner )
continue;
}
# Examples:
# 2.0.9-id64-release (rel20-r4115)
# 2.1.2-id64-release (r4245)
# 2.0.4-release (r3135)
# 2.2.11-id64-release (95ae9a6)
# 2.8.0 4006794b@190128 release
# 3.0.2 e3d296ef@190531 release
#
# Binary:
# 0x00: 4B 00 00 00 0A 32 2E 38 2E 30 20 34 30 30 36 37 K....2.8.0 40067
# 0x10: 39 34 62 40 31 39 30 31 32 38 20 72 65 6C 65 61 94b@190128 relea
# 0x20: 73 65 00 01 00 00 00 01 02 03 04 05 06 07 08 00 se..............
# 0x30: 08 82 21 02 00 00 00 00 00 00 00 00 00 00 00 00 ..!.............
# 0x40: 00 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 00 ...............
#
# 0x00: 61 00 00 00 0A 33 2E 30 2E 32 20 65 33 64 32 39 a....3.0.2 e3d29
# 0x10: 36 65 66 40 31 39 30 35 33 31 20 72 65 6C 65 61 6ef@190531 relea
# 0x20: 73 65 00 01 00 00 00 01 02 03 04 05 06 07 08 00 se..............
# 0x30: 08 82 21 02 00 08 00 15 00 00 00 00 00 00 00 00 ..!.............
# 0x40: 00 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 00 6D ...............m
# 0x50: 79 73 71 6C 5F 6E 61 74 69 76 65 5F 70 61 73 73 ysql_native_pass
# 0x60: 77 6F 72 64 00
#
# 0x00: 48 00 00 00 0A 32 2E 30 2E 38 2D 69 64 36 34 2D H....2.0.8-id64-
# 0x10: 72 65 6C 65 61 73 65 20 28 72 33 38 33 31 29 00 release (r3831).
# 0x20: 01 00 00 00 01 02 03 04 05 06 07 08 00 08 82 21 ...............!
# 0x30: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 ................
# 0x40: 02 03 04 05 06 07 08 09 0A 0B 0C 0D ............
#
# nb: see find_service1.nasl as well
if( version = eregmatch( string:banner, pattern:"^.\s{4}([0-9.]+)(-(id[0-9]+-)?release \([0-9a-z-]+\)| [0-9a-z]+@[0-9a-z]+ release)" ) ) {
replace_kb_item( name:"sphinxsearch/" + port + "/sphinxql/banner", value:banner );
install = port + "/tcp";
service_register( port:port, proto:"sphinxql" );
set_kb_item( name:"sphinxsearch/detected", value:TRUE );
set_kb_item( name:"sphinxsearch/noauth", value:TRUE );
set_kb_item( name:"sphinxsearch/" + port + "/detected", value:TRUE );
set_kb_item( name:"sphinxsearch/" + port + "/noauth", value:TRUE );
set_kb_item( name:"sphinxsearch/" + port + "/version", value:version[1] );
cpe = build_cpe( value:version[1], exp:"^([0-9.]+)", base:"cpe:/a:sphinxsearch:sphinxsearch:" );
if( ! cpe )
cpe = "cpe:/a:sphinxsearch:sphinxsearch";
register_product( cpe:cpe, location:install, port:port, service:"sphinxql" );
log_message( data:build_detection_report( app:"Sphinx search server",
version:version[1],
install:install,
cpe:cpe,
concluded:version[0] ),
port:port );
}
}
port = service_get_port( default:9312, proto:"sphinxapi" );
if( ! banner = get_kb_item( "sphinxsearch/" + port + "/sphinxapi/banner" ) ) {
soc = open_sock_tcp( port );
if( ! soc )
exit( 0 );
send( socket:soc, data:"TEST\r\n\r\n" );
buf = recv( socket:soc, length:64 );
close( soc );
if( ! buf )
exit( 0 );
banner = bin2string( ddata:buf, noprint_replacement:' ' );
if( ! banner )
exit( 0 );
}
# invalid command (code=12064, len=1414541105)
# nb: Don't use a ^ anchor, the banner is located within some binary blob.
# nb: see find_service1.nasl as well
if( banner = egrep( string:banner, pattern:"invalid command \(code=([0-9]+), len=([0-9]+)\)" ) ) {
replace_kb_item( name:"sphinxsearch/" + port + "/sphinxapi/banner", value:banner );
version = "unknown";
install = port + "/tcp";
service_register( port:port, proto:"sphinxapi" );
set_kb_item( name:"sphinxsearch/detected", value:TRUE );
set_kb_item( name:"sphinxsearch/noauth", value:TRUE );
set_kb_item( name:"sphinxsearch/" + port + "/detected", value:TRUE );
set_kb_item( name:"sphinxsearch/" + port + "/noauth", value:TRUE );
set_kb_item( name:"sphinxsearch/" + port + "/version", value:version );
cpe = "cpe:/a:sphinxsearch:sphinxsearch";
register_product( cpe:cpe, location:install, port:port, service:"sphinxapi" );
log_message( data:build_detection_report( app:"Sphinx search server",
version:version,
install:install,
cpe:cpe,
concluded:banner ),
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
26 Jul 2023 00:00Current
7High risk
Vulners AI Score7