Skip to content

Commit

Permalink
/s/Mandiant/FireEye/g
Browse files Browse the repository at this point in the history
  • Loading branch information
whitfieldsdad committed Feb 5, 2024
1 parent 85872df commit 4e79d32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,6 @@ df = client.get_scores(
with Workbook('epss.xlsx') as wb:
df.write_excel(
workbook=wb,
worksheet='Mandiant red team tools'
worksheet='FireEye red team tools'
)
```
Binary file modified examples/data/epss.xlsx
Binary file not shown.
6 changes: 4 additions & 2 deletions examples/get-excel-workbook-of-changed-epss-scores.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@

logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s %(name)s %(message)s')

WORKDIR = os.path.join(tempfile.gettempdir(), 'epss')
#WORKDIR = os.path.join(tempfile.gettempdir(), 'epss')
WORKDIR = '~/data/layers/raw/epss'

client = PolarsClient(
include_v1_scores=False,
include_v2_scores=False,
include_v3_scores=True,
verify_tls=False,
)
query = Query(
cve_ids=[
Expand Down Expand Up @@ -43,5 +45,5 @@
with Workbook('epss.xlsx') as wb:
df.write_excel(
workbook=wb,
worksheet='Mandiant red team tools'
worksheet='FireEye red team tools'
)

0 comments on commit 4e79d32

Please sign in to comment.