Monitor and visualize cellular base stations collected by the accompanying tweak.
iOS Versions: 14.0 - 18.0
Clone this repo and navigate to this directory:
$ git clone [email protected]:seemoo-lab/CellGuard.git
$ cd CellGuard/CellGuardAppSwift
Rename and populate the developer team ID file:
$ cp Config/Developer.xcconfig.template Config/Developer.xcconfig
$ open Config/Developer.xcconfig
Open the project in Xcode:
$ open CellGuard.xcodeproj
Initially, the first XCode build will fail, but the second ones should be successful as all required files have been generated.
The app can either be distributed as a .deb package for jailbroken devices with Cydia or as an .ipa file which can be installed using TrollStore.
You'll need a Rust toolchain on your system to build the app's native libraries.
# Install Rust using rustup (https://www.rust-lang.org/tools/install)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Install additional iOS targets (64 bit for real device & simulator):
rustup target add aarch64-apple-ios x86_64-apple-ios
# Install cargo-lipo
cargo install cargo-lipo cargo-bundle-licenses
The first time after cloning, you have to compile the libraries yourself by executing the following command:
PROJECT_DIR=. ./build-rust.sh
For release builds required for TestFlight uploads, also run the following command:
PROJECT_DIR=. CONFIGURATION=Release ./build-rust.sh
If you're using XCode to build an app archive for TestFlight distribution, you should switch the Build Configuration setting to Release in the Archive section.
Upon changes, XCode will rebuild the libraries automatically.
You can connect your device to your Mac and install the app via XCode. If you don't have a paid developer account, the app will only be available for seven days. After which you have to reinstall it. On jailbroken devices, you can use Unified AppSync for an infinite validity period.
A .ipa file can be installed using TrollStore.
- Open the project in XCode
- Select as build configuration CellGuard > Any iOS Device (arm64)
- Click Product -> Archive
- Wait for the Archives window to open
- Right-click the latest archive and select Show in Finder
- In Finder right-click on the .xcarchive file and select Show package content
- Navigate to Products -> Applications -> CellGuard.app
- Copy the CellGuard.app file to a new folder outside named Payload
- Compress the Payload folder
- Rename the created Payload.zip file to CellGuard-X_X_X.ipa
Copy the final .ipa file via iCloud to iPhone and install it using TrollStore.
References:
- GeneXus: Requires paid Apple Developer Account
- https://stackoverflow.com/a/72724017: Doesn't require an Apple Developer Account
The build-ipa.py
script automates all of these steps:
# Install dependencies
pipenv sync
# Build .ipa
pipenv run python3 build_ipa.py
# Build .tipa (TrollStore-friendly IPA)
pipenv run python3 build_ipa.py -tipa
A .deb file can be installed on jailbroken iPhones using the included dpkg package manager or alternative app stores like Cydia, Zebra, or Sileo.
First, install Theos and setup its environment variables. Then you can run of one of the following commands:
# Only build the Debian package (.deb) containing the app
THEOS_PACKAGE_SCHEME=rootless FINALPACKAGE=1 gmake package
# Build the .deb and install it on your local device
THEOS_PACKAGE_SCHEME=rootless gmake do
To read more on how to build jailbroken apps, see
⛔️ Currently, a bug assumed to be caused by Swift concurrency prevents the app from starting if it is installed using a .deb file. Read more on GitHub.
Thus, we recommend the other way of installing the app.
To update the Rust dependencies run the following commands in the top-level directory.
# Update Rust dependencies with cargo package manager
cargo update
# Update generated license file, might require some manual edits
# See: https://github.com/sstadick/cargo-bundle-licenses?tab=readme-ov-file#usage
gunzip CellGuard/cargo-licenses.json
cargo bundle-licenses --format json --output CellGuard/cargo-licenses.json --previous CellGuard/cargo-licenses.json
gzip CellGuard/cargo-licenses.json
Apple requires apps to include a privacy manifest. Remember to expand the manifest if you use new APIs or collect new types of data.
Read more:
- https://developer.apple.com/documentation/bundleresources/privacy_manifest_files
- https://developer.apple.com/app-store/user-privacy-and-data-use/
- https://developer.apple.com/app-store/app-privacy-details/
We include minimized and gzipped JSON files in CellGuard to reduce the app's final size.
You can create a new optimized JSON files as follows:
# Minimize JSON file (optional)
jq -r tostring file.json > file-min.json
mv file-min.json file.json
# Gzip JSON file
gzip file.json