#development
1 messages · Page 85 of 1
how to fix
i have 20gb of space bro
its
bullshit
@grave sparrow you are xcode crack addict
how fix
bootloop material
what
sir what do you mean
my Macintosh™️ Air 256GB 16GB ram Machine booted just fine
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
only inlfates when building stuff
safari can you dont
you insist on using passkey when its not even supported 
keeps ur hard drive warm
what about ssd
keeps them warm too
LMAO
what other jailbreaks other than trollstor can happen on ios 16?
gm
gm
Passkeys are great when I am on my iPhone
Nothing else though
The only device I have on the 17 era updates is my iphone
is it worth the update
why didn’t you turn off auto update
i had it off
i even corrupted the current asset audience so it was completely invalid so no deltas for me 
Apple Pay has been disabled due to your security settings.
still managed to install the full package
He went a mile but sonoma ran a whole marathon
if you havent changed anything like boot security or SIP then disable all but check for updates and security responses in softwareupdate settings
I had boot security set to reduced to fix some restore issue but I believe it changed back
in sonoma they started actually clarifying
apple pay kept working under reduced security for me
Probably my update settings
bare minimum you need
sonoma good
I had everything but security responses off
I will just do something funny to update
sonoma good, but monterey better 🦾
Fuck the daemon or something
just do what i do tr
Need this fr🙏
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
bro got trolled
Did me dirty😭
I'll run time machine and backup
Then restore 12.6.8 and use backup overnight
Or should I stick with sonoma

Its actually so shit
Settings is ass
Also my apps are flying away
Fuck stage manager
Post the cards in chat so I can try on my end
that was ventura, and what's wrong with stage manager?
Its new
I prefer it gone
sonoma added desktop widgets and hiding apps when you click the desktop
I found how to turn it off so its not a negative
yes, the settings designed after ios kinda sucks
Its ass
playboy cartilage
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??
[[uyoucrashfix]] maybe?
Fixes uYou crash bugs on YouTube v18.43.4
I’ll try it, but it’s just reallly weird that it has worked just fine before this
Ok now it’s working Lol tyty
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
Ooh ok thanks for the info


Neither do I
DRIIIIIIIIIIIIIIIIIIIIIIINKKKKKKKKKKKKKKKKKKKKKKK
🎉🎉🎉🎉
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
unrelated, but it's really interesting to see different languages being used in code like variable names and routes lol
what if you remove the json.stringify ?
Yeah that ended up fixing it, found about it like 45mins ago
awesome
also I needed to use params: not data:
Not every piece of software in the world is gonna be in English, specially this one which is spanish only
DRIIIIIINNNNNNNKKKKKKKKK
There is some language mixup that I need to correct, but most of it are spanish based variables


axios has pulled weird shit on me aswell
Shut
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
Are you yung lean?
yuh
False
@faint timber is this enough drink
The correct response is Barry dylan
Yah
Good
Getting fucked up for new music Friday
https://youtu.be/qiSV4oKKgL4?si=M3I5XOXzZIdJGF9D
Sir you are missing the lore
i added both the videos for your viewing pleasure
woe how the hell do i fix this race condition in javascript
- i store setTimeout IDs in a array (should run almost instantaneously??)
- user clicks button to clear all timeouts, which is done by iterating through the array and calling clearTimeout
- some setTimeouts that were for whatever reason not stored in the array even through their ids atleast should've been stored almost instantly
???
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.
<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
yeah
well why is your dotimeouts an async function
I don't understand what you're trying to do here
it should be
make timers that will do something, and when clicking the "stop all timeout" button, clear all of it
I don't think so?
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
I don't see async there
no
?
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
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
anyways in my actual code the array just isn't filled with all the promises with/without await/async keywords, so
- i fill array with settimeout ids (it tells me the right amount)
- i try to clear it (it has less than the actual amount)
- residual settimeouts that weren't cleared for whatever reason start running
Wdym it has less than the actual amount on 2
How are you observing that
Can you show the code in full now
with dotimeouts not being async, and removing the await from setTimeout
@primal perch new gif dropped
non js developers hating on js for no intelligent reason just to feel superior
Does the issue still exist after making dotimeouts not async
just regular function
yes
Can you show the full code now
hm hard to get it to do the wrong thing for some reason on a sample code
the sample i made just to demo the bug or my actual code i'm trying to fix?
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
so my app has a bunch of audio that gets played in it's respective "schedules" (time set by setTimeout)
i click play
array gets filled and setTimeouts start waiting for the time
I’m a js developer hating on js because it sucks balls
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
show the demo I guess
if you have anything useful to say then say it, otherwise don't
🤓🤓
js being a "bad" language here is completely irrelevant
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
my guy you got triggered by a spongebob gif
too tired to deal with this
@gentle grove is there a potential for the for (i in arr) to not go through the entire array
i was wrong about this
.length gives me the correct amount
however
for (i in arr) does not go to the same length
Do you have the full demo code you're testing with right now so I know I'm reading what's up to date
the demo code i'm running does not exhibit the same behavior as the program that actually needs to be fixed
Wherever you have the issue and you're testing
so i'm just working through this on my actual program
I'm going to sleep, once you send that I'll look at it in a few hours in the morning
<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
what if you make dotimeouts no longer a sync
it shouldn't make any difference but it would eliminate one possibility
same thing
(i assume you mean async not a sync)
swap the order of the two now
do the counter for loop first then the let i in arr
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
this
are 4 of them undefined, because you might have this issue https://stackoverflow.com/questions/500504/why-is-using-for-in-for-array-iteration-a-bad-idea
Or sometii hi ng similarp
But maybe that doesn't matter
lmfao
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
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
That could make sense
The for .. of .. is what you're supposed to use I think
Weird
Well hold on you're not even counting the amount of items with this code
I assumed that's what you were trying to do but I didn't read it
length was getting me confused with all the settimeout ids
but
length is all the same
you're just printing out the last "i" that's looped through
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
just count the loop iterations
and then just use for of in the end and be done with it
all of them run 10k times
soo
i think for ... in ... is index
for arrays
and for x of y and the length one is elements
https://developer.mozilla.org/en-US/docs/Web/API/clearTimeout#notes actual menace to society
give me the damn error
ah you're discovering the unfixable design mistakes of JavaScript 1.0
i hate javascript
i wouldnt code in it if i didnt have to
JavaScript hates you back 
true...
swiftui*
true
real
learning php
any news?
any news?
any news?
aaron has died
any news?
news: spoilered text: hi
i actually scrolled all the way before
any news?
||my balls||
oh
what balls
oh?
...
why do you guys hate me so much
no one mentioned you 
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
any news?
rule 1?
rule 1….
I said respectfully
any news
Currently jailbroken on 17.2 will release at 10 followers
anyone else here a catgirl or just me
...
Currently jailbroken on 69.42.0 will release at 1 follower
Currently jailbroken on -17.2 will release at -1 follower
Anyone up to give some troubleshooting help?
I'm running into this issue. iOS 14.3 on iPhone X w unc0ver jb
Use taurine 
fr?
Idk probably
I just like telling everyone who uses unc0ver to use the coolstar alternative lmaoo
worth a shot ig
phoneless
honestly just set up pypush instead, theres some guides in their discord
👀 “iOS 17.2 has a new public framework called “Managed App Distribution.” [...] Digging even further, we found a new, unused entitlement that will give third-party apps permission to install other apps. In other words, this would allow developers to create their own app stores.”
【QRT of 9to5Mac (@9to5mac):】
'iOS 17.2 hints at Appl…
💖 23
Perhaps ..
Cydia jailed wen eta
17.2 has MAD
wait
it'll give third party apps
permission to install other apps
trollstore 

any news?
sewn yna?
wens nya?
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
nathan any news on how much space safari is using now?
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
any news?
about?
true
Just like me 
damn you're in r/jb, you must be really desperate
Any way to get a tether me functionality in dopamine? Like using term comands or smthing ?
any news?
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
You don't have money to buy one don't loop other people with your broke ass
Talk about yourself, not others
They left japan lil bro
Fuck no
Cuz im not tryna go to singapore
Cuz that shits expensive
This broke fool should try releasing something of value tihmstar duplicate
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
@grave sparrow
jialbreak?
wen eta?
s0n
any news????????
any news?
@manic willow any news?!?!?
I hate you all
yna wens?!?!?
any news
send news
Any news?
any news?
swen yna?
@manic willow any news?!?!?
@faint timber
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.
haha
wen eta iPhone OS 4.3.1 jelbrek
genius usually able to
.
cam or hydrate need to fix filter
lillie moment
make a YT tweak dev tutorial
trolle
do what bellis did
is this a place where I can ask someone to make a small change to an open source tweak
this the place where we destroy your fragile existence for missing a semicolon
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
Here's the original code:
https://github.com/Idefix2020/StatusBarTimer/blob/master/Tweak.xm
This is what I changed the setText code to in order to make the clock blank:
its not a filter matter woe
hardcoded fake jb sites
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?
genius usually can bypass stuff
synchronous operations
I'll give this a shot, thank you
@torn oriole https://github.com/SlimShadyIAm/Anti-Scam-Json-List
well did geniuses have a bypass to it before or is cryptic tripping 
filter every letter and set it to aaron or higher at 3am est so the server is ruined

epic april fools prank
change every filter to aaron or above and watch him have to unfilter everything
Looking to hire someone to improve a tweak I have. PM if you're looking for work
fr
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?
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
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
gm

estortrol.dev
yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions
yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions
yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions
im not sure if this is irony or smth but i dont rly care since i hate ios 17 anyways
yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions
yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions
yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions
yea
coming this week
@grave sparrow has been working on it hard, ask him for further questions
my friend had the name capt
he is in prison for stealing
Just like @grave sparrow should be
ask @grave sparrow about the new ios 15.5 jailbreak too
where do i find a list of keys for the user info dictionary and list of observers
===== RAGE START =====
balls
===== RAGE OVER =====
===== RAGE START =====
balls
===== RAGE OVER =====
===== RAGE START =====
balls
===== RAGE OVER =====
===== RAGE START =====
balls
===== RAGE OVER =====
fr
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
launchd hook im pretty sure
thanks
extacly that i want
for example i am sleeping so i can't respring my device so it does automarically
thats not a great idea
defeats the whole purpose of safe mode
might as well delete safe mode
haha yeah bro the point of safe mode is that there is a tweak giving problem but if it goes after 2 days automatically it's not a big problem so i prefer having this tweak but it respring automatically
what tweak is it
ellekit ?
ok
if you're using ellekit and really dont want safe mode, just recompile ellekit without the safemode code
idk 
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
ios 14 rootless..?
yeah
why would you use ios 14 rootless
haha yeah i will start from that but first i am just asking if i can just in case
avoid jailbreak detection

yeah it sounds stupid ik
just in case i am not doing a jailbreak bro this is a test by my own

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 
Why don't you like just setup a shotcut that just resprings at 3am?
does this count
Just like give it a minute cooldown or somthing so it doesn't accidently get you stuck in a respring loop
then it's a skill issue
Zefram bootlooped me 😦
gm
yes. yes it does
Any news?
Any news?
Any news?
captware
Not all heros ware capt
it is a launch daemon
yo you should checkout this really cool technology called ssh
any news
any news
any news
any news?
fuck @grave sparrow
capt needs to be more active in the haxx dev
I'm about to commit the motherload of sins just from what I dealt with today
What happened
violence of inanimate objects is required
Uh oh

What if their dead
Do you than condone it
still a no
Wtf
lets haxx some bitches
whats the thing called on IOS where u can chooses where your like audio goes
like thru ur airpods or phone speaker
Audio routing
thx
what would be good tweak name for a tweak that just hides it on the LS?
like HideAudioRoutingLS ?
captainchi
👍
Zefram
Not like it is being used by any released product
anyone know what is going on here
use a patched sdk
damn it i need it in a xcode project
what would I do there
Patch the sdk
just patch out unavaialbles
ok
I love arbitrary limitations imposed by developers I love arbitrary limitations imposed by developers
ty
Yes sir
We Stan arbitrary limits
?
Using the tweak pref template
is thre like a know issue that causes this?
crash logs
welp i tried
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
the entire point of Docker compose is to combine multiple services into one compose project
consider making another repo for your Docker compose project
Just for the compose file alone? And also the .github/workflows/actions folder?
There shouldn't be any actions workflows on the compose project because you'd just clone the tepo to your server and then use it
there's nothing to build
@gentle grove boba
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?
it’s not real SEP
It’s just an imitation
Any news?
That explanation doesn't sound right to me
Any news?
any news?
any news?
any news
amy news
amy's news

🦓
Zebsr
and
any news?
any news
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?
wtf opa shitpost
Yes
It means that
does that mean jailbreak 17.3?
yes exactly
iOS?
TrollStore iOS 16.5?
Thank you opa hard work. TrollStore 16.5 coming?
Never
Why ?
Thank you for your always hard work. Any news?
yea
coming this week
@hasty ruin has been working on it hard, ask him for further questions
any news?
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?
my balls
Thank you sir its an honor
@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?
truly
@hasty ruin Hello, sir , i have been inform you are person who futer jailbreak . Do you inform of the nexus jb and nexus hooker ?
@hasty ruin Hello, sir , i have been inform you are person who futer jailbreak . Do you inform of the nexus jb and nexus hooker ?
@hasty ruin Hello, sir , i have been inform you are person who futer jailbreak . Do you inform of the nexus jb and nexus hooker ?
@hasty ruin Hello, sir , i have been inform you are person who futer jailbreak . Do you inform of the nexus jb and nexus hooker ?
@hasty ruin troll store ?
_ _
@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?
zeframhooker
So true
ellekit on top 
@hasty ruin Hello, sir , i have been inform you are person who jailbreak . Do you inform of the crazejb and ntwerkloader?
my s3 bootloops when not on a charger
I didn’t know capt made zefram for Apple Watches
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?
@manic willow any news?
@manic willow any news on YogurtJB?
@manic willow prison break ios 17.9?
200 cents
this isn't real
Guess it is never being released then
@manic willow Any News!?!?!?
Any news?
Real questions being asked here
@manic willow any news ????
@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
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
Crashlog?
not that I would be the one to update it, but also if zenith was open sourced I’m hoping others would want to work on it (@ muirey, but you’ll probably see this from the other message)
^ @radiant idol
Give me a bit, I'm going to go eat first
ok
what device
ios 15.1.1 A14
its my phone

whats allemand
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
i can just use my mac vm
thanks for the help
looks like you got it sorted out
Fully agree; they're both great tweaks
yea, sad i cant use my phone to compile
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
yea but spin locks, and im just learning tweak dev
can i do it on linux?
like compile w new abi or no
No
dont i just need to update the xcode toolchain?
so couldnt you like extartc the new one and replace it with the old one?
No
thats not how it work?
@timid furnace why is it only for settings/prefs it has abi issues
wtf were u always genius role
o
Settings is arm64e
cool
Tweak Settings p sure is not
ah
i mean i could just your tweak settings instead of old abi for now
silly me
it should be the same right?
yea

you "develop" zefram, you shouldn't be talking
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
it entails rebasing the binary to a new section in macho after modifying the strings
💀
no way
probably something with rebasing the binary
nah but fr
no more news……
News is cancelled
is this the news?
it's the real news
The news arrived: no more news
find all references to the relevant strings and make them point to the new section
Shit my bad
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!
I believe it’s similar to how MDC patches tccd
What’s tccd
not really, because you're dealing with c strings, not CF strings
i wonder if they also use rebases
It has been fixed on the github
interesting; thanks
Wait, so this would be like a dynamic patcher and not a static one then?
Or am I misunderstanding
you have to find all string references, create a new cstring segment, put the new strings (with /var/jb in front of them where neccessary) into that segment and then modify all references to point to the new one
I don't think there is something more difficult in terms of the macho format
Ah okay
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
The size can be modified, you just need to edit the MachO load commands.
oh, interesting
If you couldn’t then code-signing wouldn’t work
Because you literally append the code signature to the end of the existing binary
right
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
I wish someone would actually make the patcher lol
Isn’t there already a rootless patcher?
It just repacks the package as a rootless package
Derootifier should work
It does not modify str’s
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
So anything beyond small tweaks without hardcoded paths won’t work
yeah
But manually it shouldn’t be too difficult if you have a decent knowledge of MachO structure
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
Actually that’s not true because you’d have to update the cstring segment and then string references
It’s possible, but difficult
but how would you know exactly which str’s should be modified
You could probably create some regex expression to filter for file paths
you cant just modify any file path
what if it’s linking to a framework or something
something that exists in stock iOS
In the cstring segment though
modifying that would cause issues
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
definitely
but what about closed source tweaks (that were never updated) that almost completely work on rootless
but can’t since path issues
Try and do it yourself or hope the developer does it ¯_(ツ)_/¯
sigh
@manic willow thanks for hard work when iso10 procursus
who are you pinging?
u not observant?
no I just don't care
Hi! Is this a place suitable to find a developer for a custom tweak?
r/TweakBounty
i mean shouldn't system frameworks be in rpath anyway
i get the point tho
News any
okay so purely theoritocilsli
how many exploits would it take for a brand new jailbreak?
how did you manage to misspell that word THAT badly
im uoitl different
also like
why a bug will be released on 20 december
ask @manic willow
For A12 devices? Kernel exploit and PPL bypass at the minimum.
For A11 and below, just a kernel exploit will suffice, but it doesn't really matter as you have checkm8.
do we have a kernel and ppl bypass?
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
gm
gm
jaidan
yulk
the man the myth the legend
very true
gm
die
????
any catgirl news
yes they are real now
I just took a shit
That's the news for today
Turn in tomorrow for more exciting news
When eta more news
wait wait wait
let me predict tomorrow
"I just took a piss"
No I fucked your mother
Spartan development news: I didn't do anything today
thanks for the update
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
ANY NEWS????????????????????????????????????????????
no more news
no more news?
no more news :(
news was discontinued
:(
L
did you fix the icon
the symbols? yeah
nice
cydia 2
<@&558709886397972481> @shut stag beware malware will be put on the Havoc repo soon

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.

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.
iCraze is a well-respected developer in the Havoc community and has a proven track record of releasing high-quality software.
okr
zefram tweak
@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
buying it rn
yall is that website with progress on jailbreak real or fake
the what
Nah you still a walking L


well i mean
there's no other planet that can sustain life in the solar system 
any news?
did you know that you’re a fucking nerd
real
Like I said walking L
gm
when a dev calls someone else a nerd
If you disassemble mercury you get a nuclear explosion
sick
nerd
nerd
yes
any
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?
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
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
With newer devices SEPROM has a way to get patches despite being a maskrom
You raged at writing hello world? You a walking L fr.
You were like 2 years old when this came out
No
01 gang rise up


