#development

1 messages · Page 85 of 1

hexed knot
#

you can look this up dude

#

ssh isnt some obscure never used software

visual meadow
#

how to fix

#

i have 20gb of space bro

#

its

#

bullshit

#

@grave sparrow you are xcode crack addict

#

how fix

torn oriole
#

bootloop material

visual meadow
#

sir what do you mean

#

my Macintosh™️ Air 256GB 16GB ram Machine booted just fine

torn oriole
#

how you get 16gb of ram with 256gb of storage

#

thas vile

#

anyway if you want a spare ~15gb temporarily just nuke xcode caches

#

@visual meadow

visual meadow
#

i only have like 3 gb of that

#

its gonna pop back

#

guaranteed

torn oriole
#

only inlfates when building stuff

#

safari can you dont

#

you insist on using passkey when its not even supported trole

silver rampart
#

keeps ur hard drive warm

wheat grotto
#

what about ssd

zenith hatch
silver rampart
safe fog
tepid olive
#

what other jailbreaks other than trollstor can happen on ios 16?

wicked summit
#

gm

hasty ruin
#

gm

austere pollen
#

Nothing else though

native dune
#

it’s good on macos

#

and windows

austere pollen
#

Still on monterey

torn oriole
#

mac auto updated to Sonoma last night

#

woeisme

austere pollen
#

The only device I have on the 17 era updates is my iphone

austere pollen
native dune
#

why didn’t you turn off auto update

torn oriole
#

i even corrupted the current asset audience so it was completely invalid so no deltas for me trolley

austere pollen
#

Apple Pay has been disabled due to your security settings.

torn oriole
#

still managed to install the full package

austere pollen
torn oriole
austere pollen
torn oriole
#

in sonoma they started actually clarifying

torn oriole
austere pollen
#

Probably my update settings

torn oriole
native dune
#

sonoma good

austere pollen
#

I will just do something funny to update

torn oriole
austere pollen
#

Fuck the daemon or something

austere pollen
#

I have the 2021 macbook pro

torn oriole
austere pollen
#

going to mac rn

#

Oh my god

#

Why the fuck does the clock look like iOS

#

I am on macOS 14.1.1

#

I did not say "update"

#

This is bullshit I want 12.6.8 back

torn oriole
#

bro got trolled

austere pollen
#

I'll run time machine and backup

#

Then restore 12.6.8 and use backup overnight

#

Or should I stick with sonoma

hasty ruin
austere pollen
#

Settings is ass

#

Also my apps are flying away

#

Fuck stage manager

pearl sail
faint stag
austere pollen
#

I prefer it gone

faint stag
#

sonoma added desktop widgets and hiding apps when you click the desktop

austere pollen
#

I found how to turn it off so its not a negative

faint stag
#

yes, the settings designed after ios kinda sucks

austere pollen
bright island
#

playboy cartilage

timid briar
#

Anyone know what could’ve happened with my YouTube app? It started to not launch (stayed on splash screen) and generate crash logs.
It then eventually did after waiting some time and trying again but all settings were reset. Not sideloaded/TS, just tweaks

#

Example of such log
What confusing is that it was working just fine minutes before but when I tried launching again it did that. Now it only works with uyou disabled. Maybe a server side check for it on YouTube’s end was just put in place??

faint lionBOT
#
uYouCrashFix

Fixes uYou crash bugs on YouTube v18.43.4

Author

iCraze

Version

1.0

Price

Free

Bundle ID

com.icraze.uyoucrashfix

timid briar
#

I’ll try it, but it’s just reallly weird that it has worked just fine before this

timid briar
hasty ruin
#

ez

#

icrazeware on top

timid briar
#

Just really strange how it reset all my settings tho. Maybe it’s some automatic thing in uyou when it detects some error so it tries to recover?
Before there also was a uyou popup saying that there was some really bad error or something as well

timid briar
#

Ooh ok thanks for the info

primal perch
#

lmfao

#

@grave sparrow whats up dog

torn oriole
exotic spire
cloud yacht
#

can we have this very informative and helpful post pinned?

pearl sail
#

Neither do I

faint timber
faint timber
#

DRIIIIIIIIIIIIIIIIIIIIIIINKKKKKKKKKKKKKKKKKKKKKKK supershocked supershocked supershocked supershocked supershocked supershocked supershocked 🎉🎉🎉🎉

exotic spire
#

anyone has an idea why this form data is being sent like a dict with an empty string on the right when I need it to be a regular dict

granite frigate
#

unrelated, but it's really interesting to see different languages being used in code like variable names and routes lol

manic willow
#

Yeah fr

#

It upsets me tho

#

Because I need it to be English

#

Smooth brain moment

wheat grotto
exotic spire
#

Yeah that ended up fixing it, found about it like 45mins ago

wheat grotto
#

awesome

exotic spire
#

also I needed to use params: not data:

exotic spire
faint timber
#

DRIIIIIINNNNNNNKKKKKKKKK

exotic spire
#

There is some language mixup that I need to correct, but most of it are spanish based variables

faint timber
wheat grotto
#

axios has pulled weird shit on me aswell

faint timber
#

Shut

wheat grotto
#

what should i make for my portfolio ? making a simple website that links to my github projects doesn’t seem good enough as most of the stuff i made is private for other people

faint timber
#

Are you yung lean?

wheat grotto
#

yuh

faint timber
#

False

torn oriole
#

@faint timber is this enough drink

faint timber
#

The correct response is Barry dylan

faint timber
torn oriole
#

Good

faint timber
#

Getting fucked up for new music Friday

faint timber
wooden yarrow
#

woe how the hell do i fix this race condition in javascript

  1. i store setTimeout IDs in a array (should run almost instantaneously??)
  2. user clicks button to clear all timeouts, which is done by iterating through the array and calling clearTimeout
  3. some setTimeouts that were for whatever reason not stored in the array even through their ids atleast should've been stored almost instantly
    ???
timid furnace
#

uh

#

do you have sample code

wooden yarrow
#

let me try reproducing with smallest possible setup

#

oh

#

it might be because i'm calling async from html's onclick (?)

#

getting a

Uncaught (in promise) Error: A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received.
wooden yarrow
# timid furnace do you have sample code
<html>
    <body>
        <button onclick="dotimeouts()">do timeout</button>
        <button onclick="cleartimeouts()">stop all timeout</button>
        <script>
            let arr = []
            function cleartimeouts() {
                for (i in arr) clearTimeout(i);
            }
            async function dotimeouts() {
                for (let i = 0; i < 10000; i++) {
                    arr.push(await setTimeout(() => console.log("yeah"), i*100))
                }
            }
        </script>
    </body>
</html>

i think this should do it

#

atleast it did for me

#

but weird bug

#

so might take some time for it to occur

#

or several tries

#

what happens for me

#

the last 4 were after clearing

wheat grotto
#

yeah

#

yeah

#

yeah

#

yeah

wooden yarrow
#

yeah

wheat grotto
#

Untaught (in promise) Error: yeah

#

Uncaught

#

you mf autocorrect

gentle grove
wooden yarrow
#

setTimeout is async

#

no?

gentle grove
#

I don't understand what you're trying to do here

wheat grotto
wooden yarrow
gentle grove
#

Doesn't it just create a callback which will run in a certain time

#

If it really was async then conceptually this doesn't make any sense because you're trying to sequentially wait for each of the 10,000 timers to finish in your dotimeouts function

wooden yarrow
gentle grove
#

I don't see async there

wooden yarrow
#

so it's a uhh

#

async function

#

without the need of await

gentle grove
#

no

wooden yarrow
#

?

gentle grove
#

It doesn't look like it's an async function

#

it's just a callback function

#

well asynchronous but not an "async function" as in one that returns a promise

wooden yarrow
#

huh, weird, so i wouldn't need the await

#

ok

gentle grove
#

I'm surprised that awaiting something that isn't a promise doesn't give you a warning/error but I guess it's JavaScript

#

so having such a footgun is pretty in character

wooden yarrow
gentle grove
#

How are you observing that

wooden yarrow
#

.length property

#

so imagine i console.log arr.length inside of cleartimeouts

gentle grove
#

Can you show the code in full now

gentle grove
#

with dotimeouts not being async, and removing the await from setTimeout

gentle grove
#

non js developers hating on js for no intelligent reason just to feel superior

gentle grove
#

just regular function

gentle grove
#

Can you show the full code now

wooden yarrow
#

hm hard to get it to do the wrong thing for some reason on a sample code

wooden yarrow
gentle grove
#

It depends

#

What are you actually trying to fix

#

because it could completely change what the solution should be

#

what does your application actually do where you run into this issue

wooden yarrow
#

i click play

#

array gets filled and setTimeouts start waiting for the time

hasty ruin
wooden yarrow
#

i clear the timeouts through a button

#

audio starts playing randomly

#

and the ids of those settimeouts were the ones that for some reason was not visible in the function i use to clear the timeouts

gentle grove
hasty ruin
#

🤓🤓

gentle grove
#

js being a "bad" language here is completely irrelevant

hasty ruin
#

In that case, I was simply starting my own conversation

#

in this public channel

gentle grove
#

ok well you can have fun with that

#

but that doesn't make you not look like an ass

#

just adding noise for no reason

hasty ruin
#

my guy you got triggered by a spongebob gif

gentle grove
#

too tired to deal with this

wooden yarrow
#

@gentle grove is there a potential for the for (i in arr) to not go through the entire array

wooden yarrow
#

.length gives me the correct amount

#

however

#

for (i in arr) does not go to the same length

gentle grove
wooden yarrow
gentle grove
#

Wherever you have the issue and you're testing

wooden yarrow
#

so i'm just working through this on my actual program

gentle grove
#

I'm going to sleep, once you send that I'll look at it in a few hours in the morning

wooden yarrow
# gentle grove I'm going to sleep, once you send that I'll look at it in a few hours in the mor...
<html>
    <body>
        <button onclick="dotimeouts()">do timeout</button>
        <button onclick="cleartimeouts()">stop all timeout</button>
        <script>
            let arr = []
            function cleartimeouts() {
                let max1, max2;
                for (let i in arr) max1 = i;
                for (let i = 0; i < arr.length; i++) {
                    max2 = arr[i];
                    clearTimeout(arr[i]);
                }
                console.log(max1, max2);
            }
            async function dotimeouts() {
                for (let i = 0; i < 10000; i++) {
                    let topush = setTimeout(() => console.log("yeah"), i*100);
                    arr.push(topush)
                }
            }
        </script>
    </body>
</html>

gives 9999 10003

#

why the fuck

#

is let i in ... just bad

#

or am i just skill issuing

#

i have no idea now if this is even related to setTimeout but

#

including it in anyways

gentle grove
#

it shouldn't make any difference but it would eliminate one possibility

wooden yarrow
#

(i assume you mean async not a sync)

gentle grove
wooden yarrow
#

?

#

like

#

let arr in i

#

?

#

or

gentle grove
#

do the counter for loop first then the let i in arr

wooden yarrow
#

alr

#

same result

gentle grove
#

same result as in the first one was 9999 and second was 10003

#

or as in the let .. in .. was 9999 and the counter loop was 100003

gentle grove
#

Or sometii hi ng similarp

wooden yarrow
#

i dont think setTimeout can give undefined

#

can it?

gentle grove
#

you're not supposed to use for in is the overall idea

#

for iterating over array

gentle grove
#

But maybe that doesn't matter

wooden yarrow
#

lmfao

gentle grove
#

Idk why it's giving you less

#

It's suooosed to be used for looping over an objects properties but that wouldn't matter here because you aren't doing anything weird by adding to the array prototype

wooden yarrow
#
function cleartimeouts() {
                let max1, max2, max3;
                for (let i in arr) max1 = i;
                for (let i of arr) max2 = i;
                for (let i = 0; i < arr.length; i++) {
                    max3 = arr[i];
                    clearTimeout(arr[i]);
                }
                console.log(max1, max2, max3);
            }

9999 10003 10003
i think let i in arr is giving me the index

#

i hate this

gentle grove
#

The for .. of .. is what you're supposed to use I think

wooden yarrow
#

i think that was the issue then

#

thanks

gentle grove
#

Weird

gentle grove
#

I assumed that's what you were trying to do but I didn't read it

wooden yarrow
#

length was getting me confused with all the settimeout ids

#

but

#

length is all the same

gentle grove
#

you're just printing out the last "i" that's looped through

wooden yarrow
#

in all the for loops

#

and everywwhere, really

gentle grove
#

but for in doesn't guarantee order

#

so maybe it was getting them all just it happened to do 9999 last

#

which would make sense if the total amount is the same between all of them

wooden yarrow
#

should i try printing if 10003 ever exists then?

#

in the for ... in ... loop

gentle grove
#

just count the loop iterations

#

and then just use for of in the end and be done with it

wooden yarrow
#

soo

#

i think for ... in ... is index

#

for arrays

#

and for x of y and the length one is elements

#

give me the damn error

lime pivot
wooden yarrow
#

i wouldnt code in it if i didnt have to

lime pivot
#

JavaScript hates you back joesmile

wooden yarrow
#

true...

hasty ruin
naive kraken
#

any news?

steady nest
#

any news?

vivid dew
#

any news?

hasty ruin
#

aaron has died

granite frigate
#

any news?

hasty ruin
timid briar
#

news: spoilered text: hi

granite frigate
native dune
#

any news?

hasty ruin
native dune
#

oh

hasty ruin
#

no way, spoiler in rjb

vivid dew
#

what balls

hasty ruin
#

oh?

manic willow
manic willow
hasty ruin
manic willow
#

yeah but I'm the guy that says that

#

😔

#

ALSO HEY WAIT A SECOND

#

HOW COME I ANNOY YOU PEOPLE

#

I HAVEN'T SAID IT THE MOST

native dune
#

any news?

manic willow
#

fuck you

#

lmao

hasty ruin
manic willow
#

oh shit

#

uhh

#

respectfully, fuck you

native dune
#

rule 1….

manic willow
#

I said respectfully

vivid dew
#

any news

blazing warren
#

Currently jailbroken on 17.2 will release at 10 followers

vivid dew
#

anyone else here a catgirl or just me

hasty ruin
#

just you

blazing warren
#

...

cloud yacht
#

Currently jailbroken on 69.42.0 will release at 1 follower

young meteor
#

Currently jailbroken on -17.2 will release at -1 follower

dawn abyss
#

Anyone up to give some troubleshooting help?
I'm running into this issue. iOS 14.3 on iPhone X w unc0ver jb

GitHub

[Public version] iMessage phone number registration on Android devices, without a separate SIM card! - Issues · AwesomeIndustry/SIMLessPNRGateway

dawn abyss
#

fr?

manic willow
#

Idk probably

#

I just like telling everyone who uses unc0ver to use the coolstar alternative lmaoo

dawn abyss
#

worth a shot ig

native dune
misty cradle
#
#

Perhaps ..

manic willow
#

wait

#

it'll give third party apps

#

permission to install other apps

#

trollstore troll

hasty ruin
#

any news?

naive kraken
#

sewn yna?

blazing warren
#

wens nya?

visual meadow
#

hey guys

#

any news

#

anyways i have figured out why safari taking 18 gb of space

#

the tmp folder was 18 gb

#

In safari app container

young meteor
#

nathan any news on how much space safari is using now?

lyric timber
#

I'm desperately looking for someone with an M3 Mac (or getting one soon) to save the macOS 13.5 that comes preinstalled in it

granite frigate
#

any news?

lyric timber
granite frigate
#

i’m just trolling

#

why is it funny when others do it 😭

vivid dew
#

let's be real here

#

it was never funny

granite frigate
#

true

pearl sail
naive kraken
acoustic imp
#

Any way to get a tether me functionality in dopamine? Like using term comands or smthing ?

steady nest
#

any news?

velvet path
#

I mean I'm gonna probably start to save money to buy a ""base"" M3 Max 16" MBP, but that's not an M3 so

pearl sail
#

You don't have money to buy one don't loop other people with your broke ass

hasty ruin
hexed knot
#

Talk about yourself, not others

#

They left japan lil bro

#

Fuck no

#

Cuz im not tryna go to singapore

#

Cuz that shits expensive

pearl sail
#

This broke fool should try releasing something of value tihmstar duplicate

tepid olive
#

Is there a tweak that allows you to use 3rd party WebKit software on iOS instead of stock?

#

I know that every browser on iOS is forced to use safari webkit so apps like chrome is just safari with a wrapper on top

#

Asking because I would love to have something like Firefox and ublock origin on iOS

primal perch
#

@grave sparrow

tepid olive
#

jialbreak?

wicked summit
#

wen eta?

blazing warren
#

s0n

native dune
#

any news????????

young meteor
#

any news?

pearl sail
#

@manic willow any news?!?!?

manic willow
#

I hate you all

blazing warren
#

yna wens?!?!?

vivid dew
#

any news

manic willow
faint stag
#

send news

timid furnace
viral osprey
#

Any news?

naive kraken
#

any news?

native dune
#

swen yna?

pearl sail
#

@manic willow any news?!?!?

blazing warren
faint lionBOT
#

@faint timber

Fake or scam jailbreak

Your message contained the link to a fake jailbreak (pangu8.com).

If you installed this jailbreak, remove it from your device immediately and try to get a refund if you paid for it. Jailbreaks never cost money and will not ask for any form of payment or survey to install them.

faint timber
#

haha

versed wasp
#

wen eta iPhone OS 4.3.1 jelbrek

radiant idol
#

mods!

faint timber
#

genius usually able to

indigo peak
#

.

faint timber
#

cam or hydrate need to fix filter

faint timber
indigo peak
#

real

#

im so bored and don't know what to code

radiant idol
#

trolle

faint timber
#

do what bellis did

deep wolf
#

is this a place where I can ask someone to make a small change to an open source tweak

faint timber
#

this the place where we destroy your fragile existence for missing a semicolon

deep wolf
#

been there 😆

#

I am trying to make the tweak StatusBarTimer hide the clock (not the timer) when I am on the home screen or lock screen. I already got it to do this successfully, but it takes a second to update when going to the home screen, and still shows the clock the whole time on the lockscreen/whenever unlocking

#

This is what I changed the setText code to in order to make the clock blank:

torn oriole
#

hardcoded fake jb sites

deep wolf
#

I was able to get rid of the clock just fine, I'm having trouble with the logic of it I think. Never done anything with objective C or jailbreak programming before. I'm looking to make it update quicker whenever you go to the lock/homescreens, and have it default to not showing the clock unless a timer is on

#

fair enough haha, I'll try the set alpha

#

is there a reason for it or just convention?

faint timber
torn oriole
#

hm

#

@shrewd smelt gir nerd, what is your opinion

shrewd smelt
#

its a git repo

#

w a json

torn oriole
#

synchronous operations

deep wolf
#

I'll give this a shot, thank you

shrewd smelt
torn oriole
shrewd smelt
#

oh yeah probably

#

dont geniuses bypass piracy too

torn oriole
#

if its set to level 4 then yeah

#

(what i set everything i filter to)

shrewd smelt
#

filter every letter and set it to aaron or higher at 3am est so the server is ruined

torn oriole
#

epic april fools prank

#

change every filter to aaron or above and watch him have to unfilter everything

steep pulsar
#

Looking to hire someone to improve a tweak I have. PM if you're looking for work

torn oriole
#

Icraze will do it within 10 minutes and for free salute

#

(Probably)

primal perch
#

fr

wicked summit
#

wtf is zefram

#

[redacted]?

steep pulsar
#

I have source code for a camera spoof tweak but it’s unable to spoof the audio.

The purpose of the tweak is to play a pre recorded video on TikTok Live with the camera and audio spoofed to promote our product to customers with TikTok Shop Live.

#

can you do for $450?

steep pulsar
#

it's for personal use / in house. I have a tweak already made that spoofs the camera on any app you use with a pre selected video.

but for some reason, the audio from that video doesn't spoof. does that make sense?

#

can you PM me ill send u some videos

deep wolf
#

is there a way to get all of the observers I can tap into? I want to see when a timer's state has changed. There is a property unsigned long long state in MTTimer.h

wicked summit
#

gm

tepid olive
#

abywyas

#

any news about troll store ot smth

manic willow
blazing warren
primal perch
#

coming this week

#

@grave sparrow has been working on it hard, ask him for further questions

hasty ruin
radiant idol
tepid olive
#

im not sure if this is irony or smth but i dont rly care since i hate ios 17 anyways

versed wasp
blazing warren
#

yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions

cloud yacht
#

yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions

tepid olive
#

yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions

versed wasp
tepid olive
#

my friend had the name capt

versed wasp
tepid olive
#

he is in prison for stealing

pearl sail
#

Just like @grave sparrow should be

native dune
#

ask @grave sparrow about the new ios 15.5 jailbreak too

deep wolf
#

where do i find a list of keys for the user info dictionary and list of observers

native dune
#

===== RAGE START =====

#

balls

#

===== RAGE OVER =====

primal perch
#

===== RAGE START =====
balls
===== RAGE OVER =====

blazing warren
#

===== RAGE START =====
balls
===== RAGE OVER =====

grim sparrow
#

===== RAGE START =====
balls
===== RAGE OVER =====

fiery seal
#

===== RAGE START =====
balls
===== RAGE OVER =====

primal perch
#

@misty cradle

#

2020 april

misty cradle
#

Tr1 racist??

#

Never

primal perch
#

fr

quiet agate
#

hello, could someone please answer me, each 2 days my device enter in safe mode because a tweak, instead of removing the tweak i want to know when the device enter in safe mode and then do a respring to come back automatically, i think to use jb.c to hook into launchd maybe on launchd there is a flag to get if the device is on safe mode and then do a respring, please how can i know when the device goes to safe mode ? i use ellekit

#

rootless

#

i mean hook the launchd without any library like susbtitue or ellekit

#

in order to don't stop anothers tweaks

#

ik

#

for that reason i am gonna inject without a hook library

#

bro can you tell me if there is something to get if the devices is on safe mode only ?

#

ellekit ? don't you know so ?

#

algiht

native dune
#

launchd hook im pretty sure

quiet agate
#

thanks

#

extacly that i want

#

for example i am sleeping so i can't respring my device so it does automarically

native dune
#

defeats the whole purpose of safe mode

#

might as well delete safe mode

quiet agate
native dune
#

what tweak is it

quiet agate
#

ellekit ?

native dune
#

i get what they mean but thats not a good solution at all

#

pretty sure its built in

quiet agate
#

ok

hasty ruin
#

if you're using ellekit and really dont want safe mode, just recompile ellekit without the safemode code

quiet agate
#

i get ios 14 rootless and there is some tweaks unestable like doing go the device automatically on safe mode

#

but is rarely like each 2 days

native dune
#

ios 14 rootless..?

quiet agate
#

yeah

native dune
#

why would you use ios 14 rootless

quiet agate
#

haha yeah i will start from that but first i am just asking if i can just in case

quiet agate
quiet agate
#

just in case i am not doing a jailbreak bro this is a test by my own

quiet agate
#

i should start first looking for source code and then if i can't find anything ask haha, look /var/mobile/.eksafemode this is the file that is created when the device does into false mode, thanks everybody

#

sadly the idea of launchd hook will not work KEKW

cloud yacht
#

Why don't you like just setup a shotcut that just resprings at 3am?

visual meadow
cloud yacht
#

Just like give it a minute cooldown or somthing so it doesn't accidently get you stuck in a respring loop

hasty ruin
#

then it's a skill issue

pearl sail
#

Zefram bootlooped me 😦

wicked summit
#

gm

native dune
#

yes. yes it does

naive kraken
#

Any news?

blazing warren
#

Any news?

viral osprey
primal perch
#

captware

graceful gate
#

Not all heros ware capt

visual meadow
#

it is a launch daemon

viral osprey
visual meadow
cloud yacht
#

yo you should checkout this really cool technology called ssh

visual meadow
#

any news

carmine mirage
#

any news

acoustic imp
#

any news

steady nest
#

any news?

faint timber
hasty ruin
#

fuck @grave sparrow

faint timber
#

capt needs to be more active in the haxx dev

faint timber
#

I'm about to commit the motherload of sins just from what I dealt with today

carmine mirage
#

What happened

faint timber
#

violence of inanimate objects is required

carmine mirage
#

Uh oh

hasty ruin
faint timber
#

I do not do violence on living beings

#

just destroyed by school and work

carmine mirage
#

Do you than condone it

faint timber
#

still a no

hasty ruin
#

Wtf

faint timber
#

lets haxx some bitches

acoustic imp
#

whats the thing called on IOS where u can chooses where your like audio goes

#

like thru ur airpods or phone speaker

hasty ruin
#

Audio routing

acoustic imp
#

thx

#

what would be good tweak name for a tweak that just hides it on the LS?

#

like HideAudioRoutingLS ?

acoustic imp
#

👍

pearl sail
#

Not like it is being used by any released product

visual meadow
#

anyone know what is going on here

pearl sail
#

Compiling error

faint timber
#

use a patched sdk

visual meadow
#

what would I do there

torn oriole
#

Patch the sdk

faint timber
#

just patch out unavaialbles

visual meadow
#

ok

torn oriole
#

I love arbitrary limitations imposed by developers I love arbitrary limitations imposed by developers

visual meadow
pearl sail
#

We Stan arbitrary limits

acoustic imp
#

Using the tweak pref template

#

is thre like a know issue that causes this?

visual meadow
#

welp i tried

exotic spire
#

Assuming I want to have a frontend (ReactJS) /backend (Python-FastAPI) application, one in each folder, do I need to have one docker_compose file per folder or is the optimal to have one for both services

gentle grove
exotic spire
#

oh

#

well

#

what if I have it on 2 separate repos

#

for github actions

gentle grove
exotic spire
gentle grove
#

there's nothing to build

primal perch
#

@gentle grove boba

odd timber
#

Serious question out of curiosity: How can something like checkl0ck work on iOS 16 if enabling the SEP even for a moment requires you to restore the device before jailbreaking it again?

viral osprey
#

Any news?

elder scaffold
#

That explanation doesn't sound right to me

naive kraken
#

Any news?

harsh junco
#

@manic willow what have you done

#

Any news?

native dune
#

any news?

feral mirage
#

any news?

carmine mirage
#

any news

graceful gate
#

amy news

harsh junco
native dune
hasty ruin
#

🦓

carmine mirage
#

Zebsr

hasty ruin
harsh junco
young meteor
#

any news?

carmine mirage
#

any news

naive kraken
#

does rootles iphone jailbreak tweaks mean that there is a plant living inside yourhone and you’re cutting out the roots from it? which means the plant will never grow and die instantly so does that mean rootless is just a thing to kill your phone?

harsh junco
#

wtf opa shitpost

steady nest
visual meadow
#

TrollStore iOS 16.5?

#

Thank you opa hard work. TrollStore 16.5 coming?

visual meadow
#

Why ?

harsh junco
#

Thank you for your always hard work. Any news?

cloud yacht
#

yea
coming this week
@hasty ruin has been working on it hard, ask him for further questions

primal perch
#

any news?

shrewd smelt
#

any news?

#

@hasty ruin Hello, sir, I've been informed you are the person to ping regarding future iOS jailbreaks. Do we have a timeline when you plan to release nexusjb and nexushooker?

hasty ruin
#

my balls

shrewd smelt
#

Thank you sir its an honor

primal perch
#

@hasty ruin Hello, sir, I've been informed you are the person to ping regarding future iOS jailbreaks. Do we have a timeline when you plan to release nexusjb and nexushooker?

hasty ruin
visual meadow
#

@hasty ruin Hello, sir , i have been inform you are person who futer jailbreak . Do you inform of the nexus jb and nexus hooker ?

grim sparrow
#

@hasty ruin Hello, sir , i have been inform you are person who futer jailbreak . Do you inform of the nexus jb and nexus hooker ?

primal perch
#

@hasty ruin Hello, sir , i have been inform you are person who futer jailbreak . Do you inform of the nexus jb and nexus hooker ?

carmine mirage
#

@hasty ruin Hello, sir , i have been inform you are person who futer jailbreak . Do you inform of the nexus jb and nexus hooker ?

cloud yacht
visual meadow
#

@hasty ruin troll store ?

pearl sail
#

@grave sparrow Hello, sir, I've been informed you are the person to ping regarding future iOS jailbreaks. Do we have a timeline when you plan to release zefram and zeframhooker?

visual meadow
#

lol my old watch is bootlooping bro

#

Thats crazy

pearl sail
gaunt helm
harsh junco
#

@hasty ruin Hello, sir , i have been inform you are person who jailbreak . Do you inform of the crazejb and ntwerkloader?

fiery seal
indigo peak
visual meadow
#

bro just release zefram source

#

why musut you gatekeep it

#

ok buddy release it for $20 then idk

#

advanced bootloop tool

#

@manic willow any news?

harsh junco
#

@manic willow any news?

feral mirage
#

@manic willow any news?

carmine mirage
#

@manic willow any news?

#

@manic willow any news?

young meteor
#

@manic willow any news on YogurtJB?

visual meadow
#

@manic willow prison break ios 17.9?

harsh junco
#

pvp nathan

#

/jbg/ ios jailbreak general @ 4chan's /g/

cloud yacht
#

200 cents

vivid dew
blazing warren
pearl sail
#

Guess it is never being released then

pearl sail
#

@manic willow Any News!?!?!?

viral osprey
#

Any news?

visual meadow
#

Real questions being asked here

#

@manic willow any news ????

feral mirage
#

Troll 2 can I support it @manic willow ?

radiant idol
#

@lapis vessel
I saw you made your tweaks free a while ago, and I really like Flow. I was wondering if it was possible for you to open source it at some point since I (alongside many others) do enjoy the tweak and would like to modify it to work with rootless jailbreaks

acoustic imp
#

REALLLLLLLLLLLLLLL ^

#

@radiant idol im having an issue with tweak prefs, i made a tweak (with nothing in it) and added prefs to it, compiled and installed. but when i try to go to the prefs in settings app is crashes, but when i o into the prefs in tweak settings app it works fine

radiant idol
#

Crashlog?

timid briar
acoustic imp
radiant idol
#

Give me a bit, I'm going to go eat first

acoustic imp
#

ok

acoustic imp
timid furnace
#

abi crash

#

use new xcode

acoustic imp
#

its my phone

timid furnace
#

use allemand then i guess

#

or oldabi

acoustic imp
timid furnace
#

oldabi but it's applied to the file instead of at runtime

#

ideally though you should just use like github actions or something so you can build with macOS

acoustic imp
#

thanks for the help

radiant idol
#

looks like you got it sorted out

radiant idol
acoustic imp
timid furnace
#

for testing you can use oldabi i guess

#

and then once you're ready for a release you can build on the vm or on github actions

acoustic imp
#

yea but spin locks, and im just learning tweak dev

#

can i do it on linux?

#

like compile w new abi or no

radiant idol
#

No

acoustic imp
#

dont i just need to update the xcode toolchain?

#

so couldnt you like extartc the new one and replace it with the old one?

radiant idol
#

No

acoustic imp
#

thats not how it work?

#

@timid furnace why is it only for settings/prefs it has abi issues

wooden yarrow
timid furnace
wooden yarrow
#

o

wooden yarrow
#

cool

timid furnace
#

Tweak Settings p sure is not

acoustic imp
#

ah

#

i mean i could just your tweak settings instead of old abi for now

#

silly me

#

it should be the same right?

timid furnace
#

yea

blazing warren
timid furnace
#

you "develop" zefram, you shouldn't be talking

radiant idol
#

I've also noticed some discussion by opa regarding a proper rootless patcher without symlinks. He described it as "rebasing the binary to a new section in macho after modifying the strings." What exactly does this entail? Not that I have the experience to actually attempt to make this, I'm just curious as to how much work this would actually take

hasty ruin
#

it entails rebasing the binary to a new section in macho after modifying the strings

native dune
#

💀

radiant idol
#

no way

native orbit
#

probably something with rebasing the binary

radiant idol
#

nah but fr

torn oriole
#

Guys i have excellent news

native dune
#

no more news……

torn oriole
#

News is cancelled

native orbit
#

is this the news?

timid furnace
#

it's the real news

viral osprey
#

The news arrived: no more news

timid furnace
radiant idol
#

But like

#

in terms of difficulty

#

how does that rank

torn oriole
#

Shit my bad

deep wolf
#

what observers would I set up to detect when the phone has gone to the home screen or is on the lockscreen? If anyone has a list of these or knows where to find it, that would also be very helpful!

frank fossil
drifting linden
#

What’s tccd

timid furnace
#

i wonder if they also use rebases

visual meadow
#

... its broken on all 16 versions

visual meadow
#

It has been fixed on the github

hasty ruin
#

fuck ios 16

radiant idol
#

Or am I misunderstanding

naive kraken
#

I don't think there is something more difficult in terms of the macho format

radiant idol
#

Ah okay

radiant idol
#

what I’m mostly confused about is that wasn’t the main issue that bin sizes cannot be modified? how can you do what you’re talking about without modifying the size of the bin?

#

I feel like I’m just not getting that part

#

I get the basic concept, I’m just confused as to how it would actually be executed

sonic totem
#

The size can be modified, you just need to edit the MachO load commands.

radiant idol
#

oh, interesting

sonic totem
#

If you couldn’t then code-signing wouldn’t work

#

Because you literally append the code signature to the end of the existing binary

radiant idol
#

right

sonic totem
#

But if you edit the load commands the signature will be invalid, so you’ll have to resign the binary

#

But that’s not a problem for jailbreaks as they patch signature checks anyway

radiant idol
#

I wish someone would actually make the patcher lol

sonic totem
#

Isn’t there already a rootless patcher?

radiant idol
#

It just repacks the package as a rootless package

sonic totem
#

Derootifier should work

radiant idol
#

It does not modify str’s

sonic totem
#

Oh, I didn’t realise

#

It’s hard to automate because you’d have to be able to tell which strings have to be changed and which don’t

radiant idol
#

So anything beyond small tweaks without hardcoded paths won’t work

sonic totem
#

But manually it shouldn’t be too difficult if you have a decent knowledge of MachO structure

radiant idol
#

I don’t think automating it would actually be possible, but having a list or something and then just modifying the str’s based on the list would be fine

sonic totem
#

Actually that’s not true because you’d have to update the cstring segment and then string references

radiant idol
#

but how would you know exactly which str’s should be modified

sonic totem
#

You could probably create some regex expression to filter for file paths

radiant idol
#

you cant just modify any file path

#

what if it’s linking to a framework or something

#

something that exists in stock iOS

sonic totem
#

In the cstring segment though

radiant idol
#

modifying that would cause issues

sonic totem
#

If the tweak uses file paths

#

That should be okay I imagine?

radiant idol
# sonic totem That _should_ be okay I imagine?

if it’s something like /Library/MobileSubstrate/DynamicLibraries/…, you would have to modify this and add /var/jb in front. But if it is something like /System/Library/PrivateFrameworks/…, modifying that would cause issues

sonic totem
#

Yeah that’s true

#

So re-compiling for rootless is the safest option

radiant idol
#

definitely

#

but what about closed source tweaks (that were never updated) that almost completely work on rootless

#

but can’t since path issues

sonic totem
#

Try and do it yourself or hope the developer does it ¯_(ツ)_/¯

radiant idol
#

sigh

harsh junco
#

@manic willow thanks for hard work when iso10 procursus

faint timber
#

who are you pinging?

pearl sail
#

The dude who got banned

#

froyo

#

whatever their name was

faint timber
#

u not observant?

pearl sail
#

no I just don't care

ancient bloom
#

Hi! Is this a place suitable to find a developer for a custom tweak?

indigo peak
#

r/TweakBounty

faint stag
#

i get the point tho

blazing warren
#

News any

tepid olive
#

okay so purely theoritocilsli

#

how many exploits would it take for a brand new jailbreak?

radiant idol
tepid olive
#

im uoitl different

#

also like

#

why a bug will be released on 20 december

#

ask @manic willow

sonic totem
#

For A11 and below, just a kernel exploit will suffice, but it doesn't really matter as you have checkm8.

tepid olive
sonic totem
#

No, we don’t

#

kfd is a kernel exploit, but that only works up to iOS 16.5

#

There have been PPL bypasses patched in iOS 17.1 and 17.0 but they both require a PAC bypass to exploit

tepid olive
#

damn

#

welp i guess we'll get a jailbreak in 2 years or smth

wicked summit
#

gm

next wadi
wicked summit
#

jaidan

next wadi
#

yulk

wicked summit
#

the man the myth the legend

next wadi
#

very true

hasty ruin
#

gm

next wadi
hasty ruin
vivid dew
#

any catgirl news

timid briar
naive kraken
#

I just took a shit

#

That's the news for today

#

Turn in tomorrow for more exciting news

torn oriole
visual meadow
#

let me predict tomorrow

#

"I just took a piss"

pearl sail
frail cedar
#

Spartan development news: I didn't do anything today

lime pivot
frail cedar
#

I lied

#

I just fixed building it if you're on macOS 12.3+

#

Didn't require any source code modifications though I just changed a path

hexed knot
#

ANY NEWS????????????????????????????????????????????

brazen timber
#

no more news

blazing warren
#

no more news?

carmine mirage
#

no more news :(

faint timber
#

news was discontinued

hasty ruin
#

i have news

#

new icraze tweak soon on havoc.app

#

👍

carmine mirage
vivid dew
radiant idol
hasty ruin
radiant idol
#

nice

timid briar
pearl sail
hasty ruin
shrewd smelt
# pearl sail <@&558709886397972481> <@252995276627771392> beware malware will be put on the H...

The Havoc repository is committed to providing a safe and secure environment for its users. All packages uploaded to the repository are scanned for malware using a variety of security tools and techniques. This includes using antivirus software, code analysis tools, and machine learning algorithms to detect potential threats. Additionally, the Havoc team manually reviews each package before it is approved for upload. This ensures that only safe and reliable packages are available to users.

iCraze is a well-respected developer in the Havoc community and has a proven track record of releasing high-quality software. Their packages have been thoroughly tested and are known to be free of malware. Users can be confident that downloading and using packages from iCraze is safe.

In addition to the security measures in place, the Havoc repository also encourages users to practice safe computing habits. This includes keeping your software up to date, using strong passwords, and being cautious about clicking on links or opening attachments from unknown sources. By following these simple guidelines, users can further protect themselves from malware and other online threats.

In conclusion, the Havoc repository takes the security of its users very seriously. All packages are scanned for malware before uploading, and only safe and reliable packages are available to users. iCraze is a trustworthy developer, and there is no need to be worried about the safety of their packages. Users can further protect themselves by practicing safe computing habits.

hexed knot
shrewd smelt
hasty ruin
# pearl sail <@&558709886397972481> <@252995276627771392> beware malware will be put on the H...

The Havoc repository is committed to providing a safe and secure environment for its users. All packages uploaded to the repository are scanned for malware using a variety of security tools and techniques. This includes using antivirus software, code analysis tools, and machine learning algorithms to detect potential threats. Additionally, the Havoc team manually reviews each package before it is approved for upload. This ensures that only safe and reliable packages are available to users.

iCraze is a well-respected developer in the Havoc community and has a proven track record of releasing high-quality software. Their packages have been thoroughly tested and are known to be free of malware. Users can be confident that downloading and using packages from iCraze is safe.

In addition to the security measures in place, the Havoc repository also encourages users to practice safe computing habits. This includes keeping your software up to date, using strong passwords, and being cautious about clicking on links or opening attachments from unknown sources. By following these simple guidelines, users can further protect themselves from malware and other online threats.

In conclusion, the Havoc repository takes the security of its users very seriously. All packages are scanned for malware before uploading, and only safe and reliable packages are available to users. iCraze is a trustworthy developer, and there is no need to be worried about the safety of their packages. Users can further protect themselves by practicing safe computing habits.

primal perch
#

iCraze is a well-respected developer in the Havoc community and has a proven track record of releasing high-quality software.

#

okr

severe stream
frail cedar
#

@grave sparrow i'll buy it for 2000 raptoreum

#

Damn

#

2200

#

i don't know

#

i haven't checked in like a year

#

i mined some like two years ago for funsies

#

bitches minecraft mod when

#

com.bitches.bitches

#

i have never installed it

#

too many silly things on fb marketplace

#

that's all I use though

gentle grove
#

buying it rn

tepid olive
#

yall is that website with progress on jailbreak real or fake

cursive rampart
#

the what

pearl sail
#

Nah you still a walking L

hasty ruin
blazing warren
faint stag
#

well i mean
there's no other planet that can sustain life in the solar system clueless

visual meadow
#

any news?

hasty ruin
#

did you know that you’re a fucking nerd

primal perch
pearl sail
#

Like I said walking L

wicked summit
#

gm

vale oxide
gentle grove
#

If you disassemble mercury you get a nuclear explosion

vale oxide
#

sick

frail cedar
torn oriole
cloud yacht
vale oxide
visual meadow
faint timber
#

finally capt is here

#

chat always boring until he gets here

odd timber
#

I remember @naive kraken left a comment saying that checkm8 still exists on everything from XR-11PM but we can't access it due to the inability to memoryleak the bootloader. How can we know that A12-A13 are vulnerable if we've never been able to get checkm8 working on it? (serious question outta curiosity). Is it due to the fact that the UaF vulnerability wasn't discovered until 2019 and the 12/A14 came out a year later?

odd timber
#

ty

faint timber
# odd timber ooooh interesting

also every ROM "goes gold" a few years before release

example:
the M3 Pro has a version of 8104 which is between iOS 15 and 16.0 beta

#

so that explains why those versions still have the bugs in some capacity

odd timber
#

looks like the exploit being "patched" with the XR/XS was only a coincidence then

#

my uni prof was teaching something about C regarding memory freeing and how index outta bounds is never checked in C and i asked "is this how Use After Free vulnerabilities work" cause of this very thing lmao

#

i think i confoosled him a bit

#

same smh

#

we smort

#

I promise im totally not a dude who tried to make his own bitcoin address generator and break his chrome tab with it

#

i totally didnt rage for days while developing my first simple C program

faint timber
#

With newer devices SEPROM has a way to get patches despite being a maskrom

pearl sail
#

You raged at writing hello world? You a walking L fr.

visual meadow
#

sometimes

#

i get a good feeling

pearl sail
#

Damn I get to experience the pain of watching basketball

#

Stop

visual meadow
#

i get a good feeling

#

yeah

pearl sail
#

You were like 2 years old when this came out

visual meadow
pearl sail
#

Yeah

#

Unfortunately

visual meadow
#

i was 5 lol there a difference

#

Ok

faint timber
#

01 gang rise up

visual meadow
#

Video unavailable
This video contains content from UMG, who has blocked it from display on this website or application
Watch on YouTube

faint timber
#

Was truly surreal experience growing up as a normal child with toys and no screen in front of me

#

Y’all missed out