iOS Jailbreak [Meta] June Banner Contest - Finals |
- [Meta] June Banner Contest - Finals
- [discussion] thanks to u/saurik from a blind jailbreaker
- [Discussion] [Warning] This new Xiaolian Jailbreak looks extremely sketchy.
- [Update] Blobsaver v1.1 - A cross-platform open-source GUI app for saving SHSH blobs
- [Release] PokeCall: Answer calls like a Pokemon master
- [Release] GNU Debugger with ARM64 Support
- [Request] A Super Low Power Mode Tweak concept designed by me.
- [Release] TapToMute - Quickly switch between no sound and the previous sound level.
- [Question] Is there a tweak that could do this on iOS 11.1.2?
- [Release] OutofReach (tweak to hide apps in Reachability!) has been released by @Andywiik
- [Discussion] Problems with iOS that could be fixed with a tweak/Tweak ideas
- [TIP] Can’t sign into your Apple ID due to no input field for 2FA?
- [Discussion] CokePokes updates Spectre for Snapchat - allows saving snaps. No bans yet!
- [Request] A tweak that searches the web when search is pressed in spotlight search automatically
- [Release] Gmail Midnight: Night mode for Gmail
- [Question] Possible to downgrade 11.3.1 to 10.x.x on 5s?
- [Discussion] jailbreak won’t be opensource: any risks?
- [Request] Display remaining storage on the CC.
- [Update] AutoClashBotiOS v4.2 | fixes all known issues
- [Discussion] A7 Devices: 11.3.1 or 10.3.X?
- [Question] My camera roll/camera app seems to be broken. I cannot save, send, view, or delete any photos (although the thumbnails are there and I can view them) but when I look up my DCIM folder in Filza, all my photos are there. I also cannot take new photos.
- [Question] Any good jailbreak pranks?
- [QUESTION] Lockhtml weathr widget file location
- [TIP] if you are having freezes on electra
- [question] remove internet provider throttle on iPhone or optimize
[Meta] June Banner Contest - Finals Posted: 24 Jun 2018 11:14 AM PDT
| ||
[discussion] thanks to u/saurik from a blind jailbreaker Posted: 24 Jun 2018 01:47 PM PDT Hi everyone Even though he's not gonna see this, I just want to give a huge thanks to u/saurik You see, I am blind and I rely on voiceover to use my iPhone. Voiceover reads text out loud and was first introduced on the iPhone 3GS. Anyway, when I got my first iPhone which was a 6, I wanted to jailbreak and customize my phone. I wanted to use tweaks like activator, filza, bridge, and others, but I was not sure if cydia would be accessible with voiceover. When I finally jailbroke, I was surprised to find that cydia was fully accessible with voiceover and I could enjoy everything it had to offer. I know saurik didn't have to do this for such a small percentage of the jailbreak community, but he did. He is such an amazing person and I wish him good luck on whatever he decides to do next. He may have left the jailbreak scene,, but I am very glad he made cydia fully accessible for everyone. I just hope the new package installers will be as accessible as cydia Thanks again u/saurik [link] [comments] | ||
[Discussion] [Warning] This new Xiaolian Jailbreak looks extremely sketchy. Posted: 24 Jun 2018 08:21 PM PDT UPDATE: Added their repo and the debs on that repo. UPDATE 2: This jb actually uses some old Electra binaries from what I can see.. UPDATE 3: Mods have deleted the thread containing the link to Xiaolian due to it breaking the GPL license. I reccommend you don't download at all now. Or spread the link. If you are interested in using this jailbreak... BE EXTREMELY CAREFUL. I'm not even going to link it since I truly don't trust it* You can choose to take my word or not but I'm just looking out for you.. I have been looking through the source code and already found some suspect files like libmis_patch.dylib*, xiaolin_helper, and xpc_patch. Xiaolian helper sounds like something from the PP days which is not surprising given this is supposedly coming from a Chinese Jailbreaking team. In their ViewController.m they import a header I have yet to find under the name "dlcfn.h" but I think this may be used to reallocate memory or relocate data in the FS. Source. Just a word of caution. I don't trust this jailbreak not just because of the contents of it's code but because it's installing a "helper" in the bootstrap. Oh and on top of this the mobilesubstrate on their repo is the same from the last updated by saurik. not substitute, and it cannot be substrate since it's closed source. Source BE CAREFUL
*libmis seems to have some relation to signing binaries which may be apart of their codesigning for whatever is in their bootstrap. Source [link] [comments] | ||
[Update] Blobsaver v1.1 - A cross-platform open-source GUI app for saving SHSH blobs Posted: 24 Jun 2018 09:43 PM PDT (Open source on Github) blobsaverA GUI for saving SHSH blobs using encounter's fork of tsschecker. Supports both Mac and Windows. Requires Java. If you have an antivirus, select "Always Allow" for anything related to tsschecker or Java. You can track any progress made on the application here(you can't download it until I release it). Features
Changes in this version
FeedbackPlease send feedback via Github Issue or Reddit PM if you encounter any bugs/problems or have a feature request. [link] [comments] | ||
[Release] PokeCall: Answer calls like a Pokemon master Posted: 24 Jun 2018 02:37 AM PDT
| ||
[Release] GNU Debugger with ARM64 Support Posted: 24 Jun 2018 01:44 PM PDT A long time ago, I saw this: https://github.com/swigger/gdb-ios and thought it would be cool as hell if I could use GDB to debug 64 bit applications. I feel the fluidity of debugging with GDB is unmatched compared to LLDB. I was able to compile it (couldn't believe it), but it was unusable due to how broken/buggy it was. If you sent SIGINT (ctrl+c), this GDB would not suspend the application, it wouldn't bring up the GDB prompt, and it wouldn't let you type. A broken breakpoint would always be inserted right when you attach, and you couldn't delete it ("could not insert breakpoint -1"), making you unable to debug. That's the level of broken this was. I took about five days to fix most of the bugs to make it usable and I plan to continue after I get home from the beach. I also added two new features, add-aslr-bp and add-aslr-set. This is mostly for assembly level debugging. These commands will automatically add the ASLR slide to breakpoints and the left hand side of the set command. To use: set add-aslr-bp on set add-aslr-set on For add-aslr-set, your upper bound is where the __TEXT segment (or the segment that contains the application's code) ends. Why? Because memory addresses already have ASLR accounted for. To find out where it ends, do Ctrl+S in IDA Pro. You'll know what to do after that. So, if you'd like to use an on-device GDB instead of LLDB, now you can! Add my repo: https://shmoo419.github.io and install GNU Debugger. Please keep in mind it is buggy. If attaching via the executable name doesn't work (a feature I had to add), please use the PID. However, I need your help. I can't find all the bugs myself. If you encounter a bug or any debug output, please DM me on Twitter (@hackedbyshmoo) with steps to reproduce said bug or what the debug output was. I hate taking credit for what I didn't do. I can't stand people who do that. Swigger added support for arm64. That was all him and he did a damn good job of it. I'm just fixing it up. If I didn't think fixing this GDB didn't warrent giving myself credit, I wouldn't. But it was no piece of cake. I put in a very large amount of effort to make this as usable as possible so I hope you enjoy it :) Run it as root or else attaching via the executable name won't work. Put your gdbinit in /var/root/. NOTE: This doesn't work for iOS 11. iOS 11 support coming when Electra drops so I can jailbreak and test on this phone. I know there's already jailbreaks out with SSH but this phone was expensive and I don't want to screw it up. However, it works on iOS 10 and below. IF YOU JAILBROKE WITH DOUBLEHELIX, YOU WON'T BE ABLE TO SEND SIGNALS OVER SSH. This is due to the jailbreak itself. My friend was jailbroken with DoubleHelix and couldn't send signals, so he rejailbroke with Goblin and that fixed the problem. edit: fixed formatting [link] [comments] | ||
[Request] A Super Low Power Mode Tweak concept designed by me. Posted: 24 Jun 2018 06:31 PM PDT Hi! I am a designer, so today a I designed a Super Low Power Mode tweak, hope somebody can work with me, to create this, here it is the full concept. It has tons and tons of features and also takes advantage of the oled display. [link] [comments] | ||
[Release] TapToMute - Quickly switch between no sound and the previous sound level. Posted: 24 Jun 2018 04:32 PM PDT Hello, this is another release from the Auxilium Development Team. This tweak is called TapToMute, based on this request here. TapToMute allows you to quickly switch between a sound level of zero and the previous sound level before the zero.1 There are no settings to configure. There are no screenshots available. Download: Auxilium Repo. (https://repo.auxiliumdev.com) Developer: Simalary (Chris) (Email) Built for iOS 11.x - 11.1.2 jailbreaks running the Electra Toolkit.2 Tested on iPhone8,1 (iPhone 6s) running iOS 11.1.2 (15B202). 1 - If the volume is already set to zero upon installing TapToMute, the previous level is defaulted to 100%. 2 - Should work on the upcoming 11.3.1 jailbreak out of the box without any issues. Further testing may be necessary. If you have any type of feedback such as comments, recommendations, suggestions, or problems, do not be afraid to contact me. [link] [comments] | ||
[Question] Is there a tweak that could do this on iOS 11.1.2? Posted: 24 Jun 2018 01:44 PM PDT
| ||
[Release] OutofReach (tweak to hide apps in Reachability!) has been released by @Andywiik Posted: 24 Jun 2018 06:45 AM PDT | ||
[Discussion] Problems with iOS that could be fixed with a tweak/Tweak ideas Posted: 24 Jun 2018 04:02 PM PDT Problems with stock iOS 11:
Tweak ideas:
Have you experienced any problems with stock iOS that could be fixed with a tweak? Have you heard of any tweaks that fix problems with stock iOS? Do you know if an idea from my list has already been made into a tweak? Leave it in the comments and I'll add it! [link] [comments] | ||
[TIP] Can’t sign into your Apple ID due to no input field for 2FA? Posted: 24 Jun 2018 07:37 AM PDT As soon as you know the code, put it in the password field alongside your password. E.g. username: jailbreakingisawesome Password: waituntilyougeterrors You get 2FA code : 666666 username: jailbreakingisawesome Password: waituntilyougeterrors666666 I had just re-jail broken my iPod Touch 4 ( 6.1.6 ) and found out that I couldn't sign into any apple service...... [link] [comments] | ||
[Discussion] CokePokes updates Spectre for Snapchat - allows saving snaps. No bans yet! Posted: 24 Jun 2018 07:29 AM PDT Cokpokes has updated Spectre on his beta repo which allows you to save snaps. He claims a month has gone with no bans. More features coming soon! [link] [comments] | ||
[Request] A tweak that searches the web when search is pressed in spotlight search automatically Posted: 24 Jun 2018 10:41 AM PDT
| ||
[Release] Gmail Midnight: Night mode for Gmail Posted: 24 Jun 2018 08:01 AM PDT | ||
[Question] Possible to downgrade 11.3.1 to 10.x.x on 5s? Posted: 24 Jun 2018 07:17 PM PDT Is there any way to downgrade my 5s 11.3.1 to ios 10 version? I know apple stop signing those version, but I have a dumb question, is this possible? [link] [comments] | ||
[Discussion] jailbreak won’t be opensource: any risks? Posted: 25 Jun 2018 12:20 AM PDT In latest tweet Coolstar said he won't release electra source code. Is it me, or I see a security risk? I mean, it's a tool that exploit vulnerabilities to escape the sandbox and so on, who is guaranteeing me that it doesn't contain malware? [link] [comments] | ||
[Request] Display remaining storage on the CC. Posted: 24 Jun 2018 09:06 PM PDT | ||
[Update] AutoClashBotiOS v4.2 | fixes all known issues Posted: 24 Jun 2018 01:30 PM PDT For a full feature list and installation guide visit the website https://autoclashbotios.com Supports iOS 9 - 10
Bug Fixes!
v4 Rewritten troop recognition during attack Request troops fixed Fixed crashing during training Fixed base search iPad 2,3,4
v4.1 Fixed troop deployment order Fixed returning home when still trying to deploy troops Extra checks in place Changed full camp detection method should be more reliable
v4.2 More bug fixes hopefully I have managed to fix all the issues for everybody.
IOS 11?
AutoTouch is out for iOS 11 so expect support soon
Repo: http://autoclashbotios.yourepo.com Password: autoclashbotios Subreddit: r/AutoClashBotiOS [link] [comments] | ||
[Discussion] A7 Devices: 11.3.1 or 10.3.X? Posted: 24 Jun 2018 12:12 PM PDT If we have an A7 device (iPhone 5S , iPad Air , iPad Mini 2 , iPad Mini 3) and have blobs for 10.3.X, should we use noncereboot1131 to downgrade to 10.3.X or just continue to wait on 11.3.1 for Electra? [link] [comments] | ||
Posted: 24 Jun 2018 03:46 PM PDT This happened after my phone went super crazy and logged me out of every single app and I had to re-log in to everything. Still unable to access anything photo related, but the files are intact. Also when I go to about>general it tells me I have 0 photos, and my About>storage doesn't even show photos on the list any more when it tells you how much space each app is taking up. Seems like the app is just bugged somehow, can you think of a fix without restoring? I'll lose my jailbreak if i do :( Or maybe I won't... If i recently backed up, can i restore from that and keep my jb? also on 10.1.1 / 6s thanks [link] [comments] | ||
[Question] Any good jailbreak pranks? Posted: 24 Jun 2018 12:58 PM PDT I installed 69Nice on a friends device onetime without him realizing and he thought it was hilarious when he finally found out. Any other cool pranks you can do? [link] [comments] | ||
[QUESTION] Lockhtml weathr widget file location Posted: 24 Jun 2018 07:06 PM PDT Looking for the HTML files that lockhtml uses to display the weathr widget that comes preinstalled. Are there any other widgets out there that use the stock weather app to display weather? [link] [comments] | ||
[TIP] if you are having freezes on electra Posted: 24 Jun 2018 12:57 PM PDT just run SemiRestore11-Lite from electra's main repo, and then run Delectra . I was having like 5 freezes every day and after doing that i have completed one week without any freezes at all. [link] [comments] | ||
[question] remove internet provider throttle on iPhone or optimize Posted: 24 Jun 2018 08:20 PM PDT Hello , I looking for a tweak / patch that removes the provider internet throttle My provider throttle after 5gb me to 64kbits How can I stop te throttle? In iOS 6 had helped me „My3g" After this it was direct-routed and the internet had perfectly worked on throttled phone it was possible to play online games like counterstrike over hotspot with perfect ping if I was throttled Can anybody tell me how I can do remove throttle on iOS 11.3.1 or 10.3.1 ? Or gives anybody there can write a similar tweak that works with Telekom ? Or a tweak what optimize it ? Thanks [link] [comments] |
You are subscribed to email updates from iOS Jailbreak (iPhone, iPad, iPod Touch). To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment