#futurerestore-help

1 messages · Page 136 of 1

lilac wren
#

lol used the gui to download this binary bc i was lazy

zinc moon
#

Thanksss

zealous bridge
#

how do you ssh with no passcode

#

pls

lilac wren
low summit
#

can u?

zealous bridge
#

like

zinc moon
#

Yes you can

#

SSH keys

zealous bridge
#

idk i just jailbroke a device with checkra1n

#

But idk the password

zinc moon
#

Even shortcuts gives you one

lilac wren
#

for SSH you need the passcode at least once though

zealous bridge
#

And i want to install ssh

#

On it somehow

#

just need dimenyio

celest basalt
zealous bridge
#

its my sisters phone lol

lilac wren
#

can you try ssh as mobile then?

low summit
#

lol

celest basalt
#

Dfu restore then

low summit
#

isnt it alpine

zealous bridge
#

i might need openssh

celest basalt
#

You do need it

low summit
#

tanbeer u changed ur sis root?

zealous bridge
#

oh shit its not even connected to wifi

#

nooo

lilac wren
#

try ssh mobile@ip

low summit
#

no wifi

#

lol

zealous bridge
#

bruh

#

i cant even access the control centre

#

cause reboot

lilac wren
#

wait why do you need to ssh

zealous bridge
#

dimentio

#

idk the device password

lilac wren
#

why not just use on device terminal

low summit
#

remotely?

zealous bridge
#

lol

lilac wren
#

OH

#

i see

zealous bridge
#

maybe ssh over usb

celest basalt
#

Or just restore it

zealous bridge
#

need dimentio

low summit
#

does usb give u cli

#

ssh?

#

u need apple conduit to usb ssh lol

zealous bridge
#

tf is her password omg

lilac wren
#

oh yeah try usbmuxd ssh

low summit
#

like her root pass

#

its not alpine?

zealous bridge
#

i need the device to pair somehow for that i think

low summit
#

u need a tweak froggy lol

#

to usb ssh

lilac wren
#

are you sure?

low summit
#

yes

#

apple file conduit

#

at least that was what u need back then

zealous bridge
#

lol i disabled it

low summit
#

?

#

the pass?

zealous bridge
#

yeah

low summit
#

did u set the pass lol

#

or ur sis

zealous bridge
#

my sister

#

idk the pass at all

low summit
#

bruh she knows to change root pass

zealous bridge
#

not root pass

#

device pass

lilac wren
#

bro I always forget my sister's password then forget my sister as well

low summit
#

oh

#

passcode?

#

or word

lilac wren
#

lol

low summit
#

lol

#

do u even need that

#

for ssh

zealous bridge
#

no but i need the device to pair

low summit
#

why not ask ur sis lol

zealous bridge
#

asleep

low summit
#

oh

#

man write it down next time lmao

zealous bridge
#

need sep exploit tbh

green onyx
#

we pogging

low summit
#

or ur testing 14.6

zealous bridge
#

ayy

#

nice

green onyx
#

14.6 beta 1 bb and sep is compat

zealous bridge
#

we good

low summit
#

aye nice

#

but beta 2 lol

green onyx
#

aight imma reboot to windows for itunes backup lol

lilac wren
low summit
#

is it exactly the same

zealous bridge
#

no

low summit
#

or just compatible

lilac wren
zealous bridge
#

but it’s conpat

low summit
#

aye

#

thats all u need

#

did u just -u @green onyx

zealous bridge
#

nah

#

he didn’t

low summit
#

full restore?

green onyx
#

why

#

yes full restore

low summit
#

2 restore in 2 days nice lol

green onyx
#

yep

#

im fine with it tho

low summit
#

nice to have the ability to do it

#

lol

green onyx
#

true

#

blobs are worth saving

low summit
#

true i only got onboard 14.3

zealous bridge
#

shsh host still doesnt have 14.5 rc

green onyx
#

@celest basalt sep and bb are compat btw

green onyx
#

so behind

celest basalt
green onyx
#

this also means that if 14.5rc2 comes out, it should have compat sep and bb

#

we good

celest basalt
#

Or systeminfo

#

System Info uses shsh.host

low summit
#

i want that rc blob

green onyx
#

same

zealous bridge
#

everything just dead

#

lol

low summit
#

14.6 not up either

celest basalt
#

Oh lol

zealous bridge
#

oh I remember froggy posting 14.5rc BuildManifest

low summit
#

systeminfo slacking

zealous bridge
#

one sec

lilac wren
#

was only for iPhone XR and 11

#

my libfragmentzip is still bugging out

celest basalt
#

Yes big words

#

🤓

zealous bridge
zealous bridge
low summit
#

who runs shsh.host

lilac wren
#

arx8x

zealous bridge
#

arx8x

celest basalt
#

^

low summit
#

ah

lilac wren
#

@celest basalt does anything look wrong with this (idk if you've even used libfragmentzip before just asking about the code)

#include <iostream>
#include <libfragmentzip/libfragmentzip.h>
#include <libgeneral/macros.h>

static void printline(int percent) {
    info("%03d [", percent);
    for (int i = 0; i < 100; i++) putchar((percent > 0) ? ((--percent > 0) ? '=' : '>') : ' ');
    info("]");
}

static void fragmentzip_callback(unsigned int progress) {
    info("\x1b[A\033[J"); //clear 2 lines
    printline((int) progress);
    info("\n");
}

int downloadPartialzip(const char *url, const char *file, const char *dst) {
    info("[LFZP] downloading %s from %s\n\n", file, url);
    fragmentzip_t *info = fragmentzip_open(url);
    if (!info) {
        error("[LFZP] failed to open url\n");
        return -1;
    }
    int ret = fragmentzip_download_file(info, file, dst, fragmentzip_callback);
    if (ret) {
        error("[LFZP] failed to download file (%d)\n", ret);
    }
    fragmentzip_close(info);
    return ret;
}

int main() {
    std::cout << "Hello, World!" << std::endl;

    int ret = downloadPartialzip(
            "http://updates-http.cdn-apple.com/2021SpringFCS/fullrestores/071-17690/C7BF8C27-C697-4A50-8DE3-3884C5F75A9D/iPhone11,8,iPhone12,1_14.5_18E199_Restore.ipsw",
            "BuildManifest.plist", "~/Downloads");

    std::string text = "Ret is ";
    text += std::to_string(ret);
    std::cout << text << std::endl;

    return 0;
}

It will show the progress bar going to 100 really fast, and then return what the image shows

low summit
#

hello world lol

lilac wren
#

copied literally it straight from tsschecker

lilac wren
low summit
#

is that what shows every code script

zealous bridge
#

isnt that perms error

low summit
#

same as my java class

lilac wren
#

I thought it was the line of code

celest basalt
#

I've used partialzip directly via CLI before but I've been too lazy to do it lately bc my internet is fast enough so I just download full IPSW

low summit
#

its a nice universal code tbh

green onyx
#

@lilac wren do u think ur good enough to make a tweak thats kinda advanced?

#

maybe u could do batchomatic but good

#

like exporting tweak list

#

and tweak can read the tweak list and grab the tweaks from the repos

#

and queue them

lilac wren
#

that's batchomatic

green onyx
#

yes but batchomatic screws it up

#

and breaks dpkg

lilac wren
#

I don't really want to write any Obj C though

#

I'll think about it

low summit
#

and it installs u0 sources on cs jb

green onyx
#

bruh

#

why would it do that

low summit
#

migrating bro

#

u0 to taurine

green onyx
#

hm

#

what kind of tweak is on elu

#

except for tetherme

low summit
#

well its only bingner lol

zinc moon
#

@lilac wren how tf do you make a pop up

#

Come up

#

With an if statement

#

In swift

#

Like I want to make an if statement that detects if you have internet connected

#

And if you don’t it brings up a pop up

green onyx
#

lol

lilac wren
zinc moon
#

uhh

#

I’m using both the swift Lang and swift UI

lilac wren
zinc moon
#

Thanks!!

lilac wren
#

And you pass it as binding bc it'll set it back to false on dismiss

#

Np

zinc moon
#

Since they’re offline

lilac wren
#

Oh ok that will be cool

zinc moon
#

i hate this macbook

#

so much

lilac wren
#

Lol

celest basalt
zinc moon
celest basalt
#

1000€ for 128 gbs

#

No

#

Fuck off

zinc moon
#

Yea I’m not the one who even got it

celest basalt
#

I know that

#

But it’s funny

zinc moon
green onyx
#

bruh

#

why are u guys so mean to each other

#

like fr

zinc moon
#

@green onyx I try to avoid being mean to him

#

¯_(ツ)_/¯

green onyx
#

how many times has sanj broke rule 1

zinc moon
#

More times

#

Than he has made

#

Among us

#

Jokes

#

@lilac wren

lilac wren
#

Lol you're not supposed to just upload random screenshots there

#

I think you have to embed them into an article or something

zinc moon
#

When you insert a picture or media

#

You have to upload it

#

From Wikimedia

#

Commons

green onyx
#

just link it to the github

#

like the github photo url

celest basalt
zinc moon
#

yes I do

green onyx
#

im on dabezt's side

celest basalt
#

Every time i come into the chat you tell me to stfu

zinc moon
#

I told you that one time

green onyx
#

i mean, u come here to make fun of him

zinc moon
#

And it was becuase you weren’t even talking

#

About FR

celest basalt
zinc moon
#

Just using emotes

spiral bane
#

drama peepoCoffee

green onyx
#

just chill

#

fr

zinc moon
green onyx
#

^

spiral bane
zinc moon
#

How about we keep this channel the heaven it is

celest basalt
#

lool ok

green onyx
celest basalt
spiral bane
celest basalt
#

This channel is dead af

zinc moon
#

@green onyx can Apple change the sep and bb

#

And still make it compat

celest basalt
#

Also boring

green onyx
#

thats what happened with 14.6 beta 1

#

its different

#

but compat

zinc moon
#

Ohh

#

So you self restored

spiral bane
zinc moon
#

To 14.3

green onyx
#

yes

spiral bane
#

including me

green onyx
#

with 14.6 bb and sep

zinc moon
#

But you used 14.6 bb and sep

green onyx
#

yep

zinc moon
#

Where did you find the files

green onyx
#

uh

zinc moon
#

For the bb and sep

green onyx
#

nyu gave me the ipsw

zinc moon
#

ipsw?

green onyx
#

yes

zinc moon
#

Ohh

green onyx
#

u extract ipsw

zinc moon
#

Did you extract the IPSW itself or the dmg

green onyx
#

the ipsw itself

celest basalt
green onyx
#

idk but kubuntu sees the ipsw as a zip

#

so it can easily extract

zinc moon
#

Wtf

#

I thought that when you extract the iPSW

#

It gives you the dmg

#

Only

green onyx
celest basalt
#

Damn bro that’s so interesting

zinc moon
#

@green onyx what if you changed the BB and SEP files

#

Even just one line of code

#

Would they panic?

green onyx
#

uh, it wouldnt accept it

#

it verifies the files

zinc moon
#

What device did you use the SEP and BB for?

green onyx
#

10,6

zinc moon
#

iPhone 8?

green onyx
#

iphone x gsm

zinc moon
#

oh

#

Is nyu online

green onyx
#

ye but idle

zinc moon
#

@celest basalt can you give me the iPSW for iOS 14.6 iPhone 7 GSM?

#

I wanna try the same thing

celest basalt
#

Just go download it yourself .-.

zinc moon
#

It’s only on the Apple dev portal rn

#

And I don’t have a dev account

zinc moon
#

Thanks

zinc moon
#

@green onyx finished downloading and extracting

#

now

#

where are the sep

#

and bb files

low summit
#

Morning

zinc moon
#

gm

green onyx
#

hol up

#

im in class

low summit
#

Some guy fixed recovery loop yesterday

zinc moon
#

rebel

#

folklore self restored but w 14.6 beta sep and bb

#

it worked

#

so

low summit
#

I know

zinc moon
#

ill try for my ip7

low summit
#

That was old news

#

Ip7 definitely works

zinc moon
#

im bored anywa

#

@green onyx is the sep/bb file the buildmanifest one

#

i found these bbfw files

#

which are for baseband i assume

#

idk which to use

#

@celest basalt sorry for the ping, but how do i know which to choose?

inland kite
#

Dont be sorry it’s their job

low summit
#

Ice was GSM

#

Mav is global

zinc moon
#

oh

#

[[systeminfo]]

mystic axleBOT
#
SystemInfoWidget

System Info Widget that displays battery and storage space

Author

DGh0st

Version

0.0.2

Price

Free

Bundle ID

com.dgh0st.systeminfowidget

More Info
zinc moon
#

uhh

#

[[system info]]

mystic axleBOT
#
System Info

System information in Settings app > General > About, and other sections. Set boot-nonce, save SHSH, battery info etc

Author

ARX8x

Version

2.7.2-2

Price

Free

Repo
Bundle ID

xyz.xninja.systeminfo

More Info
zinc moon
#

like this

celest basalt
#

yeah, and if there's multiple ICE/Mav you can find the boardconfig in the BuildManifest.plist to see which one to use I think

zinc moon
#

i found it

#

in system info

#

now i need to know

#

which sep

#

to use

celest basalt
#

that depends on your boardconfig too

#

Firmware/all_flash/sep-firmware.[boardconfig without ap].RELEASE.im4p

zinc moon
#

alright

#

@celest basalt my modem firmware is 5.01.01 ice16, yet i can only find 5.03.00 for ice16

celest basalt
#

uhh yeah slightly newer version probably makes sense bc it's a newer iOS

zinc moon
#

oh

celest basalt
#

buildmanifest can confirm

zinc moon
#

sorry im an idiot

#

lol

low summit
#

Smart

zinc moon
#

I found both

#

Gonna do it in a second

low summit
#

How's the restore

zinc moon
#

late but

#

@low summit it worked

#

kept my shit too

#

@lilac wren wouldnt it be better if you renamed update to keep data, and instead of making it that small option make it a popup when the person clicks "Start Fr"

lilac wren
#

make it a pop-up to do -u?

#

too many popups already I think before starting

zinc moon
#

like it asks

lilac wren
#

Nah it's definitely better as an option here

zinc moon
#

or just make it ask

#

"are you sure you dont want to keep your data"

lilac wren
#

and issue with making it just called "keep data" is what if they don't have updateinstall in their blob

zinc moon
#

o

#

then my suggestion would be keep it as update but if you dont check it make it ask you hey you sure you dont wanna keep your stuff?

zealous bridge
#

like froggy said theres already too many popups lol, anyways there shouldnt be any reason for ppl to miss the update checkbox anyway

#

any guide will tell them what it does

zinc moon
#

true

lilac wren
#

thanks, xcode

zinc moon
#

@lilac wren @zealous bridge you two

#

we got !t fr

zealous bridge
#

!t fr

mystic axleBOT
lilac wren
#

lol

zealous bridge
#

i think i broke apt

#

nooo

zinc moon
#

how

#

did you even

zealous bridge
#

dependency error but the dependency 404s

zinc moon
#

hold on

#

the tutorial linked

#

uses CLI

lilac wren
#

disappointing

#

/s

zinc moon
#

gonna make a copy of it but using GUI

low summit
#

Oh shit

#

!t fr

mystic axleBOT
low summit
#

We need gui tutorial

#

Bro

zinc moon
#

typing it

#

rn

zealous bridge
#

gui guide

low summit
#

@zealous bridge someone got data back from recovery loop

zinc moon
#

tell toilet cat to replace it then

low summit
#

U done with wiki?

zinc moon
#

@zealous bridge that one can be used for any version but it says 14.3 so it could confuse new people

#

@low summit i think some wiki mod

#

deleted my sandbox

low summit
#

Y

zinc moon
#

nvm

#

its still here

#

but

#

he deleted

#

the fr gui pic

low summit
#

Lol bruh

zinc moon
#

bc i didnt create fr gui

low summit
#

Froggy edit it

zinc moon
celest basalt
lilac wren
#

lol

low summit
#

Lol sanji

celest basalt
zealous bridge
#

ok so apparently the version of linux i have installed doesnt exist

low summit
#

Froggy u know how to write a good dialogue

celest basalt
low summit
celest basalt
low summit
#

@zinc moon?

lilac wren
#

I do write a bit

low summit
#

Like ppl and ppl talking commentary

lilac wren
#

but it's less about speaking and more about thinking lol

lilac wren
zinc moon
#

Isnt there a tag

#

About nonce

celest basalt
zinc moon
#

oh wtf

low summit
#

Can't find

zinc moon
#

!t

lilac wren
zinc moon
#

oh my god

celest basalt
#

!t

celest basalt
mystic axleBOT
#

I tried to DM you but couldn't. Make sure your DMs are enabled.

zinc moon
#

no

low summit
#

What is this dm thing

celest basalt
#

Gir dms you

#

So the chat isnt flooded

green onyx
#

whtas happening

#

im on lunch lol

low summit
#

Nothing much

green onyx
#

pog

celest basalt
green onyx
celest basalt
#

Wdym fr

low summit
#

Bruh what is going on

#

@green onyx

green onyx
#

idk

#

sanj breaking rule 1 again

#

lol

low summit
#

...

zinc moon
#

Sanji

#

Can you stop

low summit
#

Tf?

#

Filtered?

zinc moon
#

Uhh

#

Maybe

#

But

#

Gir

#

Didn’t send me anything

celest basalt
#

How

celest basalt
celest basalt
#

Maybe when i get bored

zinc moon
#

@green onyx I tried the same thing w you but I have a problem now lol

#

I have Sileo but

#

Even w Betelgeuse

#

It crashes

green onyx
#

wait

zinc moon
#

And taurine doesn’t work

green onyx
#

what are u doing

zinc moon
#

I did -I

green onyx
#

restore root fs

zinc moon
#

I did

green onyx
#

wait

zinc moon
#

Wait

green onyx
#

im confused

#

what are u doing

zinc moon
#

I did -u*

green onyx
#

dont use -u

#

when ur not upgrading

#

i didnt use -u

zinc moon
#

I did it 2 hours ago

green onyx
#

bruh

#

fr

zinc moon
#

Wait

#

What if

low summit
#

If you u you fked up lol

zinc moon
#

I’m gonna come back in a second

green onyx
#

lol

celest basalt
zinc moon
#

Ok so

#

Is there a way to remove sileo using openssh

green onyx
#

yes

#

sudo apt remove org.coolstar.sileo

zinc moon
#

thankssssss

low summit
#

Why u removing sileo lol

celest basalt
#

Sileo trash

#

Cydia better

zinc moon
#

With Betelgeuse

celest basalt
#

Also man doesnt know how to remove a package BruhSoundEffect2

celest basalt
lilac wren
#

The first smart thing you've done

zinc moon
#

@green onyx lol I just kept trying with taurine

#

And it worked

green onyx
#

poggers

zinc moon
#

Also

#

I can migrate to odysseyra1n now right?

green onyx
#

uh probably

#

u should anyways

#

u have leftover procursus stuff

low summit
#

why is taurine failing dabezt lol

#

what version number is 14.5 rc again

lilac wren
#

18E199

zinc moon
#

It’s not

#

Anymore

low summit
#

nope system info still dont got

zealous bridge
#

wtf did i just do

zinc moon
#

@lilac wren is using -u bad on self restores and downgraded

lilac wren
low summit
#

did u rfs

zealous bridge
#

rip

#

i cant even ls

#

nooo

lilac wren
#

that's basically rm -r /* but with mv lol

zealous bridge
#

rip wsl

#

have to reset now

lilac wren
#

Lol what were you trying to do

zealous bridge
#

i was tryna recreate the default bash files because i deleted /home/tanbeer

#

i meant to do mv * ../tanbeer

#

rip

lilac wren
#

lol rip

zealous bridge
#

why did i do this as root...

zinc moon
#

What phone did you do this on

lilac wren
#

LOL mv includes directories.. so you basically did sudo rm -r /* but to ../tanberry haha

zealous bridge
#

i'm so stupid lol

#

i was root

#

😦

lilac wren
#

also /* is different from /

#

/* you don't need --no-preserve-root iirc

zinc moon
#

Not with *

zealous bridge
#

wow i have to compile EVERYTHING again

#

noooo

zinc moon
#

no

low summit
#

nah lol

#

14.4.2

#

iphone 7

#

unless i fr

#

u want me to?

zinc moon
#

alright sike

#

wtf u want

#

i have time rn

low summit
#

just ota

zinc moon
#

yes

low summit
#

and reboot half way

zinc moon
#

like 20 times

#

with this phone

#

ohh

#

you want me to do it

#

rn

#

alright lay out

low summit
#

can u even ota to 14.4.2 with 14.5 sep

zinc moon
#

the instructions

low summit
#

yea he got 14.5 sep lmao

zinc moon
#

actually 14.6 sep

low summit
#

14.6 yea

#

lol

zealous bridge
#

no ota

zinc moon
#

no lol

zealous bridge
#

only fr

low summit
#

beta profile i think

zinc moon
#

i cant use ota at all

#

rn

low summit
#

cant u go to rc?

#

if u could wait ill do it lol

zinc moon
#

@zealous bridge cant i downgrade my sep

#

i think i was wrong

low summit
#

writing a paper rn lmao

zinc moon
#

i might be able to downgrade sep

low summit
#

and go to 14.4.1

#

and then ota

#

to 14.4.2

zinc moon
#

yea but i dont want to download the ipsw for 14.4.2 so

#

ill choose latest

low summit
#

why not

#

he will have 14.4.2 sep again

zealous bridge
#

if u want

#

and send the files

zinc moon
#

thank you

zealous bridge
#

what device and ios

zinc moon
#

im on ice16 btw

low summit
#

isnt sep and bb still signed

zinc moon
#

to 14.4.

low summit
#

so just use latest in gui

zinc moon
#

14.4.2

#

**

#

iphone 7

#

gsm

low summit
#

yea use it to fr to 14.4.1

zealous bridge
#

wait why dont you just use latest

low summit
#

and then ota

#

or does that not work?

zinc moon
zealous bridge
#

lol

low summit
#

just gui with latest lol

#

its still signed

zinc moon
#

im not actually going to 14.4.2 i just want the sep and bb for it

#

so ill do it rn

low summit
#

with latest sep from gui

zinc moon
#

no

low summit
#

and try to ota

zinc moon
#

im gonna self restore

#

to 14.0.1

#

so that i can use taurine

#

if i wanted to

low summit
#

why not just go to 14.4.1 lol

#

u need ota anyways

zinc moon
#

im gonna do it rn

low summit
#

u cant ota on 14.0.1 most likely lol

#

wont even get pass verify lol

#

no idea

#

his phone is weird

zinc moon
#

@lilac wren is this normal btw

#

i get that every time

#

but it works

#

every time

zealous bridge
#

yeah its just bad regex

#

ignore it

lilac wren
#

update to version 1.73

zinc moon
#

oh

#

!t fr

mystic axleBOT
zinc moon
#

@lilac wren im on the verge of committing a hate crime

#

whys it white wtf

zealous bridge
#

did you press start

zinc moon
#

i updated the app

zealous bridge
#

oh

#

light mode

low summit
#

stop being racist

#

to gui

#

froggy loves white

#

mode

celest basalt
lilac wren
zinc moon
#

in my mac settings?

#

i did

lilac wren
#

yes

#

My Mac has a fake dark mode a lot idk why, toggle it off and on again then close and reopen the app

#

if that doesn't work then I guess it's just broken for you

zinc moon
#

alright

#

@lilac wren THANK YOU SO MUCH FOR CHANGING THE FILE SELECTION THING TO THE NATIVE MACOS ONE

#

@coral falcon wait bro

lilac wren
#

thank jtv for asking for it

zinc moon
#

jtv is a legend

#

that previous one was terrible

lilac wren
#

ikr

zinc moon
#

still white

#

im gonna do it

#

anyways

lilac wren
#

lol

low summit
#

froggy ima fr lol to 14.4.1

#

just to try gui

#

do i need to run checkra1n to run the shortcut?

zealous bridge
#

you need to be jb

low summit
#

lght be back in a sec

zinc moon
#

@lilac wren gonna do it anyways

lilac wren
#

oh I know that issue

#

it thinks all build numbers are 5 length

zinc moon
#

so its dumb

#

ok

lilac wren
#

yes

#

but it's fine

low summit
#

Fk I need 14.4.1 lol

zinc moon
#

also please make dark mode/light mode an option in settings

#

PLEASE

lilac wren
#

Lol fine but when I have time

zinc moon
#

i cant believe i forgot to LOL

lilac wren
#

Lol

low summit
#

Froggy do you even use dark mode?

zealous bridge
#

how 2 fix

zinc moon
#

im just using that as an excuse

lilac wren
zinc moon
#

to di cmd 4 shift

#

space

zealous bridge
#

what

zinc moon
#

@zealous bridge the thing where you take a screenshot but

#

it makes it extra sexy

zealous bridge
#

ok...

zinc moon
#

cmd shift 4 space

#

cmd shift 4 without space

low summit
#

ok a1660 is gsm or global?

zinc moon
#

@low summit

zealous bridge
#

Gsm

low summit
#

yea i got it

#

checkra1n is dumb

#

says global

zinc moon
#

@coral falcon gonna start fr right now

green onyx
#

pog

zinc moon
#

so what do you want me to do

#

@coral falcon

#

no way he disappeared

#

gonna downgrade it anyways

low summit
#

ok i set nonce

zinc moon
#

he disppaered

#

@lilac wren the time it takes for the macos selection menu thing to come up

#

is a bit slow

low summit
#

shortcut is super useful

zinc moon
#

compared to chrome for example

#

@low summit agreed

lilac wren
zinc moon
#

uhh

#

lemme see

low summit
#

accidentally set the wrong one lmao

zinc moon
#

ok nvm it takes only like 5 seconds

#

thats normal

lilac wren
#

5??

zinc moon
#

but chrome is usually instantly

lilac wren
#

takes me 1 second lol

zinc moon
#

tf

low summit
#

where is sike lmao

zinc moon
#

when fr is done

#

ill take a vid

low summit
#

still downloading 14.4.1

#

fk internet is slow

zinc moon
#

extracting ipsw is the best thing

#

to see

low summit
#

moment of truth

zinc moon
#

Waiting for message from FDR...

#

worked

celest basalt
#

Message from FDR: Go fuck yourself

zinc moon
#

lmfaooo

low summit
#

wait what i click?

#

-w?

zinc moon
#

@celest basalt the fuck is asr

#

@low summit click update

#

-u

#

no reason to click -w

low summit
#

i dont want u

zinc moon
#

other than if you are kinda paranoid

low summit
#

i want restore

zinc moon
#

alright

celest basalt
#

Apple Software Restore I think

low summit
#

whats restore

zinc moon
#

and if something is wrong

low summit
#

-w?

zinc moon
#

ASR tells you to fuck yourself?

#

@low summit -w just means wait lol

low summit
#

so just restore?

zinc moon
#

bro]

#

just

#

click debug

#

insert everything you want

#

and do the process

low summit
#

ok its working

celest basalt
#

-w means keep rebooting until you get the right nonce, which is gonna be forever on any modern device

zinc moon
#

theres no reason to do -w

low summit
#

do i close itunes

celest basalt
#

even on old devices like A7 nonce collision only works in DFU after Apple patched it in newer versions for recovery

zinc moon
#

@celest basalt took me like 2 minutes

#

when i tried it

#

one time

celest basalt
#

that's probably because you already had the right nonce

zinc moon
#

yessir

#

Updating baseband...

low summit
#

ap mismatch error tf

#

i set that shit already

zinc moon
#

@low summit copy the log

low summit
#

i already set wtf

zinc moon
#

BUG: tss_response_get_path_by_entry: No entry 'LLB' in TSS response
NOTE: Could not get LLB path from TSS data, will fetch from build identity

lilac wren
zinc moon
#

this is like the 7th line

#

@lilac wren WHAT

lilac wren
#

that's like 0.7 seconds

zinc moon
#

restoring succeeded

lilac wren
#

nice

zinc moon
#

@lilac wren lemme take a quicktime

lilac wren
#

I used cmd shift 5 to take this video already cropped lol

low summit
#

im a dumbass lol

#

click the wrong blob

#

does reboot reset the gen?

zinc moon
zealous bridge
#

but for some ppl it does

low summit
#

so try again lol

#

?

lilac wren
#

not 5

zealous bridge
#

yeah

zinc moon
#

uhh

#

is it tho

#

ok nvm lol

low summit
#

do i close itunes?

zinc moon
#

the fuck

#

it doesnt matter

low summit
#

hopefully it doesnt reset the nonce

zinc moon
#

wdym

#

restarting?

#

sometimes it does

#

so rejb and use the shortcut

zealous bridge
#

openssl has been compiling for like an hour omg

zinc moon
#

@zealous bridge openssl?

zealous bridge
#

yes

zinc moon
low summit
#

bro wtf

#

froggy windows does have window snip lmao

zinc moon
#

thats normal

low summit
#

@lilac wren

zinc moon
#

please dont tell me

#

you disconnected

#

the phon

low summit
#

no its connected

#

what now

zinc moon
#

good

low summit
#

exit recovery?

zinc moon
#

just wait

#

???? BRO

#

leave it

#

alone

#

goddamn

low summit
#

u sure?

zinc moon
#

yes

#

oml

low summit
#

taking forever

#

lol

#

it says waiting disconnect

zinc moon
#

if it takes 2 more minutes

#

lmk

low summit
#

been 2 min

zealous bridge
low summit
#

nothings happening

zinc moon
#

yes

zealous bridge
#

just stop futurerestore and start again

lilac wren
low summit
#

i just did it lmao

lilac wren
low summit
#

but froggy they adding a command on windows command

#

so u dont have to open the tool anymore

zealous bridge
#

I just use Windows Snip and Sketch and thats f11 for me @lilac wren

lilac wren
#

ooh didn't know that

#

that's good

zealous bridge
#

Looks way better

#

Than snipping tool

zinc moon
#

@coral falcon i frd TWO TIMES

#

where were you

low summit
#

ibec lol

#

fk

zinc moon
#

@low summit no way lol

zealous bridge
#

to get it

zinc moon
#

why is fr on windows such a hassle

zealous bridge
#

i fucking hate openssl omg

green onyx
#

bruh

low summit
#

do u need to update itunes?

zinc moon
#

self restore

#

the same i am at

#

@low summit my god bro dont tell me

#

youre on an old version

#

of itunes

low summit
#

like 1 version older

zealous bridge
#

@green onyx use f11 or winkey + shift + s to open

low summit
#

just poped up update today

zealous bridge
#

it should be pre-installed

#

if you have a newer version

zinc moon
#

!t ibec

mystic axleBOT
# zinc moon !t ibec
ibec

Fix for error code 3, 8, and 10 aka the iBEC error in futurerestore

  1. Uninstall all apple drivers via device manager.
  2. Uninstall all apple products including itunes and apple device support stuff via control panel uninstall a program. MAKE SURE TO CHECK UNINSTALL DRIVER WHEN UNINSTALLING
  3. Unplug and replug device.
  4. Check device manager for more apple stuff and uninstall if so with same driver checkbox.
  5. Disconnect device.
  6. Install itunes64 exe from apple.com itself, no windows store bullshit. This is the best version: https://support.apple.com/kb/DL1816?locale=en_US (It will be labeled windows 7, 8 but install it on windows 10, it works fine)
  7. Plug in device in recovery.
  8. iboot (recovery) driver should show up under usb in device manager. Uninstall it and check the with software box.
  9. Run futurerestore.
  10. Unplug and replug your device.
  11. Run futurerestore again
zealous bridge
zinc moon
#

14.0.1

#

no lol

#

i use -u

#

so my data doesnt go

green onyx
zinc moon
#

sike i gotta go in a moment

low summit
#

tanbeer u could use the command center for snip lol

#

new windows feature

zinc moon
#

@zealous bridge ok you might have whatever that is BUT

zealous bridge
#

f11 is easier

zinc moon
#

do you hve

#

the fancy shadows

#

i dont think so

low summit
#

do u need latest itunes to fix ibec?

zealous bridge
#

what fancy shadows

zinc moon
#

uhh

#

this

green onyx
#

just f11?

zealous bridge
#

ye

low summit
#

legit?

zinc moon
#

this

low summit
#

wym shadow tho lol

zinc moon
#

😩

#

tf you mean

zealous bridge
low summit
zinc moon
#

on god bro you did NOT just insult system prefrences

low summit
#

too lazy lol

zealous bridge
#

prefer windows settings ngl

zinc moon
#

windows settings is the ugliest piece of shit

#

i have ever shat

low summit
#

Windows settings is mad nice

zinc moon
#

what

low summit
#

I don't know what ur talking about

zealous bridge
#

windows settings in dark mode is the sexiest shit ive ever seen

zinc moon
#

windows settings looks like it could be made in some compiler inside of chrome

low summit
#

U know I'm just gonna disagree with you

#

So don't try to convince me

zinc moon
#

i gotta say tho

#

the spotlight search

#

on windows

#

looks better

low summit
#

It's nice u like Mac

#

But I like windows

zinc moon
zealous bridge
#

why does sudo make install take longer than make wtf

low summit
#

i rebooted 10 times does nonce change?

#

lol

zinc moon
#

@zealous bridge what phone did you mess up everything on

zealous bridge
#

not a phone

#

its called wsl

zinc moon
#

@low summit just re jailbreak

#

and use the shortcut

low summit
#

bruh

#

too lazy

zinc moon
#

ok

#

then use fr

zealous bridge
#

honestly i see no difference

low summit
#

i see no difference

lilac wren
#

Ok I'll make it a bit easier

low summit
#

hey but if u like it koodos

zinc moon
#

the difference is obvious

low summit
#

it really isnt

zinc moon
#

its not that big of a diff but its noticable

low summit
#

cant see jack

zealous bridge
#

oh i see it now

zinc moon
#

look on the bottom

#

of both

low summit
#

nope ibec

#

how i fix

zealous bridge
#

i'd rather no shadows

#

with shadows look worse

zinc moon
#

i cant believe

#

you just said that

low summit
#

!t ibec

mystic axleBOT
# low summit !t ibec
ibec

Fix for error code 3, 8, and 10 aka the iBEC error in futurerestore

  1. Uninstall all apple drivers via device manager.
  2. Uninstall all apple products including itunes and apple device support stuff via control panel uninstall a program. MAKE SURE TO CHECK UNINSTALL DRIVER WHEN UNINSTALLING
  3. Unplug and replug device.
  4. Check device manager for more apple stuff and uninstall if so with same driver checkbox.
  5. Disconnect device.
  6. Install itunes64 exe from apple.com itself, no windows store bullshit. This is the best version: https://support.apple.com/kb/DL1816?locale=en_US (It will be labeled windows 7, 8 but install it on windows 10, it works fine)
  7. Plug in device in recovery.
  8. iboot (recovery) driver should show up under usb in device manager. Uninstall it and check the with software box.
  9. Run futurerestore.
  10. Unplug and replug your device.
  11. Run futurerestore again
zinc moon
#

@low summit update

lilac wren
#

nah when you actually have to use screenshots you'll want shadows

low summit
#

update what lol

zealous bridge
#

i use screenshots

lilac wren
#

obviously shadows left, none right

zealous bridge
#

ok that looks better

#

but still i wouldnt notice if it wasnt pointed out (obv without comparing)

zinc moon
#

tanbeer ngl

#

when you use macos everyday

lilac wren
#

it just adds to the screenshot

zinc moon
#

you notice it alot

lilac wren
#

and makes it "smoooooth"

zinc moon
#

@lilac wren the three dots on the top

#

on macos

#

also look better

#

than windows

lilac wren
#

which dots lol