|
| 1 | +# |
| 2 | +# Copyright (c) nexB Inc. and others. All rights reserved. |
| 3 | +# http://nexb.com and https://github.com/nexB/vulnerablecode/ |
| 4 | +# The VulnTotal software is licensed under the Apache License version 2.0. |
| 5 | +# Data generated with VulnTotal require an acknowledgment. |
| 6 | +# |
| 7 | +# You may not use this software except in compliance with the License. |
| 8 | +# You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0 |
| 9 | +# Unless required by applicable law or agreed to in writing, software distributed |
| 10 | +# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
| 11 | +# CONDITIONS OF ANY KIND, either express or implied. See the License for the |
| 12 | +# specific language governing permissions and limitations under the License. |
| 13 | +# |
| 14 | +# When you publish or redistribute any data created with VulnTotal or any VulnTotal |
| 15 | +# derivative work, you must accompany this data with the following acknowledgment: |
| 16 | +# |
| 17 | +# Generated with VulnTotal and provided on an "AS IS" BASIS, WITHOUT WARRANTIES |
| 18 | +# OR CONDITIONS OF ANY KIND, either express or implied. No content created from |
| 19 | +# VulnTotal should be considered or used as legal advice. Consult an Attorney |
| 20 | +# for any legal advice. |
| 21 | +# VulnTotal is a free software tool from nexB Inc. and others. |
| 22 | +# Visit https://github.com/nexB/vulnerablecode/ for support and download. |
| 23 | + |
| 24 | +import dataclasses |
| 25 | +import json |
| 26 | +from typing import Iterable |
| 27 | +from typing import List |
| 28 | + |
| 29 | +from vulnerabilities.utils import classproperty |
| 30 | + |
| 31 | + |
| 32 | +@dataclasses.dataclass(order=True) |
| 33 | +class VendorData: |
| 34 | + raw_dump: str = "" |
| 35 | + aliases: List[str] = dataclasses.field(default_factory=list) |
| 36 | + affected_versions: List[str] = dataclasses.field(default_factory=list) |
| 37 | + fixed_versions: List[str] = dataclasses.field(default_factory=list) |
| 38 | + |
| 39 | + def to_dict(self): |
| 40 | + return { |
| 41 | + "affected_versions": self.affected_versions, |
| 42 | + "fixed_versions": self.fixed_versions, |
| 43 | + "aliases": self.aliases, |
| 44 | + "raw_dump": self.raw_dump, |
| 45 | + } |
| 46 | + |
| 47 | + |
| 48 | +class Validator: |
| 49 | + def validator_advisory(self, purl) -> Iterable[VendorData]: |
| 50 | + """ |
| 51 | + Yield VendorData object corresponding to vendor |
| 52 | + """ |
| 53 | + return NotImplementedError |
0 commit comments