| Source | Link |
|---|---|
| 1337day | www.1337day.com/exploits/16203 |
| donofjsr | www.donofjsr.blogspot.com/2011/03/lostdoor-j-revolution-v6.html |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_lost_door_dos_vuln.nasl 7052 2017-09-04 11:50:51Z teissa $
#
# Lost Door J-Revolution Denial of Service Vulnerability
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2011 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################
tag_impact = "Successful exploitation will let remote unauthenticated attackers
to cause a denial of service condition.
Impact Level: Application";
tag_affected = "Lost Door J-Revolution version 6";
tag_insight = "The flaw is due to error in handling the message used by LastDoor
which uses a simple clear text protocol with a delimitter.";
tag_solution = "No solution or patch was made available for at least one year
since disclosure of this vulnerability. Likely none will be provided anymore.
General solution options are to upgrade to a newer release, disable respective
features, remove the product or replace the product by another one.";
tag_summary = "This host is running Lost Door J-Revolution and is prone to
denial of service vulnerability.";
if(description)
{
script_id(801943);
script_version("$Revision: 7052 $");
script_tag(name:"last_modification", value:"$Date: 2017-09-04 13:50:51 +0200 (Mon, 04 Sep 2017) $");
script_tag(name:"creation_date", value:"2011-06-02 11:54:09 +0200 (Thu, 02 Jun 2011)");
script_tag(name:"cvss_base", value:"5.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
script_name("Lost Door J-Revolution Denial of Service Vulnerability");
script_xref(name : "URL" , value : "http://www.1337day.com/exploits/16203");
script_xref(name : "URL" , value : "http://donofjsr.blogspot.com/2011/03/lostdoor-j-revolution-v6.html");
script_tag(name:"qod_type", value:"remote_vul");
script_category(ACT_DENIAL);
script_copyright("Copyright (c) 2011 Greenbone Networks GmbH");
script_family("Denial of Service");
script_dependencies("find_service.nasl");
script_require_ports(7183);
script_tag(name : "impact" , value : tag_impact);
script_tag(name : "affected" , value : tag_affected);
script_tag(name : "insight" , value : tag_insight);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "summary" , value : tag_summary);
script_tag(name:"solution_type", value:"WillNotFix");
exit(0);
}
## Default Lost Door J-Revolution Port 7183
ldPort = 7183 ;
## exit if ports are not listening
if(!get_port_state(ldPort)){
exit(0);
}
## Open TCP Socket and immediately close the socket
## without sending any data this will trigger an exception
## at server side causing denial of service
soc = open_sock_tcp(ldPort);
if(!soc){
exit(0);
}
close(soc);
sleep(5);
## Check still Lost Door J-Revolution is listening
soc = open_sock_tcp(ldPort);
if(!soc){
security_message(ldPort);
}
close(soc);
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