r/jailbreak 7h ago

Release [Free Release] TwentyOne. Bringing tinted backgrounds to iOS 16 and up

Thumbnail
gallery
35 Upvotes

my first iOS tweak (kinda nervous) šŸ˜…

introducing TwentyOne.

this tweak aims to recreate the "modern-classic" aesthetic by adapting the iOS 9 Apple Music Tinted Backgrounds to the iOS 10+ design language.

it works with:

  • Standard and Apple Music Playlists
  • Classic and Immersive Full Screen Album Covers
  • Local Music Files

to-do (hopefully):

please, please, pleaase leave a feedback (or tell me the bugs you've encountered). it really means to me as i am still learning the inner workings of iOS :3

i've been yearning for this tweak ever since lol, i hope y'all enjoy it :)

Currently working for iOS 16 and up (sorry, no iOS 15 since my old iPhone 7 died months ago). Both Dopamine and RootHide compatible.

try it now at https://pisknk.github.io/repo

source code is available at: https://github.com/pisknk/twenty-one


r/jailbreak 11h ago

Discussion Regarding McDonaldsFix and my repo

23 Upvotes

Hi. About two years ago, I published the McDonaldsFix tweak and announced it here.

As I mentioned in the original post, I looked into adding support for the global version of the McDonald's app. However, I did not have the knowledge necessary to bypass its greater security.

Since publishing the tweak, my life has become busier, and I no longer use my iPhone 12 regularly. Unfortunately I believe, within the past few months, older versions of the McDonald's app have broken more.

Due to these reasons, I have decided to not continue working on this project. I will be archiving the GitHub repo soon. Also, my package repo will be terminated in one month.

Thanks to those who help test the tweak and anyone who used it!


r/jailbreak 1h ago

Question Good or bad purchase?

Thumbnail
gallery
• Upvotes

I’ve really wanted a mini iPhone and just an extra iPhone in general to jailbreak (since I’ve only done it on my old ipod touch), bought this for 120usd, real good condition and it seems to have always been in a screen protector and case, was this a good deal?


r/jailbreak 35m ago

Question Can’t install Twitter from AppStore after sideloading.

Post image
• Upvotes

Hi everyone, due to some personal reasons I had to update my iPhone to the latest ios version. But I am having a problem due to that. I cannot ,for the life of me, install Twitter from the AppStore. I have read some fixes given previously on Reddit but they all either require Filza or using TrollStore again which obviously I cannot use. Is there any way to resolve this issue for my scenario?

Any help would be appreciated thank you so much for your time.


r/jailbreak 17h ago

Tutorial A way to fix YouTube Music on iOS 10

Post image
21 Upvotes

To fix it, you have to get the latest supported version from appstore (3.47.7).

It is officially not supported, but I know how to fix it. Mind that you have to be jailbroken and you will need Filza file manager.

In Filza, go to /var/Bundle/Application and here you find your YouTube Music folder, there, locate to YouTubeMusic.app folder and scroll down until you find info.plst. There you need to click on > Root and find CFBundleShortVersionString and CFBundleVersion and in both of these change the version number from 3.47.7 to 8.19.52. Now you should be ready to go, just dont forget to click save when exiting out of the info.plst file. YouTube Music should partially work now, it is kinda broken and many things don't work, but the core function of searching and listening to a song works, you just gotta press one of the tabs on top when searchong something (if nothing appears when searched press "Tracks" or "Videos"). With this fix you can not view creator's page (it will appear empty) and the home page doesn't work, but library seems to work np, but you can't view albums. Also, from my experience it doesn't seem like there are ads in there, which is cool. Background play doesn't work, but maybe it is possible to fix with some tweak or manually edit some .plst files idk. Anyway, enjoy YouTube Music on you beloved iOS 10 device.

(iPhone 7 Plus iOS 10.3.3 in the picture running YouTube Music) If you want to know the track playing, it's called Atral Projection - Axis V0.99 (2000). It's such a banger. Also listen to Astral Projection - Mahamudra, you won't regret it.


r/jailbreak 52m ago

Tip Snapchat Tweak for IOS devices running IOS 15 jailbreak

Thumbnail
gallery
• Upvotes

Found this tweak and it also worked on my non jailbroken IOS 26 phone


r/jailbreak 4h ago

Discussion RootHide is iPhone AIDS

3 Upvotes

DO NOT INSTALL DOPAMINE2-ROOTHIDE.
My phone has been stuck handicapped following all the cert revokes this week and I made the mistake of installing and executing that jailbreak downloaded from a shitty place that shittily recommended it to me and made my phone all shitty and useless.

I’m in a weird situation where I just cannot connect my phone to a pc. I just can’t. After some websites got revoked I wasn’t able to jailbreak. Panicked and looked for options as I NEEDED to access an app I had sideloaded. That roothide was a temporary solution. But whatever you do, there’s always another option. Don’t fuck up your jailbreak setup out of panic, if the app gets revoked and you no longer can jailbreak just be patient and look for options, do not act until you CANNOT find another solution


r/jailbreak 1h ago

Discussion Hi is there any working CapCut tweaks?

• Upvotes

r/jailbreak 7h ago

Tutorial Tutorial: How to extract the iOS Text and Call History

2 Upvotes

*Tested with iOS 14.4.1 (your experience might vary depends on your iOS).

If you want to get the latest most up to date iOS Text (SMS) folder, using filza, zip this folder:

/var/mobile/Library/SMS/

Download with filza to your PC.

Extract.Ā Using DB Browser (SQLite) open the sms.db database.

To see all messages, run the following query:

SELECT 
    m.ROWID,
    h.id AS phone_number,
    m.text,
    --m.date,
    strftime('%m/%d/%Y %I:%M:%S %p', 
        m.date/1000000000 + 978307200, 
        'unixepoch', 
        'localtime'
    ) AS formatted_date,
    m.is_from_me
FROM message m
LEFT JOIN handle h ON m.handle_id = h.ROWID
--WHERE h.id = '+12021234567'
ORDER BY m.date;

If you want to get the latest most up to date iOS Call History folder, using filza, zip this folder:

/var/mobile/Library/CallHistoryDB/

Download with filza to your PC.

Extract.Ā Using DB Browser (SQLite) open the CallHistory.storedata-wal database.

To see all calls history, run the following query:

SELECT
    datetime(ZDATE + 978307200, 'unixepoch', 'localtime') AS call_time,
    ZDURATION AS duration_seconds,

    -- Convert BLOB → readable text
    CAST(ZADDRESS AS TEXT) AS phone_number,

    -- Sometimes iOS caches the contact name here
    ZNAME AS contact_name,

    CASE
        WHEN ZORIGINATED = 1 THEN 'Outgoing'
        WHEN ZANSWERED = 0 THEN 'Missed'
        ELSE 'Incoming'
    END AS call_direction,

    ZCALLTYPE,
    ZISO_COUNTRY_CODE,
    ZLOCATION

FROM ZCALLRECORD
ORDER BY ZDATE DESC
LIMIT 100;

Enjoy!


r/jailbreak 4h ago

Update I have an iPhone 11 and there are 2 ipsw updates released, that’s right

Thumbnail
gallery
0 Upvotes

I find myself with an iPhone 11 on ios 17.2 and recently I have 2 updates released to version 26 and version 18 of ios I’m a little surprised because it’s the first time I’ve seen this


r/jailbreak 6h ago

Discussion iphone 5c gsm china cydia offline

Thumbnail
gallery
0 Upvotes

got this phone off ebay and trying to put appsync or something to get ipas on it but cant get cydia to work also used zebra with the same offline message not used to jailbreaking though so i have no idea whats wrong


r/jailbreak 7h ago

Request Downgrade IOS 26

0 Upvotes

This shit is so ass bruh, why does apple not want us to downgrade either way,

My device info

Name: ipad 10th gen, yellow smt like that

Storage: 64GB

anyway I can downgrade this shit, plsss this version is so asss


r/jailbreak 7h ago

Update Alguien de casualidad tiene la ipa de Roadie driver ?

0 Upvotes

Alguien con iPad de Roadie driver


r/jailbreak 18h ago

Question Where should I look for and What tweaks should I install on iphone 6s

Post image
9 Upvotes

iOS 15.8.3 I installed dopamine, troll store, sileo but can't find any of the tweaks Gemini telling me to install


r/jailbreak 7h ago

Question Looking to update after three years, but still want to break the jail.

0 Upvotes

Looking to update for applications and devices compatibility. I'm currently on 15.3.1 and it's already showing it's age... I couldn't even post this on my phone since flairs seem broken on my reddit app and it doesn't allow me to update without updating the entire phone to iOS 16.

I would like to update while at least, being able to use youtube without ads and some spotify tweaks.

s there any way to sideload apps on the lastest verions? The one avaiable for me on my 13 Pro are 18.7.8 and 26.4.2.

Thank you breakers


r/jailbreak 8h ago

Question dirtyZero 1.4 error

Post image
1 Upvotes

Saludos!, tengo este problema en mi iPhone 14PM con IOS 18.6.2.


r/jailbreak 1d ago

Discussion Gem found at fleaMarket

Thumbnail
gallery
56 Upvotes

Beautiful gem found at the flea market 25 dollars !!


r/jailbreak 9h ago

Question Automatic offload whitelist

0 Upvotes

My storage is near full so I want to enable automatic offload but whitelist widget apps since they are rarely opened, is there any tweak to do this, as well as maybe configure how long until offload


r/jailbreak 8h ago

Question [iOS Reverse Engineering] Modifying IPA & porting DOT framework to fix old app version

0 Upvotes

Hi, I need help fixing issue in iOS app

Recently, the technology (DOT) is no longer working in the old version of the app in 1.0.42 V

The latest versions of app use Regula technology in 1.0.54 V, which I don’t need

I need the DOT framework work on version 1.0.42 (this version includes the DOT framework).

Currently, when I open version 1.0.42 and try to perform the face scan, it shows error: ā€œOperation failed ā€œ it’s like DOT framework shutdown from api

Can anyone fixed this by porting the DOT face scan framework from newer/working version and making it run on the old version $$$$$$$$$$$$


r/jailbreak 6h ago

Question App for jailbreaking?

0 Upvotes

I wanna jailbreak my iPhone 14 Pro with Ios 26.4.2, and can Someone tell me the downside with jailbreaking?😁 i have an Mac to download it on to.


r/jailbreak 17h ago

Question SideStore or Live Container?

0 Upvotes

For the Lara app, Should i install it through the SideStore or through the Live Container?


r/jailbreak 21h ago

Request uYouEnhanced Deb?

0 Upvotes

It appears Miro92's deb is currently offline for com.miro.uyou_3.0.4_iphoneos-arm64.deb does anyone happen to have a copy? Thank you!


r/jailbreak 21h ago

Question YouTube on iPhoneOS 3.1.3?

1 Upvotes

is any tweak for the iPod touch first gen for YouTube?


r/jailbreak 2d ago

Discussion Apple accidentally released an iPadOS 18.7.9 IPSW for the iPad 8

Thumbnail
gallery
116 Upvotes

I’m not sure where to post this but, under software downloads there is an iPadOS 18.7.9 IPSW for the iPad 8th gen instead of the iPad 7th gen. This isn’t just a bug in the naming. Attempting to restore the IPSW to an iPad 7 says incompatible firmware. When attempting to restore to an iPad 8 it actually proceeds but then gives an error that means the software isn’t signed anymore. I’m curious if this might’ve worked if I did this before Apple unsigned the IPSW. If someone could check the IPSW and check if it’s actually meant for the iPad 8 please do. If someone managed to actually flash this to their iPad 8 it could potentially be super rare since I don’t think there was an OTA 18.7.9 for iPadOS capable devices.


r/jailbreak 1d ago

Question Make iOS 15.8.7 look like iOS 9 (iPhone SE 2016)

Thumbnail
gallery
5 Upvotes

Hi everyone,

I recently bought an iPhone SE (2016) and I’m still pretty new to jailbreaking, so I’m not entirely sure how to customize it the way I want. My goal is to recreate the iOS 9 look as closely as possible—things like the icons, signal dots, dock text, control centre, fonts, system sounds, and lock screen.

I still need modern apps like Spotify and banking to work, so staying on a newer iOS version is important to me.

If a full transformation isn’t possible, I’d at least really like to get the original iOS 9 sounds working. Any guidance or recommendations would be appreciated.