Skip to content

Instantly share code, notes, and snippets.

@miticollo
miticollo / build_frida.sh
Last active February 19, 2025 06:01
How to build frida-server (≥ 16.2.2) for iOS jailbroken devices
#!/usr/bin/env bash
#
# Build Frida DEB.
# register the cleanup function to be called on the EXIT signal
trap cleanup INT
#######################################
# Deletes the temp directory.
# Globals:
@dinosec
dinosec / frida_ios_version.js
Last active September 27, 2024 21:18
How to obtain the mobile device iOS version from a Frida JS script
// How to obtain the mobile device iOS version from a Frida JS script:
//
// (c) 2020 DinoSec (www.dinosec.com)
if (ObjC.available) {
var version = iOSVersion();
console.log("iOS version: " + version);
// return ObjC.classes.NSProcessInfo.processInfo().operatingSystemVersionString().toString();