-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
123 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# SPDX-License-Identifier: MIT | ||
|
||
from __future__ import annotations | ||
|
||
from ..registry import CliRegistry | ||
|
||
|
||
cli = CliRegistry() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# SPDX-License-Identifier: MIT | ||
|
||
from __future__ import annotations | ||
|
||
from . import cli | ||
|
||
# Import to register all the commands | ||
from . import ( # noqa: F401 | ||
cve, | ||
) | ||
|
||
|
||
def main() -> None: | ||
cli.main() | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# SPDX-License-Identifier: MIT | ||
|
||
from __future__ import annotations | ||
|
||
import json | ||
import logging | ||
import sys | ||
import urllib.parse | ||
from datetime import datetime, timedelta, timezone | ||
from typing import Any | ||
|
||
import asyncio | ||
from sqlalchemy import func, select | ||
from sqlalchemy.dialects.postgresql import insert | ||
from sqlalchemy.ext.asyncio import ( | ||
AsyncConnection, | ||
AsyncEngine, | ||
create_async_engine, | ||
) | ||
|
||
from ...database import Base, NvdCve | ||
from ...util import requests | ||
from . import cli | ||
|
||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class ClientCve: | ||
server: str | ||
|
||
@staticmethod | ||
@cli.register( | ||
'cve', | ||
arguments=[ | ||
cli.add_argument( | ||
'cve', | ||
help='the CVE to look up', | ||
metavar='CVE', | ||
), | ||
cli.add_argument( | ||
'--server', | ||
default='http://localhost:5000', | ||
help='the server to use', | ||
), | ||
cli.add_argument( | ||
'--debug', | ||
action='store_true', | ||
help='enable debug output', | ||
), | ||
] | ||
) | ||
def run(cve: str, server: str, debug: bool) -> None: | ||
logging.basicConfig(level=debug and logging.DEBUG or logging.INFO) | ||
ClientCve(server)(cve) | ||
|
||
def __init__(self, server: str) -> None: | ||
self.server = server | ||
|
||
def __call__(self, cve: str) -> None: | ||
with requests.RetrySession() as rsession: | ||
resp = rsession.get( | ||
urllib.parse.urljoin(self.server, f'v1/cves/{cve}'), | ||
) | ||
if resp.status_code == 200: | ||
data = resp.json() | ||
json.dump(data, sys.stdout, indent=2) | ||
elif resp.status_code == 404: | ||
print(f'{self.cve} not found', file=sys.stderr) | ||
else: | ||
resp.raise_for_status() | ||
|
||
|
||
if __name__ == '__main__': | ||
ClientCve.run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# SPDX-License-Identifier: MIT | ||
|
||
from sqlalchemy import select | ||
|
||
from glvd.cli.client.cve import ClientCve | ||
|
||
|
||
class TestIngestNvd: | ||
async def test_one(self, requests_mock): | ||
requests_mock.get( | ||
f'http://localhost/v1/cves/TEST-0', | ||
json=[ | ||
{ | ||
'id': f'TEST-0', | ||
'lastModified': '2019-04-01T00:00:00', | ||
}, | ||
], | ||
) | ||
|
||
client = ClientCve(server='http://localhost') | ||
assert client(cve='TEST-0') is None |