Skip to content

Instantly share code, notes, and snippets.

@segg21
Last active May 6, 2023 03:43
Updated for Fugu Beta 8+
#!/bin/sh
### Procursus 2
### INFO: Repacks deb as rootless with iphoneos-arm64 arch, moves legacy tweak dir to
### new directory, and resigns. Does not do any further modification.
set -e
if ! type dpkg-deb >/dev/null 2>&1; then
echo "Please install dpkg-deb."
fi
if ! type file >/dev/null 2>&1; then
echo "Please install file."
fi
if ! ldid 2>&1 | grep -q procursus; then
echo "Please install Procursus ldid."
fi
LDID="ldid -Hsha256"
if [ -z "$1" ] || ! file "$1" | grep -q "Debian binary package" ; then
echo "Usage: $0 [/path/to/deb]"
exit 1;
fi
echo "Creating workspace"
TEMPDIR_OLD="$(mktemp -d)"
TEMPDIR_NEW="$(mktemp -d)"
if [ ! -d "$TEMPDIR_OLD" ] || [ ! -d "$TEMPDIR_NEW" ]; then
echo "Creating temporary directories failed."
exit 1;
fi
### Real script start
dpkg-deb -R "$1" "$TEMPDIR_OLD"
if [ -d "$TEMPDIR_OLD/var/jb" ]; then
echo "Deb already rootless. Skipping and exiting cleanly."
rm -rf "$TEMPDIR_OLD" "$TEMPDIR_NEW"
exit 0;
fi
mkdir -p "$TEMPDIR_NEW"/var/jb
cp -a "$TEMPDIR_OLD"/DEBIAN "$TEMPDIR_NEW"
sed 's|iphoneos-arm|iphoneos-arm64|' < "$TEMPDIR_OLD"/DEBIAN/control > "$TEMPDIR_NEW"/DEBIAN/control
rm -rf "$TEMPDIR_OLD"/DEBIAN
mv -f "$TEMPDIR_OLD"/.* "$TEMPDIR_OLD"/* "$TEMPDIR_NEW"/var/jb >/dev/null 2>&1 || true
mv -f "$TEMPDIR_OLD"/* "$TEMPDIR_OLD"/* "$TEMPDIR_NEW"/var/jb >/dev/null 2>&1 || true
if [ -d "$TEMPDIR_NEW/var/jb/Library/MobileSubstrate/DynamicLibraries" ]; then
mkdir -p "$TEMPDIR_NEW/var/jb/usr/lib"
mv "$TEMPDIR_NEW/var/jb/Library/MobileSubstrate/DynamicLibraries" "$TEMPDIR_NEW/var/jb/usr/lib/TweakInject"
fi
find "$TEMPDIR_NEW" -type f | while read -r file; do
if file -ib "$file" | grep -q "x-mach-binary; charset=binary"; then
echo "$file"
INSTALL_NAME=$(otool -D "$file" | grep -v -e ":$" -e "^Archive :" | head -n1)
otool -L "$file" | tail -n +2 | grep /usr/lib/'[^/]'\*.dylib | cut -d' ' -f1 | tr -d "[:blank:]" > "$TEMPDIR_OLD"/._lib_cache
if [ -n "$INSTALL_NAME" ]; then
install_name_tool -id @rpath/"$(basename "$INSTALL_NAME")" "$file" >/dev/null 2>&1
fi
if otool -L "$file" | grep -q CydiaSubstrate; then
install_name_tool -change /Library/Frameworks/CydiaSubstrate.framework/CydiaSubstrate @rpath/libsubstrate.dylib "$file" >/dev/null 2>&1
fi
if [ -f "$TEMPDIR_OLD"/._lib_cache ]; then
cat "$TEMPDIR_OLD"/._lib_cache | while read line; do
install_name_tool -change "$line" @rpath/"$(basename "$line")" "$file" >/dev/null 2>&1
done
fi
install_name_tool -add_rpath "/usr/lib" "$file" >/dev/null 2>&1
install_name_tool -add_rpath "/var/jb/usr/lib" "$file" >/dev/null 2>&1
$LDID -s "$file"
fi
done
dpkg-deb -Zzstd -b "$TEMPDIR_NEW" "$(pwd)"/"$(grep Package: "$TEMPDIR_NEW"/DEBIAN/control | cut -f2 -d ' ')"_"$(grep Version: "$TEMPDIR_NEW"/DEBIAN/control | cut -f2 -d ' ')"_"$(grep Architecture: "$TEMPDIR_NEW"/DEBIAN/control | cut -f2 -d ' ')".deb
### Real script end
echo "Cleaning up"
rm -rf "$TEMPDIR_OLD" "$TEMPDIR_NEW"
@segg21
Copy link
Author

segg21 commented Apr 11, 2023

[About]

This script is used to convert rootful tweaks/applications into rootless, supporting Fugu 15 Beta.

This fixes,

  • mobilesubstrate
  • iphoneos-arm64

[Setup]

Follow these steps in order

  1. Sileo: Install file, fakeroot, ldid, odcctools, zstd, & filza (jailed should work)
  2. SSH: Using an SSH client (Ex: iTerminal , WebSSH), connect too root@localhost:2222 password alpine
  3. SSH - Rebuild Trust Cache:
  • ldid -S /var/jb/usr/lib/libfakeroot-0.dylib
  • /var/jb/basebin/jbctl rebuild_trustcache
  1. Create the script above, or download repack-rootless.sh

Share repack-rootless.sh with Filza and save in Documents folder. Doesn’t have to be specifically, but for this explanation /var/mobile/Documents will be used.

[Convert]

Share the tweak.deb you want to convert to rootless with Filza, also place in Documents folder.

In SSH, change directory to Documents folder.

  • cd /var/mobile/Documents

Finally, use this command with your deb. In this example, our deb is called tweak.deb

  • sh repack-rootless.sh tweak.deb

Rootless package will be saved in Documents folder. You can share that deb with Sileo and install as normal.

Happy Rootless!

@DrJapan
Copy link

DrJapan commented May 3, 2023

For the life of me, I can't seem to connect to ssh, with palera1n, iOS 16.4.1, and both an A9X and iPhone 8+. Any thoughts?

@segg21
Copy link
Author

segg21 commented May 6, 2023

For the life of me, I can't seem to connect to ssh, with palera1n, iOS 16.4.1, and both an A9X and iPhone 8+. Any thoughts?

Palera1n and Dopamine you must login as mobile instead of root, port 2222.
You also need OpenSSH installed if you haven’t

@segg21
Copy link
Author

segg21 commented May 6, 2023

Also you may find this useful/easier, https://github.com/haxi0/Derootifier

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment