The following files are available for download. You can use the checksum and signatures files to verify the integrity of the files.
This zine goes into detail about mobile phone surveillance and the most common and effective countermeasures against it. Popular misconceptions and urban legends are addressed to help ensure that our threat models and OpSec are based on reality. This zine is suitable for everyone involved in social movements.
Download | Signature | Key |
---|---|---|
Dieses Zine befasst sich eingehend mit der Überwachung von Mobiltelefonen und den gängigsten und wirksamsten Gegenmaßnahmen. Verbreitete Missverständnisse und urbane Legenden werden angesprochen, um sicherzustellen, dass unsere Bedrohungsmodelle auf der Realität beruhen. Dieses Zine ist für alle geeignet, die sich in sozialen Bewegungen engagieren.
Download | Signature | Key |
---|---|---|
Este zine entra en detalle sobre la vigilancia de los teléfonos móviles y las contramedidas más comunes y eficaces. Se abordan los conceptos erróneos populares y las leyendas urbanas para ayudar a garantizar que nuestros modelos de amenaza son OpSec se basen en la realidad. Este zine es adecuado para todos los que participan en los movimientos sociales.
Download | Signature | Key |
---|---|---|
Download the files you want, import the PGP key, and verify the downloads. You can use the following script.
#!/bin/bash
set -euo pipefail
trap "echo 'Something went wrong! Download not verified!'" EXIT
for file in pandemic-security.pdf pandemic-security.pdf.sig; do
wget "https://opsec.riotmedicine.net/static/downloads/$file"
done
wget -O - https://riotmedicine.net/static/hakan.gpg.asc | gpg2 --import
# on success, the output will include the text
# Good signature from "Håkan Geijer "
gpg2 --verify-files pandemic-security.pdf.sig
echo ''
echo 'Download successfully verified.'
echo ''
trap - EXIT