# SPDX-License-Identifier: CC0-1.0 # # Copyright (C) 2024 Wojtek Kosior # 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