Skip to content

Commit

Permalink
Add vulnerability alert slide #36
Browse files Browse the repository at this point in the history
  • Loading branch information
pintergreg committed Nov 17, 2024
1 parent 2fb73e7 commit 2c37605
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
50 changes: 50 additions & 0 deletions lectures/16_automatization.md
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,56 @@ just decrease the work by automatizing trivial tasks
:::


## vulnerability alerts

:::::::::::: {.columns}
::::::::: {.column width="65%" .mt-3}
- Common Vulnerabilities and Exposures (CVE)
- a dictionary of common names (i.e., CVE Identifiers) for publicly known information security vulnerabilities [@enwiki:1256072917]
- GitHub [Dependabot](https://docs.github.com/en/code-security/getting-started/dependabot-quickstart-guide)
- uses package manager
- e.g., cargo (Rust), npm (JS), nuget (C#), maven (Java), pip (Python)
- checks dependencies for vulnerabilities

:::::::::
::::::::: {.column width="35%" .text-smaller}
```toml
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^1.26.3"
pandas = "^2.2"
geopandas = "^1.0"
networkx = "^3.2.1"
osmnx = "^1.6.0"
matplotlib = "^3.8.2"
seaborn = "^0.13.0"
contextily = "^1.3.0"
opencv-python = "^4.9.0"
pyaml = "^23.9.7"
pyogrio = "^0.7"
pyarrow = "^15.0.0"
scipy = "^1.12.0"
haversine = "^2.8.1"
mapclassify = "^2.6.1"
openpyxl = "^3.1.2"
ecomplexity = "^0.5.2"
structlog = "^24.1.0"
h3 = "^3.7.7"
pandarallel = "^1.6.5"
jinja2 = "^3.1.4"
tabulate = "^0.9.0"
```
::: {.text-smaller}
Python dependencies managed by poetry
:::
:::::::::
::::::::::::

::: notes
GitLab also has a similar solution
:::


# interruption

:::::::::::: {.columns}
Expand Down
7 changes: 7 additions & 0 deletions lectures/wikipedia.bib
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,10 @@ @misc{enwiki:1253226188
howpublished = "\url{https://en.wikipedia.org/w/index.php?title=TeX&oldid=1253226188}",
note = "[Online; accessed 15-November-2024]"
}
@misc{enwiki:1256072917,
author = "{Wikipedia contributors}",
title = "Common Vulnerabilities and Exposures --- {Wikipedia}{,} The Free Encyclopedia",
year = "2024",
howpublished = "\url{https://en.wikipedia.org/w/index.php?title=Common_Vulnerabilities_and_Exposures&oldid=1256072917}",
note = "[Online; accessed 17-November-2024]"
}

0 comments on commit 2c37605

Please sign in to comment.