Skip to content

Commit c4b9a4d

Browse files
chg: Renamed project.
1 parent 599ff22 commit c4b9a4d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ options:
3333
--since SINCE Maximum timestamp of the MISP attribute.
3434
```
3535

36-
### Publishing sightings to Vulnerability Lookup
36+
### Publishing sightings to Vulnerability-Lookup
3737

3838
```bash
3939
$ MISPSight
4040
Querying MISP…
4141
Query completed successfully.
42-
Pushing sightings to Vulnerability Lookup…
42+
Pushing sightings to Vulnerability-Lookup…
4343
```
4444

4545

mispsight/publish.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ def remove_case_insensitive_duplicates(input_list: list[str]) -> list[str]:
1717

1818

1919
def push_sighting_to_vulnerability_lookup(attribute, vulnerability_ids):
20-
"""Create a sighting from a MISP attribute and push it to the Vulnerability Lookup instance."""
21-
print("Pushing sightings to Vulnerability Lookup…")
20+
"""Create a sighting from a MISP attribute and push it to the Vulnerability-Lookup instance."""
21+
print("Pushing sightings to Vulnerability-Lookup…")
2222
vuln_lookup = PyVulnerabilityLookup(
2323
config.vulnerability_lookup_base_url, token=config.vulnerability_auth_token
2424
)
@@ -40,20 +40,20 @@ def push_sighting_to_vulnerability_lookup(attribute, vulnerability_ids):
4040
"creation_timestamp": creation_timestamp,
4141
}
4242

43-
# Post the JSON to Vulnerability Lookup
43+
# Post the JSON to Vulnerability-Lookup
4444
try:
4545
r = vuln_lookup.create_sighting(sighting=sighting)
4646
if "message" in r:
4747
print(r["message"])
4848
except Exception as e:
4949
print(
50-
f"Error when sending POST request to the Vulnerability Lookup server:\n{e}"
50+
f"Error when sending POST request to the Vulnerability-Lookup server:\n{e}"
5151
)
5252

5353

5454
def main() -> None:
5555
parser = argparse.ArgumentParser(
56-
prog="FediVuln-Stream", description="Allows access to the streaming API."
56+
prog="MISPSight", description="Allows access to the streaming API."
5757
)
5858
parser.add_argument(
5959
"--since",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
66
[project]
77
name = "MISPSight"
88
version = "0.4.2"
9-
description = "A client that retrieves vulnerability observations from a MISP server and pushes them to a Vulnerability Lookup instance."
9+
description = "A client that retrieves vulnerability observations from a MISP server and pushes them to a Vulnerability-Lookup instance."
1010
authors = [
1111
{name = "Cédric Bonhomme", email = "cedric.bonhomme@circl.lu"}
1212
]

0 commit comments

Comments
 (0)