blob: 03e92ec5d76943777702cc7ec5b981ce581554fd (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# SPDX-License-Identifier: CC0-1.0
#
# Copyright (C) 2024 Wojtek Kosior <koszko@koszko.org>
# Make sure you have Pandoc, a LaTeX distribution, Poppler (version 22.09.0 was
# used — might be relevant because we scrape the output of its `pdftohtml'),
# Python as well as Python packages `BeautifulSoup4', `pyyaml' (YAML parser
# library), `requests' and `geopandas' (version 0.14.2 was used, 1.0 will not
# work) installed.
PYTHON=python3
PANDOC=pandoc
LATEXMK=latexmk
PDFTOHTML=pdftohtml
DEFAULT_TARGETS = \
profiles_with_scraped_info.yaml \
blackobird_scraped_profiles.yaml \
tables.pdf \
techniques_table_doc.pdf \
countries_table_doc.pdf \
motives_table_doc.pdf \
sectors_table_doc.pdf
all: $(DEFAULT_TARGETS)
.PHONY: all
.SUFFIXES: .pdf .md ss.html
.md.pdf:
$(PANDOC) \
-V geometry:margin=1.10in \
-r markdown-auto_identifiers \
--number-sections \
--shift-heading-level-by=-1 \
--columns=1 \
-o $@ $<
scraping:
mkdir $@
scraping/Threat_Group_Cards: | scraping
mkdir $@
scraping/Threat_Group_Cards/Threat_Group_Cards_v2.0.pdf: | \
scraping/Threat_Group_Cards
wget -O $@ "https://github.com/blackorbird/APT_REPORT/raw/master/Threat_Group_Cards_v2.0.pdf"
.pdfss.html:
$(PDFTOHTML) $< $@
tables.md: threats_by_sector_table.py profiles.yaml
$(PYTHON) $^ > $@
profiles_with_scraped_info.yaml: scrape_mitre_groups_info.py profiles.yaml
$(PYTHON) $^ > $@
blackobird_scraped_profiles.yaml: scrape_blackobird_groups_info.py \
scraping/Threat_Group_Cards/Threat_Group_Cards_v2.0ss.html
$(PYTHON) $^ > $@
techniques_table.tex: techniques_table.py profiles_with_scraped_info.yaml
$(PYTHON) $^ > $@
# hack
country motive sector:
true
.PHONY: country motive sector
countries_table.tex target_map.svg: countries_motives_sectors_tables.py country \
blackobird_scraped_profiles.yaml
$(PYTHON) $^ > countries_table.tex
sectors_table.tex: countries_motives_sectors_tables.py sector \
blackobird_scraped_profiles.yaml
$(PYTHON) $^ > $@
motives_table.tex: countries_motives_sectors_tables.py motive \
blackobird_scraped_profiles.yaml
$(PYTHON) $^ > $@
%_table_doc.pdf: %_table_doc.tex tlp.tex %_table.tex
$(LATEXMK) -pdf $<
th-proj-archive.tar.gz: Makefile profiles.yaml scrape_mitre_groups_info.py \
tables.md techniques_table_doc.tex techniques_table.py \
sectors_table_doc.tex countries_table_doc.tex \
countries_motives_sectors_tables.py threats_by_sector_table.py \
tlp.tex $(DEFAULT_TARGETS)
tar --transform='s|^|th-proj-archive/|' \
--mtime=1970-01-01T00:00:00-00:00 --group=0 --owner=0 \
-czf $@ $^
clean:
rm -rf tables.md techniques_table.tex countries_table.tex \
motives_table.tex sectors_table.tex sectors_table.tex \
empty_world_map.svg target_map.svg th-proj-archive.tar.gz \
$(DEFAULT_TARGETS)
$(LATEXMK) -C
.PHONY: clean
magisterclean: clean
rm -rf scraping/
.PHONY: magisterclean
|