| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| CVE-2010-0384 | 25 Jan 201019:00 | – | cve | |
| CVE-2010-0384 | 25 Jan 201019:00 | – | cvelist | |
| CVE-2010-0384 | 25 Jan 201019:00 | – | debiancve | |
| EUVD-2010-0415 | 7 Oct 202500:30 | – | euvd | |
| CVE-2010-0384 | 25 Jan 201019:30 | – | nvd | |
| Tor 0.2.2.x < 0.2.2.7-alpha Clients Information Disclosure Vulnerability - Windows | 28 Jan 201000:00 | – | openvas | |
| Tor Clients Information Disclosure Vulnerability - Linux | 28 Jan 201000:00 | – | openvas | |
| Tor Clients Information Disclosure Vulnerability (Linux) | 28 Jan 201000:00 | – | openvas | |
| Design/Logic Flaw | 25 Jan 201019:30 | – | prion | |
| CVE-2010-0384 | 9 Jan 202611:44 | – | redhatcve |
| Source | Link |
|---|---|
| archives | www.archives.seul.org/or/announce/Jan-2010/msg00000.html |
| secunia | www.secunia.com/advisories/38198 |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_tor_clients_info_disc_vuln_win.nasl 5401 2017-02-23 09:46:07Z teissa $
#
# Tor Clients Information Disclosure Vulnerability (win)
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2010 SecPod, http://www.secpod.com
#
# 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 allow attackers to obtain client IP information
that can help them launch further attacks.
Impact level: Application";
tag_affected = "Tor version 0.2.2.x before 0.2.2.7-alpha on Windows.";
tag_insight = "This issue is due to directory mirror which does not prevent logging of the
client IP address upon detection of erroneous client behavior, which might make
it easier for local users to discover the identities of clients by reading log
files.";
tag_solution = "Upgrade to version 0.2.2.7-alpha
http://www.torproject.org/download.html.en";
tag_summary = "This host is installed with Tor and is prone to Information Disclosure
vulnerability.";
if(description)
{
script_id(902102);
script_version("$Revision: 5401 $");
script_tag(name:"last_modification", value:"$Date: 2017-02-23 10:46:07 +0100 (Thu, 23 Feb 2017) $");
script_tag(name:"creation_date", value:"2010-01-28 16:24:05 +0100 (Thu, 28 Jan 2010)");
script_tag(name:"cvss_base", value:"2.1");
script_tag(name:"cvss_base_vector", value:"AV:L/AC:L/Au:N/C:P/I:N/A:N");
script_cve_id("CVE-2010-0384");
script_name("Tor Clients Information Disclosure Vulnerability (win)");
script_xref(name : "URL" , value : "http://secunia.com/advisories/38198");
script_xref(name : "URL" , value : "http://archives.seul.org/or/announce/Jan-2010/msg00000.html");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2010 SecPod");
script_family("General");
script_dependencies("gb_tor_detect_win.nasl");
script_require_keys("Tor/Win/Ver");
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 : "impact" , value : tag_impact);
script_tag(name:"qod_type", value:"registry");
script_tag(name:"solution_type", value:"VendorFix");
exit(0);
}
include("http_func.inc");
include("version_func.inc");
torVer = get_kb_item("Tor/Win/Ver");
if(torVer == NULL){
exit(0);
}
foreach torPort (make_list(9050, 9051, 8118))
{
if(get_port_state(torPort))
{
sndReq = string("GET / HTTP/1.1", "\r\n",
"Host: ", get_host_name(), "\r\n\r\n");
rcvRes = http_send_recv(port:torPort, data:sndReq);
if(!isnull(rcvRes) && "Tor is" >< rcvRes)
{
torVer = ereg_replace(pattern:"-", replace:".", string:torVer);
if(torVer =~ "^0\.2\.2.*")
{
if(version_is_less(version:torVer, test_version:"0.2.2.7.alpha"))
{
security_message(torPort);
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