File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 34
34
"https://api.github.com/graphql" , # Requires auth
35
35
"https://anongit.gentoo.org/git/data/glsa.git" , # Git only link
36
36
"https://www.softwaretestinghelp.com/how-to-write-good-bug-report/" , # Cloudflare protection
37
+ "https://www.openssl.org/news/vulnerabilities.xml" , # OpenSSL legacy advisory URL, not longer available
37
38
]
38
39
39
40
# Add any Sphinx extension module names here, as strings. They can be
Original file line number Diff line number Diff line change 11
11
from typing import Iterable
12
12
13
13
from dotenv import load_dotenv
14
+ from fetchcode .package_versions import github_response
14
15
from packageurl import PackageURL
15
16
16
- from vulnerabilities import utils
17
17
from vulntotal .validator import DataSource
18
18
from vulntotal .validator import InvalidCVEError
19
19
from vulntotal .validator import VendorData
@@ -35,7 +35,7 @@ def fetch_github(self, graphql_query):
35
35
GH_TOKEN="your-github-token"
36
36
"""
37
37
load_dotenv ()
38
- return utils . fetch_github_graphql_query (graphql_query )
38
+ return github_response (graphql_query )
39
39
40
40
def datasource_advisory (self , purl ) -> Iterable [VendorData ]:
41
41
end_cursor = ""
You can’t perform that action at this time.
0 commit comments