IOS越狱相关-2017

几年前iphone4上用过的:


安装:
network-cmds
sudo
tcpdump
mobileterminal


命令:
ifconfig
tcpdump -i <网卡号> -w f.cap -s 0




20170510用的:
ios9.3.2
PP盘古越狱


威锋源:apt.feng.com
常用Cydia源地址大全:http://www.25pp.com/news/news_69368.html


安装:
Network Commands
iOS Terminal


修改root密码:
su root
alpine
iPhone:~root#
passwd //修改root用户的密码
123456
123456
iPhone:~root# 
passwd mobile //修改mobile用户的密码
456789
456789


Reveal持续试用:终端执行命令defaults delete com.ittybittyapps.Reveal
Reveal越狱后看其它APP的界面:
scp ~/dev/_tmp/libReveal.dylib [email protected]:/Library/MobileSubstrate/DynamicLibraries/
scp ~/dev/_tmp/libReveal.plist [email protected]:/Library/MobileSubstrate/DynamicLibraries/
killall SpringBoard


libReveal.plist内容:

{
	Filter = {
		Bundles = (
			"com.tencent.xin",
			"com.taobao.taobao4iphone",
		);
	};
}

ssh连手机:
ssh [email protected]
ssh [email protected]


越狱手机:
获取手机安装的所有App:
Class LSApplicationWorkspace_class = objc_getClass("LSApplicationWorkspace");
NSObject* workspace = [LSApplicationWorkspace_class performSelector:@selector(defaultWorkspace)];

NSLog(@"apps: %@", [workspace performSelector:@selector(allApplications)]);


手机上App List:

com.meituan.imeituan ",
com.apple.TencentWeiboAccountMigrationDialog ",
com.apple.webapp ",
com.apple.AccountAuthenticationDialog ",
com.apple.podcasts ",
com.apple.SafariViewService ",
com.apple.MobileAddressBook ",
com.apple.Music ",
com.apple.AdSheetPhone ",
com.apple.mobileslideshow ",
com.apple.iCloudDriveApp ",
com.apple.Fitness ",
com.apple.FacebookAccountMigrationDialog ",
com.apple.appleseed.FeedbackAssistant ",
com.apple.DemoApp ",
com.apple.PassbookUIService ",
com.apple.ios.StoreKitUIService ",
com.apple.AppStore ",
com.apple.mobiletimer ",
com.apple.social.SLGoogleAuth ",
com.apple.gamecenter.GameCenterUIService ",
com.apple.Preferences ",
com.apple.CloudKit.ShareBear ",
com.apple.gamecenter ",
com.apple.datadetectors.DDActionsService ",
com.apple.ServerDocuments ",
com.apple.mobileme.fmf1 ",
com.apple.MailCompositionService ",
com.apple.Bridge ",
com.apple.facetime ",
com.apple.Maps ",
com.apple.InCallService ",
com.apple.WebContentFilter.remoteUI.WebContentAnalysisUI ",
com.apple.VoiceMemos ",
com.apple.mobilephone ",
com.apple.CompassCalibrationViewService ",
com.apple.mobilemail ",
com.apple.CoreAuthUI ",
com.apple.iad.iAdOptOut ",
com.ichitaso.mobileterminal ",
com.apple.social.SLYahooAuth ",
com.apple.WebSheet ",
com.apple.TrustMe ",
com.apple.PrintKit.Print-Center ",
com.apple.news ",
com.apple.HealthPrivacyService ",
com.apple.family ",
com.apple.mobilesms.compose ",
com.apple.compass ",
com.apple.quicklook.quicklookd ",
com.teiron.pphelperns ",
com.apple.SiriViewService ",
com.apple.reminders ",
com.apple.WebViewService ",
com.apple.mobilesms.notification ",
com.apple.Diagnostics.Mitosis ",
com.apple.iosdiagnostics ",
com.apple.fieldtest ",
com.apple.tips ",
com.apple.Health ",
com.apple.iBooks ",
com.apple.MobileSMS ",
com.apple.weather ",
com.apple.webapp1 ",
com.apple.managedconfiguration.MDMRemoteAlertService ",
com.apple.GameController ",
com.apple.SharedWebCredentialViewService ",
com.apple.mobileme.fmip1 ",
com.apple.Home.HomeUIService ",
com.apple.AskPermissionUI ",
com.apple.MusicUIService ",
com.apple.stocks ",
com.apple.videos ",
com.apple.StoreDemoViewService ",
com.apple.MobileStore ",
com.apple.purplebuddy ",
com.apple.Diagnostics ",
com.apple.mobilecal ",
com.apple.PhotosViewService ",
com.apple.share ",
com.saurik.Cydia ",
com.apple.PreBoard ",
com.apple.Passbook ",
com.apple.mobilesafari ",
com.apple.camera ",
com.apple.appleaccount.AACredentialRecoveryDialog ",
com.apple.calculator ",
com.apple.mobilenotes ",
jp.co.canon.bsd.iphone.PIXMA-Print ",
com.tencent.qqmail ",
com.mike.masaike ",
com.c2vl.kgamebox ",
com.tencent.mqq ",
com.path.FastImageCacheDemo ",
com.jujiu.awer ",
com.taojin.dungeon2 ",
com.apple.itunesconnect.mobile ",
com.apple.TestFlight ",
com.xxx.testSqlite ",
com.jampot.dungeonpuzzlesmagesaga ",
com.evernote.iPhone.Evernote ",
com.moji.MojiWeather ",
com.cisco.anyconnect.gui ",
com.tencent.xin ",
com.cmbchina.cmblife ",
net.techet.netanalyzerlite ",
com.antfortune.wealth ",
com.taobao.travel ",
com.apple.MobileReplayer "



你可能感兴趣的:(iOS)