CPE2_2 class¶
- class cpe.cpe2_2.CPE2_2(cpe_str, *args, **kwargs)[source]¶
Implementation of version 2.2 of CPE specification.
A CPE Name is a percent-encoded URI with each name starting with the prefix (the URI scheme name) ‘cpe:’.
Each platform can be broken down into many distinct parts. A CPE Name specifies a simple part and is used to identify any platform that matches the description of that part.
The distinct parts are:
Hardware part: the physical platform supporting the IT system.
Operating system part: the operating system controls and manages the IT hardware.
Application part: software systems, services, servers, and packages installed on the system.
CPE Name syntax:
cpe:/{part}:{vendor}:{product}:{version}:{update}:{edition}:{language}
- VERSION = '2.2'¶
Version of CPE Name
- __len__()[source]¶
Returns the number of components of CPE Name.
- Returns
count of components of CPE Name
- Return type
int
- static __new__(cls, cpe_str, *args, **kwargs)[source]¶
Create a new CPE Name of version 2.2.
- Parameters
cpe_str (string) – CPE Name string
- Returns
CPE object of version 2.2 of CPE specification.
- Return type