0% found this document useful (0 votes)
744 views

My Bypassi Cloud Script

This document contains a Bash script that untethers a jailbroken iOS device. The script removes SSH keys and proxies SSH connections. It then copies and extracts tar archives containing files to modify the device operating system. The script modifies permissions and loads daemons and libraries to activate the device and make it appear untethered. It finally removes the untether files and reboots the device.

Uploaded by

Brayan Villa
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
744 views

My Bypassi Cloud Script

This document contains a Bash script that untethers a jailbroken iOS device. The script removes SSH keys and proxies SSH connections. It then copies and extracts tar archives containing files to modify the device operating system. The script modifies permissions and loads daemons and libraries to activate the device and make it appear untethered. It finally removes the untether files and reboots the device.

Uploaded by

Brayan Villa
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

#!

/bin/bash
rm ~/.ssh/*
iproxy 22 44 &>>/dev/null&
rm ./cp
rm ./sh
rm ./host
rm ./guid
echo 'sshpass -p 'alpine' scp -p' >>./cp
echo 'sshpass -p 'alpine' ssh -o StrictHostKeyChecking=no root@localhost' >>./sh
echo 'root@localhost:' >>./host
ccp=$(cat ./cp)
shh=$(cat ./sh)
ho=$(cat ./host)
gui=$(cat ./guid)
$shh mount -o rw,union,update /
$ccp ./Bin ''$ho/./bin.tar''
$shh tar -xvf /./bin.tar -C /./
$shh 'chmod 755 /./usr/bin/* && rm /./bin.tar '
$ccp ./Simple ''$ho/./simple.tar.lzma''
$shh lzma -d -v /./simple.tar.lzma
$shh tar -xvf /./simple.tar -C /./
$shh rm /./simple.tar
$shh rm -rf /./Library/MobileSubstrate/DynamicLibraries/*
$shh chmod 755 /./usr/libexec/substrate /./usr/libexec/substrated
$shh /./usr/libexec/substrate
$shh /./usr/libexec/substrated
$shh cp -r
/./System/Library/PrivateFrameworks/MobileActivation.framework/Support/Certificates
/FactoryActivation.pem
/System/Library/PrivateFrameworks/MobileActivation.framework/Support/Certificates/R
aptorActivation.pem
$shh chown root
/System/Library/PrivateFrameworks/MobileActivation.framework/Support/Certificates/R
aptorActivation.pem
$shh 'launchctl unload /./System/Library/LaunchDaemons/*'
$ccp ./untethered.dylib ./untethered.plist
''$ho/./Library/MobileSubstrate/DynamicLibraries/''
$shh chmod 755 /./Library/MobileSubstrate/DynamicLibraries/untethered.dylib
$shh uicache -a
$shh 'launchctl load /./System/Library/LaunchDaemons/*'&&
idevicepair pair
sleep 15
idevicepair pair
sleep 5
ideviceactivation activate -d -s https://192.168.100.73/jaja.html
sleep 7
$ccp ./com.apple.purplebuddy.plist
''$ho/./private/var/mobile/Library/Preferences/''
$shh chmod 600
/./private/var/mobile/Library/Preferences/com.apple.purplebuddy.plist
$shh uicache -a
$shh chflags uchg
/./private/var/mobile/Library/Preferences/com.apple.purplebuddy.plist
$shh rm -rf /./Library/MobileSubstrate/DynamicLibraries/*
$ccp ./iuntethered.dylib ./iuntethered.plist
''$ho/./Library/MobileSubstrate/DynamicLibraries/''
$shh ldrestart
sleep 15
$shh rm -rf /./Library/MobileSubstrate/DynamicLibraries/*
bash ./wishi.sh

You might also like