• Breaking News

    Saturday, February 22, 2020

    iOS Jailbreak [RELEASE] DarkPapers - Dark mode wallpapers, your way. +50 day/night appearance aware OLED and Full HD wallpapers for the native iOS 13 wallpaper dark mode switch

    iOS Jailbreak [RELEASE] DarkPapers - Dark mode wallpapers, your way. +50 day/night appearance aware OLED and Full HD wallpapers for the native iOS 13 wallpaper dark mode switch


    [RELEASE] DarkPapers - Dark mode wallpapers, your way. +50 day/night appearance aware OLED and Full HD wallpapers for the native iOS 13 wallpaper dark mode switch

    Posted: 21 Feb 2020 04:37 PM PST

    [Release] Ra1nbox - Jailbreak without a PC using a portable Linux board (checkra1n)

    Posted: 21 Feb 2020 03:18 AM PST

    More information about Ra1nbox, the required parts list, instructions and the software:
    https://ra1nbox.com/
    Youtube video + tutorial:
    https://www.youtube.com/watch?v=TUxA95flghs

    ----

    So as some of you might remember, 3 months ago I posted a Upcoming post about a Checkra1n dongle using a Raspberry Pi Zero. Since then I've kept the topic fairly up-to-date. But it turned out that all effort was for nothing, as the Rpi0 doesn't work (correctly). Since then I've worked on an alternative.

    I present to you: Ra1nbox! The portable checkra1n jailbreak solution based on the NanoPi Neo2.

    The NanoPi comes with a metal case, display and 3 buttons attached. This makes it very easy to set verbose mode, safe mode and some other cool stuff which would've only be possible using buttons.

    But why?! Doesn't product X work better to use checkra1n?

    The main idea behind this build is that a non-tech person could build it with minimal knowledge of soldering, Linux, wiring etc. Just buy the parts I listed, put everything together and follow the instructions in the video or on the website.

    The next important thing is: You. Don't. Need. A. PC. EVER! (except for the one-time initial setup)

    If I don't need a PC, then how would I update checkra1n to the latest version?

    Good question! Using the built-in menu, go to Options > Check for updates. The update will be downloaded and automatically applied on next boot. This not only includes the latest checkra1n, but also includes my software which provides the shell around checkra1n. So it powers the display, adds the menu options and provides a safe-shutdown option.

    I'm climbing the Mount Everest tomorrow; can I jailbreak on top of the mountain without a PC?

    Hell yes! You can go anywhere remote and still jailbreak using Ra1nbox. The only thing you'll need is a micro-USB power source. For example a powerbank. Take the Ra1nbox with you in your backpack while you're out camping, on vacation in a foreign country, at your parents, while on the bus to work... I think you get my point :)
    PS. if you're actually planning on climbing the Mt. Everest and jailbreak ^ be sure to send me a pic ;-)

    submitted by /u/FIdelity88
    [link] [comments]

    [Request] This is a really simple tweak. I would love a tweak that automatically closes out of the private tab when you close out of safari.

    Posted: 21 Feb 2020 05:22 PM PST

    This would save our butts so many times guys

    submitted by /u/c0rruptch33se
    [link] [comments]

    [Tutorial] Secure and customize your SSH installation and port! (iOS 13)

    Posted: 21 Feb 2020 05:52 PM PST

    I'm sure everyone here is familiar with changing the SSH password in order to secure your system, but what if I told you that there's a better solution that's more secure and and more convenient than a password?

    For some background, sshd—the ssh background daemon that controls all serverside connections—allows for multiple ways of authenticating users. The most basic of these is password authentication, but there are several others which can be used on iOS. What we're going over here is called public/private key authentication, and it works similarly to HTTPS. In pub/privkey encryption, two keys exist: the public key, used to encrypt information, and the private key, used to decrypt this information. Simply put, in the case of SSH authentication, the server (your iOS device) uses this for authentication by locking down the connection with your public key, and only your private key can unlock the connection. Think of it like a password with thousands of characters, automatically managed by SSH.

    For starters, I'm using a checkm8-based Jailbreak, but the steps will be similar for any iOS device. I can add specific steps for unc0ver if someone DMs me—I need to know the location of 1-2 files.

    Before starting, I recommend getting nano from cydia/zebra/etc. as it is a command line text editor that we can easily run as root. Also, make sure you have the latest OpenSSH package installed.

    First, we need to first disable dropbear, the drop-in SSH solution provided by checkra1n. First, run the following command as root (su root) in NewTerm:

    launchctl unload -w /binpack/Library/LaunchDaemons/dropbear.plist 

    This will disable dropbear, which allows us to enable sshd. Before continuing, back up your current sshd Daemon and config! Run this as root:

    cp -p /Library/LaunchDaemons/com.openssh.sshd.plist /var/mobile/com.openssh.sshd.plist.bak cp -p /etc/ssh/sshd_config /var/mobile/sshd_config.bak 

    If you need to restore these files, use root to run the copy in reverse.

    Now then, we must first edit the sshd configuration file into something we want. As root, run these commands:

    cd /etc/ssh cp -p sshd_config sshd_config_jb nano sshd_config_jb 

    Change the following values:

    PubkeyAuthentication yes Port 2222 PasswordAuthentication no AuthorizedKeysFile .ssh/authorized_keys 

    To save, use CTRL+O (answer with y for yes) and CTRL+X to exit nano.

    Now that we have our config, we need to generate keys for sshd. As root, run:

    ssh-keygen -f /etc/ssh/ssh_host_dsa_key -N '' -t dsa ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa ssh-keygen -f /etc/ssh/ssh_host_key -N '' -t rsa 

    If you're asked about passwords or file paths, just press enter to leave those blank and default, respectively.

    At this point, you should open up a new terminal tab and as mobile, run:

    mkdir ~/.ssh chmod 700 ~/.ssh touch ~/.ssh/authorized_keys chmod 600 ~/.ssh/authorized_keys 

    Now we have to generate our ssh key. I suggest using Google on how to do this, but you can use shells such as blink on iOS to generate the key. Make sure to use a key size of 4096 and set the type to rsa! Once you have a public key, copy the entire contents and put them into /var/mobile/.ssh/authorized_keys.

    If you want to enable root login with ssh, simply repeat the last two steps but as mobile, and to add the public ssh key to the correct file above but in root's home directory.

    At this point, you're ready to finalize our SSH installation. Run the following commands as root:

    launchctl unload -w /Library/LaunchDaemons/com.openssh.sshd.plist cd /Library/LaunchDaemons/ touch com.openssh.sshd.jb.plist nano com.openssh.sshd.jb.plist chmod 600 com.openssh.sshd.jb.plist 

    The file should look like this:

    <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>RunAtLoad</key> <true/> <key>Label</key> <string>com.openssh.sshd</string> <key>Program</key> <string>/usr/libexec/sshd-keygen-wrapper</string> <key>ProgramArguments</key> <array> <string>/usr/sbin/sshd</string> <string>-f</string> <string>/etc/ssh/sshd_config_jb</string> </array> <key>SessionCreate</key> <true/> <key>Sockets</key> <dict> <key>SSHListener</key> <dict> <key>SockServiceName</key> <string>ssh</string> </dict> </dict> <key>StandardErrorPath</key> <string>/dev/null</string> <key>inetdCompatibility</key> <dict> <key>Wait</key> <false/> </dict> <key>ExecuteAllowed</key> <true/> </dict> </plist> 

    And now, to finish up, run this as root:

    launchctl load -w /Library/LaunchDaemons/com.openssh.sshd.jb.plist` 

    You should now be able to connect to your ssh device without entering a password. Enjoy the better security and convenience of ssh key files!

    submitted by /u/4z0k
    [link] [comments]

    [Discussion] Jake wrote an offset finder for oob_timestamp.

    Posted: 21 Feb 2020 01:30 PM PST

    [upcoming] Working on this tweak from today should be ready by a week,I’m naming the tweak closius and its going to be available on the packix repo also huge thanks to @codeone88 for the concept this tweak will cost 2$ and I’m gonna giveaway the tweak to five random people on the day of release��

    Posted: 21 Feb 2020 02:31 AM PST

    [Request] an update to this tweak (classic dock for iPhone X) for iOS 13/ A12-13

    Posted: 21 Feb 2020 11:41 AM PST

    [Request] We need more MobileGoose mods ASAP!!

    Posted: 21 Feb 2020 06:53 PM PST

    [TIP] Do *NOT* update to unc0ver 4.x if you are NOT on an a12/13 device running ios 13.x

    Posted: 21 Feb 2020 07:01 AM PST

    A thousand redditors and I must have missed the memo, if it was ever announced - I will repeat it again: If you do not have an A12 device (iPhone XS, XS Max, XR, and 2019 versions of the iPad Air and iPad Mini) or an A13 device (iPhone 11, 11 Pro, 11 Pro Max) on iOS 13.x, do NOT update to unc0ver 4.x. You must stay on unc0ver 3.x.

    If you do otherwise, you will remove cydia's ability to install any tweaks (which includes upgrading/downgrading) and face this cydia error:

    Sub-process /user/libexec/cydia/cydo returned an error code 255.

    If you try to remove any tweaks, you will get this error:

    Sub-process dpkg --set-selections returned an error code 255.

    Couldnt record the approved state changes as dpkg selection states.

    You will have played yourself.

    I know this because of the post I initially made here. I swear to god I have had nearly 100 redditors DM me.

    The solution included using software that is illegal to the r/jailbreak mods. That solution, as far as my knowledge goes, no longer works. You will have to use Altdeploy/Altserver to install this version of unc0ver. That is a direct link to the 3.8.0 ipa. Here is a tutorial that covers how to do that. This tutorial will ofcourse show you how to install the .ipa file of the newest unc0ver version - please download the linked one instead.

    If you are not running an iOS >= 12.2... you might just be fucked. I am not sure what you will need to do to install the correct version - immoral software or otherwise. Maybe someone can comment.

    TLDR: THE TITLE

    Edit: u/RushdiRamz says:

    The AltServerPatcher methods should work on iOS versions less than 12.2. It depends on the IPA.

    I've made a tutorial before. Might help someone who wants to jailbreak: https://reddit.com/r/jailbreak/comments/etekwx/tutorial_how_to_use_altstore_to_install_most_ipas/

    submitted by /u/texzone
    [link] [comments]

    [Request] Have mobile goose go to r/memes and bring the top memes of the day.

    Posted: 21 Feb 2020 12:19 PM PST

    Or maybe even your feed?

    submitted by /u/XanMan10211
    [link] [comments]

    [HELP] Scam Ad On BigBoss

    Posted: 21 Feb 2020 07:38 AM PST

    [Update] VolVibes v1.3 - Added the option to only show the miniHUD! Grab VolVibes on Twickd Repo (https://repo.twickd.com)

    Posted: 21 Feb 2020 10:40 AM PST

    [Request] Icons like this, instead of the colored bar at the top of the screen. I'd love for someone to make this happen. (originally saw these icons on a different tweak, HomeGesture i think)

    Posted: 21 Feb 2020 10:48 AM PST

    [Request] A Tweak To Change Volume Hud like this.

    Posted: 22 Feb 2020 12:42 AM PST

    [Request] A tweak that gives you the option to let your ringtones fade to full volume. I hate when my ringtone startles me at max volume out of the blue.

    Posted: 22 Feb 2020 12:16 AM PST

    [HELP] Why is my screen on CarPlay with Carbridge angled...?

    Posted: 21 Feb 2020 12:46 PM PST

    [Update] NextUp 2 (iOS 12 & 13) – View and skip the next track from LS and CC – What's new?

    Posted: 21 Feb 2020 12:14 PM PST

    Name: NextUp 2 (iOS 12 & 13)

    Repo: BigBoss

    Description: View and skip the next track from LS and CC. Supports all of the following 15 apps:

    • VOX

    • Musi

    • Music

    • TIDAL

    • Deezer

    • Spotify

    • Napster

    • Anghami

    • JioSaavn

    • Podcasts

    • JetAudio

    • AudioMack

    • SoundCloud

    • Google Music

    • YouTube Music

    More info and screenshots on the repo.

    Compatible with ColorFlow (4 and 5), Sylph, Artsy and Nereid.

    Price: $2.75 (5 days free trial)

    Changes 1.3.1:

    • Fixed crash if NextUp was disabled in Control Center (sorry about the hickup!).

    • Fixed Music.app crashing when skipping.

    • Fixed the ColorFlow 5 support not working for everyone.

    • Fixed labels being black when Flow was enabled and dark mode was not.

    • Fixed quick actions view being hidden by NextUp even if the setting for it was disabled.

    • Added animation when hiding and showing the quick actions view.

    • Minor improvements.

    Huge thanks to everyone who reported the bugs!

    Issues: Please report issues here.

    submitted by /u/andreashenriksson
    [link] [comments]

    [Question] - does anyone know what tweak was used to add the Apple Watch battery level?

    Posted: 21 Feb 2020 05:47 PM PST

    [Request] Make Apple News+ ads, notifications and the entire tab/section in News fuck off

    Posted: 21 Feb 2020 07:39 AM PST

    [question] What’s with the lack of iMessage customization?

    Posted: 21 Feb 2020 03:09 PM PST

    As the title indicates, there's been a shortage of tweaks for iOS 12+ for imessaging customization . Is it harder to do it now or something ?

    submitted by /u/ThaSunGawdd
    [link] [comments]

    [Discussion] Are there any iMessage tweaks like type status for IOS 13?

    Posted: 21 Feb 2020 06:42 PM PST

    Hello, I have recently been looking at old tweaks for previous IOS updates (IOS 12 primarily) and I have come across the type status tweak. I was just wondering if there are any tweaks for iMessage like type status or just any other good iMessage tweaks I can get for my iPhone X on IOS 13.

    submitted by /u/bdw080804
    [link] [comments]

    [Request] Tweak that let’s you change your wallpaper in the control centre with one tap

    Posted: 21 Feb 2020 07:28 PM PST

    [Request] Put status bar in control center for devices older than iPhone X (iOS 13)

    Posted: 21 Feb 2020 05:14 PM PST

    [Question] Faster animations on iOS 13

    Posted: 21 Feb 2020 09:57 PM PST

    Animations be fast hasn't been updated. Is there any animation tweak that makes it faster.

    submitted by /u/GlobalBird4
    [link] [comments]

    No comments:

    Post a Comment

    Fashion

    Beauty

    Travel