Opening notes, haecksathon #5
Hi 👋🙂
It’s so cool you’ve made it here.
This is good to know and to look at.
Spontaneous cases at our local space
The Mobile Verification Toolkit (MVT)
For antistalking:
This forms a one-sided test.
Can we do this on iOS?
Can we do this on iOS? Yes, pretty easy!

create backup in itunes - (encrypted contains more information)
mvt-ios check-backup --output /path/to/output/ /path/to/backup/udid/(look at the itunes backup section on the homepage)
it works the same way when you do the backup in another program
Can we do this with Android & Linux?

The arch & android experience
yay -S android-toolsadb pair 192.168.235.68:33757 ******
# * daemon not running; starting now at tcp:5037
# * daemon started successfully
# Successfully paired to 192.168.235.68:33757 [guid=adb-**************-******]
adb connect 192.168.235.68:36107
# connected to 192.168.235.68:36107
adb devices
# List of devices attached
# 192.168.235.68:36107 device
adb tcpip 5555
# restarting in TCP mode port: 5555
adb devices
# List of devices attached
# 192.168.235.68:36107 offline
adb connect 192.168.235.68:36107
# failed to connect to '192.168.235.68:36107': Connection refused
adb connect 192.168.235.68:43079
# connected to 192.168.235.68:43079
adb devices
# List of devices attached
# 192.168.235.68:36107 offline
# 192.168.235.68:43079 devicemkdir 2026-04-19_mvt-test
cd 2026-04-19_mvt-test/
python -m venv .venv
source .venv/bin/activate.fish
pip install pipx
which pipx
# ../2026-04-19_mvt-test/.venv/bin/pipx
pip install mvt
which mvt-android
# ../2026-04-19_mvt-test/.venv/bin/mvt-android
mvt-android check-adb --serial 192.168.235.68:5555 --output test
# ...asked on mobile to allow backup
du -sh test/
# 272M test/
# turning off debugging..
adb devices
# List of devices attached
# 192.168.235.68:43079 offline

