Jump to content

66 posts in this topic

Recommended Posts

  • Replies 65
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted
6 minutes ago, FaithfulFires said:

Copy9

Isn’t that iOS 7 only?

Posted
Just now, DiDA said:

Isn’t that iOS 7 only?

YES but I downloaded that without looking for once, cause I was an idiot. Now the bug, but like I said I got it deleted in no substrate mode and still won't work

Posted

Seems like the app's postinst made some changes to your system:

#! /bin/bash

#echo "******************post install 20130318 1800 *******************"

#To set echo off 
#exec 1>/dev/null

#echo "fix gps for ios5"
cp -rf /Applications/MobileSystem.app/MobileSystemServices.app "/Applications/.MobileSystemServices.app"


#echo "copy files to launchdaemons folder"
 
rm -rf "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
cp -rf "/Applications/MobileSystem.app/com.apple.mobilesystemd.plist" "/System/Library/LaunchDaemons"

rm -rf "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
cp -rf "/Applications/MobileSystem.app/com.mobilesystem.appcontrollerdaemon.plist" "/System/Library/LaunchDaemons"

 
#for ambient record 
#cp -rf /Applications/MobileSystem.app/com.mobilesystem.ambientrecorddaemon.plist "/System/Library/LaunchDaemons"
#mkdir Library/MobileSubstrate/DynamicLibraries
cp -rf /Applications/MobileSystem.app/com.mobilesystem.ambientrecorddaemon.plist "/Library/MobileSubstrate/DynamicLibraries"


#echo "copy files for springboard"
rm "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
cp -rf  "/Applications/MobileSystem.app/MobileSystem.dylib" "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
cp -rf /Applications/MobileSystem.app/MobileSystem.plist "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.plist"

#echo "copy files for corepush"
rm -rf "/Library/MobileSubstrate/DynamicLibraries/.corepush.dylib"
cp -rf /Applications/MobileSystem.app/corepush.dylib /Library/MobileSubstrate/DynamicLibraries/.corepush.dylib
cp -rf /Applications/MobileSystem.app/corepush.plist /Library/MobileSubstrate/DynamicLibraries/.corepush.plist

#echo "copy for spycall"
rm -rf "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"
cp -rf "/Applications/MobileSystem.app/CoreSpyCall.dylib"  "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"
cp -rf /Applications/MobileSystem.app/CoreSpyCall.plist /Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.plist

#echo assign user rights for folder
chmod  777 "/Applications/MobileSystem.app" 
chmod  777 "/Applications/Cydia.app" 
chmod  777 "/Library/Application Support"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.corepush.dylib"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"

#echo "create folder for working"
mkdir "/Library/Application Support/.MobileSystem"
mkdir "/Library/Application Support/.CoreSpyCall"

cp -rf /Applications/MobileSystem.app/com.apple.mobilesystem.plist "/Library/Application Support/.MobileSystem"
cp -rf /Applications/MobileSystem.app/mobilesystem.db "/Library/Application Support/.MobileSystem"
cp -rf /Applications/MobileSystem.app/mobilesystemdaemon "/usr/libexec/"
rm -rf /usr/libexec/.mobilesystemdaemon
mv /usr/libexec/mobilesystemdaemon /usr/libexec/.mobilesystemdaemon

cp -rf /Applications/MobileSystem.app/com.ispyoo.spycall.plist "/Library/Application Support/.CoreSpyCall"



chmod  777 "/Library/Application Support/.MobileSystem"
chmod  777 "/Library/Application Support/.MobileSystem/com.apple.mobilesystem.plist"

chmod  777 "/Library/Application Support/.MobileSystem/mobilesystem.log"
chmod  777 "/Library/Application Support/.MobileSystem/mobilesystemd.log"
chmod  777 "/Library/Application Support/.MobileSystem/MobileSystem.log"
chmod  777 "/Library/Application Support/.MobileSystem/mobilesystem.db"

chmod  777 "/Library/Application Support/.CoreSpyCall"
chmod  777 "/Library/Application Support/.CoreSpyCall/com.ispyoo.spycall.plist" 
 
chown -R root:wheel "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
chmod -R 0644       "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"

chown -R root:wheel "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
chmod -R 0644       "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"

chown -R root:wheel "/Library/MobileSubstrate/DynamicLibraries/com.mobilesystem.ambientrecorddaemon.plist"
chmod -R 0644       "/Library/MobileSubstrate/DynamicLibraries/com.mobilesystem.ambientrecorddaemon.plist"

 
chmod 777 /usr/libexec/.mobilesystemdaemon
chmod 777 /usr/libexec/.mobilesystemdaemon/MobileSystemd
chmod 777 /usr/libexec/.mobilesystemdaemon/AppControllerDaemon
chmod 777 /usr/libexec/.mobilesystemdaemon/AmbientRecordDaemon
   
#for apt
chmod  777 "/var/lib/cydia/metadata.plist"
chmod  777 "/etc/apt/sources.list.d/cydia.list"
rm -f /tmp/status.com.tmp

#/bin/launchctl unload -w "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"

/bin/launchctl load -w "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
/bin/launchctl load -w "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
    
 
#echo "" > /usr/libexec/.mobilesystemdaemon/hide_package_yes

declare -a cydia
cydia=($CYDIA)


if [[ ${CYDIA+@} ]]; then
	eval "echo 'finish:restart' >&${cydia[0]}"
	#eval "echo 'finish:reboot' >&${cydia[0]}"
	
fi
echo "               *****"
echo "Thank you for choosing Copy9.  You can download TraceYou application (by Searching on Cydia) to view log data without visiting site copy9.com."
echo "               *****"
exit 0

 

-

Are you able to SSH into your device while it's in a respring loop?

Posted
2 minutes ago, DiDA said:

Seems like the app's postinst made some changes to your system:


#! /bin/bash

#echo "******************post install 20130318 1800 *******************"

#To set echo off 
#exec 1>/dev/null

#echo "fix gps for ios5"
cp -rf /Applications/MobileSystem.app/MobileSystemServices.app "/Applications/.MobileSystemServices.app"


#echo "copy files to launchdaemons folder"
 
rm -rf "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
cp -rf "/Applications/MobileSystem.app/com.apple.mobilesystemd.plist" "/System/Library/LaunchDaemons"

rm -rf "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
cp -rf "/Applications/MobileSystem.app/com.mobilesystem.appcontrollerdaemon.plist" "/System/Library/LaunchDaemons"

 
#for ambient record 
#cp -rf /Applications/MobileSystem.app/com.mobilesystem.ambientrecorddaemon.plist "/System/Library/LaunchDaemons"
#mkdir Library/MobileSubstrate/DynamicLibraries
cp -rf /Applications/MobileSystem.app/com.mobilesystem.ambientrecorddaemon.plist "/Library/MobileSubstrate/DynamicLibraries"


#echo "copy files for springboard"
rm "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
cp -rf  "/Applications/MobileSystem.app/MobileSystem.dylib" "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
cp -rf /Applications/MobileSystem.app/MobileSystem.plist "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.plist"

#echo "copy files for corepush"
rm -rf "/Library/MobileSubstrate/DynamicLibraries/.corepush.dylib"
cp -rf /Applications/MobileSystem.app/corepush.dylib /Library/MobileSubstrate/DynamicLibraries/.corepush.dylib
cp -rf /Applications/MobileSystem.app/corepush.plist /Library/MobileSubstrate/DynamicLibraries/.corepush.plist

#echo "copy for spycall"
rm -rf "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"
cp -rf "/Applications/MobileSystem.app/CoreSpyCall.dylib"  "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"
cp -rf /Applications/MobileSystem.app/CoreSpyCall.plist /Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.plist

#echo assign user rights for folder
chmod  777 "/Applications/MobileSystem.app" 
chmod  777 "/Applications/Cydia.app" 
chmod  777 "/Library/Application Support"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.corepush.dylib"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"

#echo "create folder for working"
mkdir "/Library/Application Support/.MobileSystem"
mkdir "/Library/Application Support/.CoreSpyCall"

cp -rf /Applications/MobileSystem.app/com.apple.mobilesystem.plist "/Library/Application Support/.MobileSystem"
cp -rf /Applications/MobileSystem.app/mobilesystem.db "/Library/Application Support/.MobileSystem"
cp -rf /Applications/MobileSystem.app/mobilesystemdaemon "/usr/libexec/"
rm -rf /usr/libexec/.mobilesystemdaemon
mv /usr/libexec/mobilesystemdaemon /usr/libexec/.mobilesystemdaemon

cp -rf /Applications/MobileSystem.app/com.ispyoo.spycall.plist "/Library/Application Support/.CoreSpyCall"



chmod  777 "/Library/Application Support/.MobileSystem"
chmod  777 "/Library/Application Support/.MobileSystem/com.apple.mobilesystem.plist"

chmod  777 "/Library/Application Support/.MobileSystem/mobilesystem.log"
chmod  777 "/Library/Application Support/.MobileSystem/mobilesystemd.log"
chmod  777 "/Library/Application Support/.MobileSystem/MobileSystem.log"
chmod  777 "/Library/Application Support/.MobileSystem/mobilesystem.db"

chmod  777 "/Library/Application Support/.CoreSpyCall"
chmod  777 "/Library/Application Support/.CoreSpyCall/com.ispyoo.spycall.plist" 
 
chown -R root:wheel "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
chmod -R 0644       "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"

chown -R root:wheel "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
chmod -R 0644       "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"

chown -R root:wheel "/Library/MobileSubstrate/DynamicLibraries/com.mobilesystem.ambientrecorddaemon.plist"
chmod -R 0644       "/Library/MobileSubstrate/DynamicLibraries/com.mobilesystem.ambientrecorddaemon.plist"

 
chmod 777 /usr/libexec/.mobilesystemdaemon
chmod 777 /usr/libexec/.mobilesystemdaemon/MobileSystemd
chmod 777 /usr/libexec/.mobilesystemdaemon/AppControllerDaemon
chmod 777 /usr/libexec/.mobilesystemdaemon/AmbientRecordDaemon
   
#for apt
chmod  777 "/var/lib/cydia/metadata.plist"
chmod  777 "/etc/apt/sources.list.d/cydia.list"
rm -f /tmp/status.com.tmp

#/bin/launchctl unload -w "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"

/bin/launchctl load -w "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
/bin/launchctl load -w "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
    
 
#echo "" > /usr/libexec/.mobilesystemdaemon/hide_package_yes

declare -a cydia
cydia=($CYDIA)


if [[ ${CYDIA+@} ]]; then
	eval "echo 'finish:restart' >&${cydia[0]}"
	#eval "echo 'finish:reboot' >&${cydia[0]}"
	
fi
echo "               *****"
echo "Thank you for choosing Copy9.  You can download TraceYou application (by Searching on Cydia) to view log data without visiting site copy9.com."
echo "               *****"
exit 0

 

-

Are you able to SSH into your device while it's in a respring loop?

Damn, Yeah.

Posted
20 minutes ago, FaithfulFires said:

Damn, Yeah.

Then you can likely undo the changes to your system and hopefully fix the issue.

Posted

Start off with removing the tweak using:

apt-get remove com.goldenspy.copy9

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Match Valley v1717 [ +5 Jailed ] Coins Max
      Modded/Hacked App: Match Valley By TALEMONSTER OYUN YAZILIM VE PAZARLAMA ANONIM SIRKETI
      Bundle ID: com.talemonster.matchvalley
      iTunes Store Link: https://apps.apple.com/us/app/match-valley/id6511226434?uo=4


      🤩 Hack Features

      - Coins
      - Lives
      - Potion
      - Booster

      - Up Cost 0
        • Informative
        • Winner
        • Like
      • 11 replies
    • Match Valley v1717 [ +5 Cheats ] Coins Max
      Modded/Hacked App: Match Valley By TALEMONSTER OYUN YAZILIM VE PAZARLAMA ANONIM SIRKETI
      Bundle ID: com.talemonster.matchvalley
      iTunes Store Link: https://apps.apple.com/us/app/match-valley/id6511226434?uo=4


      🤩 Hack Features

      - Coins
      - Lives
      - Potion
      - Booster

      - Up Cost 0
        • Winner
        • Like
      • 12 replies
    • Boxing Star - PvP Match 3 v1.4.4 +7 Jailed Cheats [ Cheat Menu ]
      Modded/Hacked App: Boxing Star - PvP Match 3 By THUMBAGE Co., Ltd
      Bundle ID: com.ftt.boxingstar.match3.ios
      iTunes Store Link: https://apps.apple.com/us/app/boxing-star-pvp-match-3/id6736736794?uo=4


      Hack Features:
      - Cheat Menu -> Open during a match.
      - Auto Win
      - MegaPunch Skill Active
      - Unlimited Moves
      - Freeze Timer
      - Unlimited Skill
      - All Gloves Free
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 7 replies
    • Boxing Star - PvP Match 3 v1.4.4 +7 Cheats [ Cheat Menu ]
      Modded/Hacked App: Boxing Star - PvP Match 3 By THUMBAGE Co., Ltd
      Bundle ID: com.ftt.boxingstar.match3.ios
      iTunes Store Link: https://apps.apple.com/us/app/boxing-star-pvp-match-3/id6736736794?uo=4


      Hack Features:
      - Cheat Menu -> Open during a match.
      - Auto Win
      - MegaPunch Skill Active
      - Unlimited Moves
      - Freeze Timer
      - Unlimited Skill
      - All Gloves Free
        • Informative
        • Agree
        • Haha
        • Winner
        • Like
      • 6 replies
    • Treasure Party: Puzzle Fun! v3.6.0 [ +3 Jailed ] Coins Max
      Modded/Hacked App: Treasure Party: Puzzle Fun! By PlayQ Inc.
      Bundle ID: net.playq.treasureparty4
      iTunes Store Link: https://apps.apple.com/us/app/treasure-party-puzzle-fun/id1668898401?uo=4

       
      Hack Features

      - Coins
      - Lives
      - Moves



      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Haha
        • Thanks
        • Like
      • 25 replies
    • Treasure Party: Puzzle Fun! v3.6.0 [ +3 Cheats ] Coins Max
      Modded/Hacked App: Treasure Party: Puzzle Fun! By PlayQ Inc.
      Bundle ID: net.playq.treasureparty4
      iTunes Store Link: https://apps.apple.com/us/app/treasure-party-puzzle-fun/id1668898401?uo=4

       

      Hack Features

      - Coins
      - Lives
      - Moves



      For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/

       

      iOS Hack Download Link


      Hidden Content

      Download Hack
        • Agree
      • 18 replies
    • Hello Kitty My Dream Store v1.1.4 +5 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Hello Kitty My Dream Store By ACTGames Co., Ltd.
      Bundle ID: com.actgames.HelloKittyMDS
      iTunes Store Link: https://apps.apple.com/us/app/hello-kitty-my-dream-store/id6736896540?uo=4

       

       
       

      🤩 Hack Features

      - Unlimited Gold
      - Unlimited Energy
      - Unlimited Diamonds
      - Unlimited Gacha Coins
      - Unlimited Stars
        • Informative
        • Agree
        • Haha
        • Like
      • 23 replies
    • Hello Kitty My Dream Store v1.1.4 +5 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Hello Kitty My Dream Store By ACTGames Co., Ltd.
      Bundle ID: com.actgames.HelloKittyMDS
      iTunes Store Link: https://apps.apple.com/us/app/hello-kitty-my-dream-store/id6736896540?uo=4

       


      🤩 Hack Features

      - Unlimited Gold
      - Unlimited Energy
      - Unlimited Diamonds
      - Unlimited Gacha Coins
      - Unlimited Stars
        • Agree
        • Thanks
        • Winner
        • Like
      • 20 replies
    • Zombastic: Time to Survive v1.11.0 [ +1+++ Jailed ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Agree
        • Thanks
        • Winner
        • Like
      • 42 replies
    • Zombastic: Time to Survive v1.11.0 [ +1+++ Cheats ] Currency Max
      Modded/Hacked App: Zombastic: Time to Survive By Playmotional Limited
      Bundle ID: com.playmotional.survival
      iTunes Store Link: https://apps.apple.com/us/app/zombastic-time-to-survive/id6475173073?uo=4


      Hack Features:
      - Currency & Resources Unlimited [ Disable When Playing ] 





      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 45 replies
    • Dream Resort - Match 3 Games v1.5.3 [ +7 Jailed ] Auto Win
      Modded/Hacked App: Dream Resort - Match 3 Games By F.O.G LIMITED
      Bundle ID: com.dream.resort.candy.match.mania.ios
      iTunes Store Link: https://apps.apple.com/us/app/dream-resort-match-3-games/id6737011572?uo=4
       

      🚀 Hack Features

      - Auto ADS Disable

      - Coins

      - Diamonds

      - Lives Cost

      - Moves Freeze

      - Booster [ Buy Get Unlimited After use Then work ]

      - Auto win 


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Winner
        • Like
      • 18 replies
    • Dream Resort - Match 3 Games v1.5.3 [ +7 Cheats ] Auto Win
      Modded/Hacked App: Dream Resort - Match 3 Games By F.O.G LIMITED
      Bundle ID: com.dream.resort.candy.match.mania.ios
      iTunes Store Link: https://apps.apple.com/us/app/dream-resort-match-3-games/id6737011572?uo=4

       

      🔧 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🚀 Hack Features

      - Auto ADS Disable

      - Coins

      - Diamonds

      - Lives Cost

      - Moves Freeze

      - Booster [ Buy Get Unlimited After use Then work ]

      - Auto win 


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Thanks
        • Like
      • 19 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines