ID OPENVAS:902234 Type openvas Reporter Copyright (C) 2010 SecPod Modified 2017-02-22T00:00:00
Description
This host is installed with 3D FTP Client and is prone to directory
traversal vulnerability.
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_3d_ftp_client_dir_traversal_vuln.nasl 5394 2017-02-22 09:22:42Z teissa $
#
# 3D FTP Client Directory Traversal Vulnerability
#
# Authors:
# Antu Sanadi <santu@secpod.com>
#
# 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 write files into
a user's Startup folder to execute malicious code when the user logs on.
Impact Level: Application.";
tag_affected = "3D FTP Client 9.0 build 2 (9.0.2) and prior.";
tag_insight = "The flaw exists due to an error in handling of certain crafted
file names. It does not properly sanitise filenames containing directory
traversal sequences that are received from an FTP server.";
tag_solution = "Upgrade to version 9.03 or later,
For updates refer to http://3dftp.com/download_3dftp.htm";
tag_summary = "This host is installed with 3D FTP Client and is prone to directory
traversal vulnerability.";
if(description)
{
script_id(902234);
script_version("$Revision: 5394 $");
script_tag(name:"last_modification", value:"$Date: 2017-02-22 10:22:42 +0100 (Wed, 22 Feb 2017) $");
script_tag(name:"creation_date", value:"2010-08-25 17:02:03 +0200 (Wed, 25 Aug 2010)");
script_cve_id("CVE-2010-3102");
script_tag(name:"cvss_base", value:"9.3");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C");
script_name("3D FTP Client Directory Traversal Vulnerability");
script_xref(name : "URL" , value : "http://vuln.sg/3dftp801-en.html");
script_xref(name : "URL" , value : "http://seclists.org/bugtraq/2010/Aug/227");
script_xref(name : "URL" , value : "http://www.securityfocus.com/archive/1/513244");
script_xref(name : "URL" , value : "http://osdir.com/ml/bugtraq.security/2010-08/msg00226.html");
script_xref(name : "URL" , value : "http://www.htbridge.ch/advisory/directory_traversal_in_3d_ftp_client.html");
script_tag(name:"qod_type", value:"registry");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2010 SecPod");
script_family("FTP");
script_dependencies("secpod_reg_enum.nasl");
script_mandatory_keys("SMB/WindowsVersion");
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 : "affected" , value : tag_affected);
exit(0);
}
include("smb_nt.inc");
include("version_func.inc");
include("secpod_smb_func.inc");
if(!get_kb_item("SMB/WindowsVersion")){
exit(0);
}
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\";
if(!registry_key_exists(key:key)) {
exit(0);
}
foreach item (registry_enum_keys(key:key))
{
ftpName = registry_get_sz(key:key + item, item:"DisplayName");
## Check the name of the application
if("3D-FTP" >< ftpName)
{
## Check for 3D-FTP Application
ftpVer = registry_get_sz(key: key + item , item:"DisplayVersion");
if(ftpVer != NULL)
{
## Check for 3D-FTP version less or equal 9.0.2
if(version_is_less_equal(version:ftpVer, test_version:"9.0.2"))
{
security_message(0) ;
exit(0);
}
}
}
}
{"id": "OPENVAS:902234", "type": "openvas", "bulletinFamily": "scanner", "title": "3D FTP Client Directory Traversal Vulnerability", "description": "This host is installed with 3D FTP Client and is prone to directory\ntraversal vulnerability.", "published": "2010-08-25T00:00:00", "modified": "2017-02-22T00:00:00", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}, "href": "http://plugins.openvas.org/nasl.php?oid=902234", "reporter": "Copyright (C) 2010 SecPod", "references": ["http://osdir.com/ml/bugtraq.security/2010-08/msg00226.html", "http://vuln.sg/3dftp801-en.html", "http://www.htbridge.ch/advisory/directory_traversal_in_3d_ftp_client.html", "http://seclists.org/bugtraq/2010/Aug/227", "http://www.securityfocus.com/archive/1/513244"], "cvelist": ["CVE-2010-3102"], "lastseen": "2017-07-02T21:10:00", "viewCount": 1, "enchantments": {"score": {"value": 8.0, "vector": "NONE", "modified": "2017-07-02T21:10:00", "rev": 2}, "dependencies": {"references": [{"type": "cve", "idList": ["CVE-2010-3102"]}, {"type": "htbridge", "idList": ["HTB22565"]}, {"type": "openvas", "idList": ["OPENVAS:1361412562310902234"]}], "modified": "2017-07-02T21:10:00", "rev": 2}, "vulnersScore": 8.0}, "pluginID": "902234", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: secpod_3d_ftp_client_dir_traversal_vuln.nasl 5394 2017-02-22 09:22:42Z teissa $\n#\n# 3D FTP Client Directory Traversal Vulnerability\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Copyright:\n# Copyright (C) 2010 SecPod, http://www.secpod.com\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\ntag_impact = \"Successful exploitation will allow attackers to write files into\na user's Startup folder to execute malicious code when the user logs on.\n\nImpact Level: Application.\";\n\ntag_affected = \"3D FTP Client 9.0 build 2 (9.0.2) and prior.\";\n\ntag_insight = \"The flaw exists due to an error in handling of certain crafted\nfile names. It does not properly sanitise filenames containing directory\ntraversal sequences that are received from an FTP server.\";\n\ntag_solution = \"Upgrade to version 9.03 or later,\nFor updates refer to http://3dftp.com/download_3dftp.htm\";\n\ntag_summary = \"This host is installed with 3D FTP Client and is prone to directory\ntraversal vulnerability.\";\n\nif(description)\n{\n script_id(902234);\n script_version(\"$Revision: 5394 $\");\n script_tag(name:\"last_modification\", value:\"$Date: 2017-02-22 10:22:42 +0100 (Wed, 22 Feb 2017) $\");\n script_tag(name:\"creation_date\", value:\"2010-08-25 17:02:03 +0200 (Wed, 25 Aug 2010)\");\n script_cve_id(\"CVE-2010-3102\");\n script_tag(name:\"cvss_base\", value:\"9.3\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_name(\"3D FTP Client Directory Traversal Vulnerability\");\n script_xref(name : \"URL\" , value : \"http://vuln.sg/3dftp801-en.html\");\n script_xref(name : \"URL\" , value : \"http://seclists.org/bugtraq/2010/Aug/227\");\n script_xref(name : \"URL\" , value : \"http://www.securityfocus.com/archive/1/513244\");\n script_xref(name : \"URL\" , value : \"http://osdir.com/ml/bugtraq.security/2010-08/msg00226.html\");\n script_xref(name : \"URL\" , value : \"http://www.htbridge.ch/advisory/directory_traversal_in_3d_ftp_client.html\");\n\n script_tag(name:\"qod_type\", value:\"registry\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2010 SecPod\");\n script_family(\"FTP\");\n script_dependencies(\"secpod_reg_enum.nasl\");\n script_mandatory_keys(\"SMB/WindowsVersion\");\n script_tag(name : \"insight\" , value : tag_insight);\n script_tag(name : \"solution\" , value : tag_solution);\n script_tag(name : \"summary\" , value : tag_summary);\n script_tag(name : \"impact\" , value : tag_impact);\n script_tag(name : \"affected\" , value : tag_affected);\n exit(0);\n}\n\n\ninclude(\"smb_nt.inc\");\ninclude(\"version_func.inc\");\ninclude(\"secpod_smb_func.inc\");\n\nif(!get_kb_item(\"SMB/WindowsVersion\")){\n exit(0);\n}\n\nkey = \"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\";\n\nif(!registry_key_exists(key:key)) {\n exit(0);\n}\n\nforeach item (registry_enum_keys(key:key))\n{\n ftpName = registry_get_sz(key:key + item, item:\"DisplayName\");\n\n ## Check the name of the application\n if(\"3D-FTP\" >< ftpName)\n {\n ## Check for 3D-FTP Application\n ftpVer = registry_get_sz(key: key + item , item:\"DisplayVersion\");\n if(ftpVer != NULL)\n {\n ## Check for 3D-FTP version less or equal 9.0.2\n if(version_is_less_equal(version:ftpVer, test_version:\"9.0.2\"))\n {\n security_message(0) ;\n exit(0);\n }\n }\n }\n}\n", "naslFamily": "FTP"}
{"cve": [{"lastseen": "2021-02-02T05:45:01", "description": "Directory traversal vulnerability in SiteDesigner Technologies, Inc. 3D-FTP Client 9.0 build 2, and probably earlier versions, allows remote FTP servers to write arbitrary files via a \"..\\\" (dot dot backslash) in a filename.", "edition": 4, "cvss3": {}, "published": "2010-08-21T00:00:00", "title": "CVE-2010-3102", "type": "cve", "cwe": ["CWE-22"], "bulletinFamily": "NVD", "cvss2": {"severity": "HIGH", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 9.3, "vectorString": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "obtainUserPrivilege": false}, "cvelist": ["CVE-2010-3102"], "modified": "2010-08-23T04:00:00", "cpe": ["cpe:/a:3dftp:3d-ftp_client:9.02"], "id": "CVE-2010-3102", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-3102", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}, "cpe23": ["cpe:2.3:a:3dftp:3d-ftp_client:9.02:*:*:*:*:*:*:*"]}], "openvas": [{"lastseen": "2020-04-27T19:23:09", "bulletinFamily": "scanner", "cvelist": ["CVE-2010-3102"], "description": "This host is installed with 3D FTP Client and is prone to directory\ntraversal vulnerability.", "modified": "2020-04-23T00:00:00", "published": "2010-08-25T00:00:00", "id": "OPENVAS:1361412562310902234", "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310902234", "type": "openvas", "title": "3D FTP Client Directory Traversal Vulnerability", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# 3D FTP Client Directory Traversal Vulnerability\n#\n# Authors:\n# Antu Sanadi <santu@secpod.com>\n#\n# Copyright:\n# Copyright (C) 2010 SecPod, http://www.secpod.com\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License version 2\n# (or any later version), as published by the Free Software Foundation.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.902234\");\n script_version(\"2020-04-23T12:22:09+0000\");\n script_tag(name:\"last_modification\", value:\"2020-04-23 12:22:09 +0000 (Thu, 23 Apr 2020)\");\n script_tag(name:\"creation_date\", value:\"2010-08-25 17:02:03 +0200 (Wed, 25 Aug 2010)\");\n script_cve_id(\"CVE-2010-3102\");\n script_tag(name:\"cvss_base\", value:\"9.3\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_name(\"3D FTP Client Directory Traversal Vulnerability\");\n script_xref(name:\"URL\", value:\"http://vuln.sg/3dftp801-en.html\");\n script_xref(name:\"URL\", value:\"http://seclists.org/bugtraq/2010/Aug/227\");\n script_xref(name:\"URL\", value:\"http://www.securityfocus.com/archive/1/513244\");\n script_xref(name:\"URL\", value:\"http://osdir.com/ml/bugtraq.security/2010-08/msg00226.html\");\n script_xref(name:\"URL\", value:\"http://www.htbridge.ch/advisory/directory_traversal_in_3d_ftp_client.html\");\n\n script_tag(name:\"qod_type\", value:\"registry\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2010 SecPod\");\n script_family(\"FTP\");\n script_dependencies(\"smb_reg_service_pack.nasl\");\n script_require_ports(139, 445);\n script_mandatory_keys(\"SMB/WindowsVersion\");\n script_tag(name:\"insight\", value:\"The flaw exists due to an error in handling of certain crafted\nfile names. It does not properly sanitise filenames containing directory\ntraversal sequences that are received from an FTP server.\");\n script_tag(name:\"solution_type\", value:\"VendorFix\");\n script_tag(name:\"solution\", value:\"Upgrade to version 9.03 or later.\");\n script_tag(name:\"summary\", value:\"This host is installed with 3D FTP Client and is prone to directory\ntraversal vulnerability.\");\n script_tag(name:\"impact\", value:\"Successful exploitation will allow attackers to write files into\na user's Startup folder to execute malicious code when the user logs on.\");\n script_tag(name:\"affected\", value:\"3D FTP Client 9.0 build 2 (9.0.2) and prior.\");\n script_xref(name:\"URL\", value:\"http://3dftp.com/download_3dftp.htm\");\n exit(0);\n}\n\n\ninclude(\"smb_nt.inc\");\ninclude(\"version_func.inc\");\ninclude(\"secpod_smb_func.inc\");\n\nif(!get_kb_item(\"SMB/WindowsVersion\")){\n exit(0);\n}\n\nkey = \"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\";\n\nif(!registry_key_exists(key:key)) {\n exit(0);\n}\n\nforeach item (registry_enum_keys(key:key))\n{\n ftpName = registry_get_sz(key:key + item, item:\"DisplayName\");\n\n if(\"3D-FTP\" >< ftpName)\n {\n ftpVer = registry_get_sz(key: key + item , item:\"DisplayVersion\");\n if(ftpVer != NULL)\n {\n if(version_is_less_equal(version:ftpVer, test_version:\"9.0.2\"))\n {\n report = report_fixed_ver(installed_version:ftpVer, vulnerable_range:\"Less than or equal to 9.0.2\");\n security_message(port: 0, data: report);\n exit(0);\n }\n }\n }\n}\n", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}}], "htbridge": [{"lastseen": "2020-12-24T11:30:49", "bulletinFamily": "software", "cvelist": ["CVE-2010-3102"], "description": "High-Tech Bridge SA Security Research Lab has discovered vulnerability in 3D FTP Client which could be exploited to execute arbitrary code on vulnerable system. \n \n1) Directory Traversal Vulnerability in 3D FTP Client: CVE-2010-3102 \nThe vulnerability exists due to insufficient sanitation of the downloaded filename. A remote attacker controlling an FTP server can trick user into downloading file with specially crafted filename, containing directory traversal sequences (e.g. \"..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\somefile.exe\") and write it into arbitrary locations on the target system. Successful exploitation might allow remote code execution but requires that victim uses 3D FTP Client to connect to the FTP server and download a malicious file. \n\n", "modified": "2010-08-05T00:00:00", "published": "2010-08-05T00:00:00", "id": "HTB22565", "href": "https://www.htbridge.com/advisory/HTB22565", "type": "htbridge", "title": "Directory Traversal Vulnerability in 3D FTP Client", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C/"}}]}