Skip to content

Instantly share code, notes, and snippets.

@dogtopus
Created April 22, 2013 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogtopus/5434537 to your computer and use it in GitHub Desktop.
Save dogtopus/5434537 to your computer and use it in GitHub Desktop.
PandaDaemon remove script
#!/bin/bash
# Run as root, and it'll remove PandaDaemon automatically
# Make sure you have uninstalled ALL the pxl package before you run this script
# This script comes up with NO WARRANTY, it may brick your iOS device, you should know what you're doing before you start.
echo 'Cleaning up...'
rm -rf /Applications/PandaSpace.app
rm -rf /var/mobile/PandaSpace
rm -rf /var/mobile/Library/PandaSpace/
rm -rf /var/mobile/Library/NetDragon/
rm -rf /var/mobile/Library/TQServer/
rm -rf /var/mobile/Media/PandaSpace/
rm -rf /var/mobile/Media/DownAgent/
rm -rf /var/mobile/Media/PandaHome/
rm -rf /var/mobile/Media/PandaSpaceTmp/
rm -f /System/Library/LaunchDaemons/`ls -a1 /System/Library/LaunchDaemons/ |grep -E 'NetDragon|PandaSpace|PandaDaemon'`
rm -f /usr/bin/TQServer /usr/bin/DownAgent
rm -rf /var/root/Library/NetDragon
rm -rf /var/root/Library/ndDaemon
rm -rf /var/root/Media/PXL
rm -rf /var/root/Media/ndDaemon
echo 'Rebooting...'
reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment