forked from certtools/intelmq
-
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.
Merge branch 'certtools:develop' into develop
- Loading branch information
Showing
164 changed files
with
15,545 additions
and
10,091 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,61 @@ | ||
#Github Workflow to run test documentation built | ||
# | ||
#SPDX-FileCopyrightText: 2020 IntelMQ Team <[email protected]> | ||
#SPDX-License-Identifier: AGPL-3.0-or-later | ||
# | ||
name: "Build the documentation with sphinx" | ||
# SPDX-FileCopyrightText: 2023 Filip Pokorný | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
name: "Build and publish documentation" | ||
|
||
on: | ||
push: | ||
branches: [develop, maintenance, master] | ||
paths-ignore: | ||
- '.github/**' | ||
branches: | ||
- develop | ||
- maintenance | ||
- mkdocs | ||
|
||
pull_request: | ||
branches: [develop, maintenance] | ||
paths-ignore: | ||
- '.github/**' | ||
branches: | ||
- develop | ||
- maintenance | ||
- mkdocs | ||
|
||
release: | ||
types: | ||
- published | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
documentationbuild: | ||
build: | ||
runs-on: ubuntu-latest | ||
name: Build the documentation | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: "Checkout repository" | ||
uses: actions/checkout@v3 | ||
|
||
- name: "Setup python" | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: "Install build dependencies" | ||
run: | | ||
pip install mkdocs-material mike lunr pygments mkdocstrings[python] mkdocs-material mkdocs-glightbox mkdocs-redirects mkdocs-minify-plugin | ||
- name: "Prepare git" | ||
run: | | ||
git fetch origin gh-pages --depth=1 | ||
git config user.name intelmq-bot | ||
git config user.email intelmq-bot | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: "Build docs without publishing" | ||
if: github.event_name == 'pull_request' | ||
run: | | ||
mkdocs build | ||
- name: Install documentation dependencies | ||
run: pip install -r docs/requirements.txt | ||
- name: "Build docs with version tag and publish" | ||
if: github.event_name == 'release' | ||
run: | | ||
mike deploy --push --update-aliases ${{ github.ref_name }} latest | ||
- name: Build documentation | ||
run: make -C docs html | ||
- name: "Build docs with branch tag and publish" | ||
if: github.event_name == 'push' | ||
run: | | ||
mike deploy --push ${{ github.ref_name }} |
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 |
---|---|---|
|
@@ -26,14 +26,8 @@ The correct name for the parameter "delimeter" is "delimiter". Please fix your c | |
# intelmq/tests/bots/collectors/fireeye/first_request.json "attch" | ||
{"alert": [{"explanation": {"malwareDetected": {"malware": [{"md5Sum": "21232f297a57a5a743894a0e4a801fc3", "sha256": "8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918", "name": "Downloader.Emotet"}]}, "osChanges": []}, "src": {"smtpMailFrom": "[email protected]"}, "alertUrl": "https://127.0.0.1/emps/eanalysis?e_id=161862&type=attch", "action": "blocked", "occurred": "2021-01-05 14:19:06 +0100", "dst": {"smtpTo": "[email protected]"}, "smtpMessage": {"subject": "Online Streaming am 30.06.2020 1800 Uhr REMINDER"}, "applianceId": "16EV1C1A6K94", "id": 1454270, "rootInfection": 7113664, "sensorIp": "127.0.0.1", "name": "MALWARE_OBJECT", "severity": "MAJR", "uuid": "1591de22-4926-4124-b3ed-ffff96766295", "ack": "no", "product": "EMAIL_MPS", "sensor": "mail", "vlan": 0, "malicious": "yes", "scVersion": "0000.000"}], "appliance": "CMS", "version": "CMS (CMS) 0.0.0.000000", "msg": "concise", "alertsCount": 1} | ||
|
||
# ./docs/user/universe.rst:55: bund ==> bind, bound | ||
Developed and maintained by `Intevation <https://intevation.de>`_, initially funded by `BSI <http://bsi.bund.de/>`_. | ||
|
||
# ./docs/dev/harmonization-fields.rst:27: compromized ==> compromised | ||
Destination destination.local_hostname :ref:`string` Some sources report a internal hostname within a NAT related to the name configured for a compromized system | ||
|
||
# ./docs/dev/harmonization-fields.rst:28: compromized ==> compromised | ||
Destination destination.local_ip :ref:`ipaddress` Some sources report a internal (NATed) IP address related a compromized system. N.B. RFC1918 IPs are OK here. | ||
# ./docs/overview.md:60: bund ==> bind, bound | ||
Developed and maintained by [Intevation](https://intevation.de), initially funded by [BSI](https://bsi.bund.de/). | ||
|
||
# ./intelmq/tests/bots/parsers/shodan/test_parser.py:36: ALLO ==> ALLOW | ||
' ALLO MLST MLSD SITE P@SW STRU CLNT MFMT\n' |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
# SPDX-FileCopyrightText: 2023 Filip Pokorný | ||
# SPDX-License-Identifier: AGPL-3.0-or-later | ||
|
||
.PHONY: coverage docs clean | ||
|
||
coverage: | ||
python -m pytest --cov=intelmq -v | ||
|
||
docs: mkdocs.yml docs/* intelmq/etc/feeds.yaml intelmq/etc/harmonization.conf intelmq/lib/harmonization.py | ||
python3 scripts/generate-feeds-docs.py | ||
python3 scripts/generate-event-docs.py | ||
mkdocs build | ||
|
||
clean: | ||
rm -rf docs_build .mypy_cache .coverage .pytest_cache dist | ||
|
||
codespell: | ||
codespell -x .github/workflows/codespell.excludelines | ||
|
||
test: | ||
pytest --no-cov -v intelmq/tests/ && echo "Success!" |
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 @@ | ||
docs/index.md |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.