#development

1 messages · Page 138 of 1

hexed knot
#

I know how to press alt tab

twilit jungle
#

vibeok The quality depends on your image (and image scale) not the view.

acoustic imp
#

Ehh, it was fun making my own

#

Also I think it’s looking good, also @slender glade

#

Thoughts ?

hexed knot
#

Teslaman the goat of hacking together shit

slender glade
#

looks better now

slender glade
acoustic imp
twilit jungle
#

Well keep in mind table views and cells are going to look different on different devices.

acoustic imp
#

I Alr tested on iPad and I’m using auto layout

radiant idol
slim bramble
#

I have 2 monitors now but I used to have 20 windows opened

acoustic imp
slim bramble
placid kraken
#

how much do you actually need to type for member pro btw

slim bramble
#

30

#

level 30

placid kraken
#

the jump looks so huge

#

wdym level 30

#

theres levels???

granite frigate
#

yes

#

slash xp

slim bramble
#

also @radiant idol I found calls to layoutSubviews in teslaman's rewrite 💀

acoustic imp
#

I HAVTN PUSHED YET

slim bramble
placid kraken
#

oh ok im level 22

slim bramble
placid kraken
#

layout subviews isnt always bad tho what

#

i use it for ```objc

  • (void)layoutSubviews {
    [super layoutSubviews];

    for (UIView *view in self.subviews) {
    if (view != self.contentView) {
    [view removeFromSuperview];
    }
    }
    }

radiant idol
#

calling layoutSubviews is just not a good idea

slim bramble
radiant idol
#

even apple docs says that

placid kraken
#

i see

#

i dont really care about my thingie i was just curious

acoustic imp
slim bramble
#

🔥

placid kraken
#

what are you doing

#

youre calling self not super

slim bramble
placid kraken
#

it will but why do you want this

radiant idol
slim bramble
#

idk I'm just sending random shit

acoustic imp
#

stop

slim bramble
acoustic imp
#

delete that folder

slim bramble
#

I'd kill him right away

radiant idol
#

oh

acoustic imp
granite frigate
#

huh

slim bramble
granite frigate
#

what tweaks do that?

acoustic imp
acoustic imp
slim bramble
acoustic imp
#

yea

slim bramble
#

Bro should go to hell for that

acoustic imp
#

but look what what he does that

acoustic imp
#

lmao

slim bramble
#

how useless

indigo peak
#

My friend is learning iOS tweaking and he asked how to add custom properties and this was the example I provided


@interface Cock : NSObject
@property (nonatomic , strong) int length; // normal property
@property (nonatomic, strong) int girth; // custom property
@end

%hook Cock
%property (nonatomic, strong) int girth; // actually making a custom property
%end
acoustic imp
#

W

indigo peak
#

ok replace that with NSNumber

#

(He doesn’t know the difference)

acoustic imp
#

@grave sparrow like my prefs ?

#

ok 👍

#

ok

#

thx

warped sparrow
acoustic imp
#

thanks 👍

proper reef
#

Is there any tool capable of extracting a fully working framework from DSC?

proper reef
#

dyld_shared_cache

slim bramble
#

oh

#

I'd love too

#

@radiant idol is it good to have 50 vars for preferences

#

or their is an optimized way of doing it ?

acoustic imp
#

50+ *

slim bramble
radiant idol
#

??

hasty ruin
radiant idol
#

its honestly far less overhead than creating a whole object for it

#

so

slim bramble
#

yeah

#

that could work

indigo peak
slim bramble
restive ether
proper reef
proper reef
restive ether
#

oh you said fully working frameworks

#

i read that wrong

proper reef
#

yeah I need to put frameworks on a ramdisk

#

and ramdisks can't be big enough for a shared cache

restive ether
#

what are you trying to do with that

proper reef
#

diagnostic ramdisk for a DTK

steady nest
#

you can't extract working stuff from dsc

#

only up to iOS 8 or 9

acoustic imp
#

why cant i do this ?```customCells.m:131:7: error: no visible @interface for 'swichCellTwoImages' declares the selector 'presentViewController:animated:completion:'
[self presentViewController:alertController animated:YES completion:nil];

``` ```objc
@interface swichCellTwoImages : PSSwitchTableCell
@end
@implementation swichCellTwoImages
-(void)setSelected:(BOOL)arg1 animated:(BOOL)arg2{

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title"
                                                                        message:@"Message"
                                                                 preferredStyle:UIAlertControllerStyleAlert];
[self presentViewController:alertController animated:YES completion:nil];

}
@end```
#

PSSwitchTableCell is a decendant of UIView ?

indigo peak
#

not UIView

acoustic imp
#

oh

indigo peak
#

can the iphone/tool template not be compiled for rootless?

acoustic imp
#

fiore is there a way to see when a swich cell is like swiched ?

placid kraken
#

yes there is

#

well

#

kinda

indigo peak
placid kraken
#

yea that

acoustic imp
indigo peak
#
@interface SixteenPlayerPrefsSwitchCell : PSSwitchTableCell
@end

@implementation SixteenPlayerPrefsSwitchCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(id)identifier specifier:(id)specifier {
    self = [super initWithStyle:style reuseIdentifier:identifier specifier:specifier];

    if (self) {
        if ([specifier propertyForKey:@"switchColor"]) {
            [((UISwitch *)[self control]) setOnTintColor:hexStringToUIColor([specifier propertyForKey:@"switchColor"])];
        }

        NSLog(@"This switch is %@", ((UISwitch *)[self control]).on : @"on" ? @"off");
    }

    return self;
}


@end
placid kraken
#
UISwitch *toggle = [[UISwitch alloc] initWithFrame:CGRectZero];
toggle.transform = CGAffineTransformMakeScale(1.3, 1.3);
toggle.translatesAutoresizingMaskIntoConstraints = false;
toggle.on = enabled;
[toggle addTarget: self action:@selector(handleToggle) forControlEvents:UIControlEventValueChanged];
[self.contentView addSubview:toggle];
``` this is how i do it but i add a custom switch
indigo peak
#

^

placid kraken
#

you then add handleToggle on your class

#

for the @selector

indigo peak
#
[((UISwitch *)[self control]) addTarget:self action:@selector(handleToggle) forControlEvents:UIControlEventValueChanged];
#

would prob work

acoustic imp
#

k

placid kraken
#

😭

indigo peak
#

copium

acoustic imp
#

im confused

indigo peak
#

good

acoustic imp
#

whats (UISwitch *) ? is that a refernce to the swicth? like could that be specifier? here objc if([specifier propertyForKey:@"swichCellTwoImages"]){ [((UISwitch *)[self control]) addTarget:self action:@selector(handleToggle) forControlEvents:UIControlEventValueChanged]; }

#

?

#

i give up this is dumb

torn cloud
#

use your slave to fix it

indigo peak
slim bramble
acoustic imp
versed wasp
#

how would I go about doing a tethered iOS 16.x downgrade

#

i remember mineek got it working

indigo peak
acoustic imp
#

oh thats smart

indigo peak
#

inside your root controller

acoustic imp
#

yea

#

but then how wouldi set the image

indigo peak
#

and then inside your code where you set the image

#

do a check

#

if enabled

#

or not

acoustic imp
#

also where in the rootlist cont

indigo peak
#

idk whatever your prefs rootlistcontroler is

#

sixteenPlayerPrefsRootController

#

or whatever

acoustic imp
#

no like in the file

#

where

indigo peak
#

bruh what

#

in a new method

acoustic imp
#

whats the method?

#

setWHAT

indigo peak
#

setPreferenceValue:specifier:

acoustic imp
#

not there

indigo peak
#
- (void)setPreferenceValue:(id)arg1 specifier:(id)arg2 {
  [super setPreferenceValue:arg1 specifier:arg2];
  
  [self reloadSpecifiers];
}

indigo peak
#

you have to make it youself

#

...

#

@sonic totem whats up

sonic totem
indigo peak
#

bro accidentally typed out "Fiore" and pressed send

acoustic imp
#

yea but i dont wana hook prefs

slim bramble
#

you don't have the choice

acoustic imp
#

i could just not do it

slim bramble
#

yea

indigo peak
acoustic imp
#

?

sonic totem
slim bramble
#

yeah

#

if it's in prefs

sonic totem
#

Accident sry

indigo peak
sonic totem
#

Cat walked on my keyboard

indigo peak
#

real

sonic totem
#

Also @indigo peak you are a liar

indigo peak
#

sorry

sonic totem
#

Saying you won't code today

#

COLLAB !

indigo peak
#

woah woah woah

#

i never said i wasnt going to

#

i said i didnt yet

#

yet

radiant idol
sonic totem
#

I'll make Dopamine 3.0 and you make a new tweak exclusively to be released with Dopamine 3.0

indigo peak
#

eta when alfie nightwind and icraze

#

biggest shitshow of a project ever

radiant idol
sonic totem
radiant idol
#

GENIUS ABUSE

slender glade
#

Alfie would be the one cleaning the code up

sonic totem
#

You'd only make it worse

indigo peak
#

aw shucks

sonic totem
indigo peak
#

LMAO

slender glade
#

Alright who is censoring me AGAIN

indigo peak
#

permissions aboose

#

@radiant idol

slender glade
#

AGIN

#

AGAIN

sonic totem
#

iCraze wouldn't even contribute either

slender glade
#

😭😭

indigo peak
#

nah

#

he would

#

but

#

it would be like

#

at the very end

#

and the entire project wouldnt wokr without it

#

itll be something stupid

#
%hook Class
- (int)blah {
  return -1;
}
%end
radiant idol
#

drm

indigo peak
#

and that will determine it woreking

#

na just think ab it

#

dream team right there

sonic totem
#

Unfortunately I can't see deletion logs I don't think @slender glade

indigo peak
#

nightwind for code
me for prefs
icraze for drm
alfie for emotional support

sonic totem
#

Such an L for me

sonic totem
slim bramble
#

W

sonic totem
slim bramble
sonic totem
#

Fr tho

indigo peak
sonic totem
#

Fiore x Alfie x Nightwind would be insane

radiant idol
sonic totem
#

I don't rlly think iCraze deserves to be on the team

kind herald
#

L team

tepid olive
indigo peak
#

bro wants to be included

sonic totem
kind herald
#

but

tepid olive
#

Alfie knows me

sonic totem
kind herald
#

I think cat gifs

sonic totem
kind herald
#

would be a nice addition to the Dopamine 3.0 team

tepid olive
sonic totem
#

??? WHY ARE THESE THE SAME VALUE

tepid olive
indigo peak
sonic totem
tepid olive
sonic totem
#

I just needed an interpreter

tepid olive
#

Fair

indigo peak
#

weather is proving to be more and more difficult every day 😭

tepid olive
#

I should make a tweak with my experience gained from making the majority of a Jailbreak

#

However idfk what to make lmao

sonic totem
#

It was indeed a Python issue

sonic totem
tepid olive
#

Fiorr

topaz yew
indigo peak
#

could you not p on my map

#

🙏

topaz yew
#

so real

elder scaffold
sonic totem
sonic totem
radiant idol
robust flower
#

hi guys, i have an idea of a tweak but i think its a little bit difficult for me.

hasty ruin
#

@sonic totem us three got the tweak pretty much done without you

#

you're off the team.

robust flower
#

my idea is to integrate the Ai to IOS. like in the research menu

#

but i have absolutely no idea of how can i do that

robust flower
slender glade
#

Oh

robust flower
#

i don't know the name in english because i'm french

slender glade
#

U talking about that spotlight

robust flower
slender glade
#

Yeah should be least

robust flower
#

yes exactly

slender glade
#

easy*

robust flower
# slender glade easy*

maybe yes but i'm a begginer and thats my first tweak, and i don't know how to do that

#

and i need a free generative ai api

slim bramble
#

@robust flower si tu as besoin tu peux me dm

acoustic imp
#

is there a like cell.leftImageView for sliders cells ? im trying to set the tint color of it

#

iv looked thru the propertys but cant find one

robust flower
acoustic imp
#

Do i need the text, if I have the icon ?

slim bramble
#

remove the dots

#

plz

#

🙏

acoustic imp
#

K

placid kraken
acoustic imp
#

😭

torn cloud
#

congrats

sonic totem
#

Thanks fr

radiant idol
sonic totem
#

Loads of people have congratulated me didn’t even realise it was a big thing lol

sonic totem
#

Now respond to the message you just got sent

radiant idol
#

i'm refunding trollstore

sonic totem
#

TrollStore is free because we are so kind

#

Jade….

torn cloud
#

dev slander

radiant idol
#

FR

#

unbelievable

torn cloud
#

sorry nightwind

kind herald
#

"because we are so kind" yet trollstore for 17.0 exists but it can't be installed. it is just taunting us. that's mean

sonic totem
#

TAKE THAT L @radiant idol

sonic totem
torn cloud
#

@radiant idol are you british?

#

no?

sonic totem
radiant idol
sonic totem
#

Didn’t see that

#

Was checking group

radiant idol
torn cloud
#

but SIT DOWN

tepid olive
torn cloud
#

britain better

torn cloud
#

it's genuinely fun

tepid olive
#

True

torn cloud
#

alfie what was that

sonic totem
#

Someone is deleting my messages

kind herald
#

trollstore poc for the 2 vulnerable devices on my network eta

sonic totem
#

I am being silenced

tepid olive
slim bramble
torn cloud
slim bramble
#

Lets check for icraze

#

icraze checker is running

sonic totem
#

So real tbh

crisp frost
#

Exploiting the kernel is easier than exploiting iboot although we need a iboot exploit far more than a kernel exploit

slim bramble
#

hmmm

#

intresting

tepid olive
torn cloud
#

yeah its not him

sonic totem
#

😹😹

slim bramble
#

so real

torn cloud
#

icraze is not present at this time

crisp frost
tepid olive
sonic totem
#

And how much did TrollStore cost?

tepid olive
slim bramble
torn cloud
#

what's wrong with it

sonic totem
tepid olive
#

While it might be easy to find a bug in iBoot, an entrypoint is a different story

sonic totem
#

Less complicated

torn cloud
slender glade
#

yes

torn cloud
crisp frost
slim bramble
torn cloud
#

codesigning is not for me

slender glade
#

LMFAOO shut your ass up nightwind

tepid olive
#

wrong reply

torn cloud
#

nightwind got silenced 💀

#

wtf

tepid olive
#

??

kind herald
#

mods mute nightwind

slim bramble
#

L

crisp frost
#

I meant finding a new vulnerability

timid furnace
tepid olive
sonic totem
slim bramble
torn cloud
slim bramble
timid furnace
sonic totem
crisp frost
kind herald
torn cloud
sonic totem
radiant idol
#

@sonic totem you suck poo poo

tepid olive
sonic totem
#

Idk I’ve never done kernel exploitation so that’s probably why

tepid olive
#

you would think it would be all pretty and the best in the world

torn cloud
tepid olive
#

since it runs on billions of devices

#

I think the main issue with iBoot exploitation is the lack of entrypoints

#

but no

radiant idol
crisp frost
torn cloud
tepid olive
sonic totem
kind herald
#

dming right now

crisp frost
#

Posting on Reddit

sonic totem
#

Even ROMs have Firebloom now @crisp frost woeis

radiant idol
#

alfie is being edgy and using default discord pfp

sonic totem
sonic totem
torn cloud
sonic totem
#

To be usable

torn cloud
#

bruh moment

kind herald
#

just disable SEP

sonic totem
#

Unless you used seprmvr64!!

kind herald
crisp frost
sonic totem
#

For pwned restore that’s different

torn cloud
crisp frost
#

I mean you can still boot pongoOS / Linux without a sep exploit theoretically

torn cloud
#

i need the .sh

sonic totem
torn cloud
#

cba to partition it manually

sonic totem
crisp frost
sonic totem
#

They just don’t encourage research into them

sonic totem
#

They beat us

torn cloud
hasty ruin
#

jinping

brazen timber
placid kraken
brazen timber
#

sell it zerodium for a couple million

brazen timber
#

they would give you 3.50

hasty ruin
#

fr

crisp frost
torn cloud
#

no way

sonic totem
crisp frost
#

Some security researcher should drop a img4 design flaw

cinder beacon
#

aint no way theyre gonna pay a few milllion, i dont think its THAT useful to them

torn cloud
sonic totem
placid kraken
#

how much would apple pay for a hardware-level exploit like checkm8

brazen timber
#

bootrom zero days are too rare to be on their site but they pay 2 million for ios zero clicks

sonic totem
slim bramble
#

Some security researcher should drop checkm9

radiant idol
#

nerds

brazen timber
#

so a bootrom zero day is like

radiant idol
#

im too lazy to google

#

s

brazen timber
#

double digit millions

radiant idol
#

so

brazen timber
#

at least

#

couple is too low

torn cloud
sonic totem
#

Also @torn cloud if you had an IMG4 bug SEP wouldn’t be an issue

radiant idol
#

what is the difference between unichar and char because im too lazy to google it

brazen timber
slim bramble
placid kraken
brazen timber
#

no?

sonic totem
radiant idol
brazen timber
#

it was already patched in a12

#

when he found it

slim bramble
placid kraken
placid kraken
#

utf8 and utf16

radiant idol
crisp frost
#

ok I have everything to generate blobs except for keys who here can give me prod s8003 tss privkey

torn cloud
brazen timber
sonic totem
hexed knot
#

Apple gave me 25k for the shit i submitted

torn cloud
sonic totem
#

One was (technically) a 0day, one was an n-day

torn cloud
sonic totem
tepid olive
sonic totem
#

If you know where to look

torn cloud
slim bramble
torn cloud
slim bramble
#

make them go bankrupt

tepid olive
torn cloud
brazen timber
sonic totem
brazen timber
#

like they would probably make an exception

torn cloud
brazen timber
#

anyways they are not paying more than zerodium will

torn cloud
#

what is zerodium gonna do with a bootrom

tepid olive
#

Who's zerodium

sonic totem
hexed knot
torn cloud
brazen timber
sonic totem
torn cloud
brazen timber
sonic totem
#

Yeah but if you knew your exploit was going to be used to pwn innocent people it would be on your mind

brazen timber
#

to blow up nuclear reactors in iraq and stuff

brazen timber
#

fr

crisp frost
torn cloud
sonic totem
brazen timber
sonic totem
#

I need to get a CVE

tepid olive
brazen timber
#

zerodium only sells to NA and european governments

tepid olive
torn cloud
timid furnace
#

no, you probably sign a contract when you sell it

torn cloud
brazen timber
crisp frost
sonic totem
sonic totem
torn cloud
tepid olive
#

@sonic totem recovery iboot exploit or KTRR bypass with operation triangulation

hexed knot
torn cloud
sonic totem
#

iBoot exploit = KTRR bypass

tepid olive
#

but it's recovery iboot, not secureROM iboot

pearl sail
#

Congrats a being a genius @sonic totem

sonic totem
tepid olive
#

true

sonic totem
hexed knot
#

Wassup @pearl sail

torn cloud
sonic totem
pearl sail
tepid olive
#

except apple wouldn't pay me for either

tepid olive
hexed knot
tepid olive
#

in most cases yes

sonic totem
tepid olive
#

ok only that

pearl sail
tepid olive
#

recovery iboot bug would have to be discovered on iOS 16.2 though because I have a singular arm64e device

hexed knot
#

How big

tepid olive
#

im talking about like the HFS one from iOS 5 or the xerub iOS 7 one

pearl sail
#

65

crisp frost
#

Need another log4shell-type vuln that works like everywhere

hexed knot
#

Good shit

crisp frost
#

Log4shell was fun

pearl sail
#

Any bigger would look awkward

hexed knot
#

65 is such a good size

crisp frost
#

My friend opened calculator on my pc

tepid olive
sonic totem
crisp frost
sonic totem
#

No one I know irl has ever heard of TrollStore

torn cloud
pearl sail
#

I gotta figure out good setting for anime on this TV tho

tepid olive
#

it can still be used as a temporary KTRR bypass

sonic totem
torn cloud
#

but you'd have to find a way to not make cache flush

tepid olive
#

you can temporarily disable cache writeback

crisp frost
#

iPhone dram modchip wen

tepid olive
torn cloud
#

that's cool

#

wait what does KTTR stand for i can't find it anywhere

tepid olive
sonic totem
tepid olive
#

Imagine a jb on the AVP

radiant idol
tepid olive
topaz yew
torn cloud
hexed knot
sonic totem
crisp frost
#

Ok but soldering on a modchip just to get full access to A PHONE is crazy

#

Just buy a android at that point

tepid olive
#

or an xbox 360

#

just buy a PC

crisp frost
kind herald
tepid olive
torn cloud
pearl sail
sonic totem
#

Probably

crisp frost
#

Just re flash the bootrom

sonic totem
tepid olive
#

what if i can afford a switch and a pico modchip but not a $2000 pc

sonic totem
acoustic imp
#

in my tweak contributions tab do i need to inclued what the dev/person helped with or can i just link to their twitter/GH

tepid olive
sonic totem
#

@crisp frost I remember my first big project was trying to get ipwndfu working on M1

torn cloud
# sonic totem Idk

yeah i remember a customer in the shop i work in came in with a 5s that had a broken camera, we put a 5c camera into it and it panicked upon boot with the We are hanging here!. idk if it's related.

sonic totem
#

Spent like two months and got nowhere

indigo peak
#

went to the dm req pile

sonic totem
acoustic imp
pearl sail
torn cloud
sonic totem
#

Okay I have homework due at 9am tomorrow

tepid olive
#

guys I need to know

crisp frost
sonic totem
#

I wish I could drop out and do sec research full time

torn cloud
sonic totem
tepid olive
#

temporary KTRR bypass to bypass PAC, or recovery iboot exploit

sonic totem
#

There was a custom overwrite/payload option in Achilles v1

crisp frost
torn cloud
sonic totem
tepid olive
#

ok

crisp frost
sonic totem
torn cloud
#

how come

tepid olive
#

consider it done (in a year)

sonic totem
tepid olive
#

how much is corellium

sonic totem
acoustic imp
sonic totem
torn cloud
tepid olive
torn cloud
radiant idol
torn cloud
tepid olive
#

because I only have a singular arm64e device

torn cloud
crisp frost
# sonic totem I can add it with some compilation flag

Btw Alfie what do you think of my checkra1n 1337 payload reimplementation ( idk if that’s the right word ), basically a checkm8 payload capable of booting pongoOS. I started working on like a few weeks ago and then forgot about it ( its not really close to booting pongo tho, currently it local boots the device with verbose boot )

tepid olive
#

I'd rather do something that gets me money though

acoustic imp
tepid olive
torn cloud
#

balance is key

sonic totem
#

I’ve been wanting to write one of those myself but haven’t had the time

radiant idol
sonic totem
#

Local boot with verbose is epic wow

acoustic imp
crisp frost
torn cloud
crisp frost
sonic totem
torn cloud
#

ah

#

ok

crisp frost
#

As in secureROM -> verbose boot

#

No external files need to be uploaded

sonic totem
#

Well custom iBSS -> iBEC

crisp frost
#

Damn I’m so tired

torn cloud
#

since it boots the device in verbose mode

crisp frost
torn cloud
#

ohh

crisp frost
#

E.g loading files via usb

tepid olive
#

as in the loader to load checkra1n on a phone

#

to jb another phone

crisp frost
sonic totem
#

Legally I have to have source access then

crisp frost
#

Removing Achilles code rn

tepid olive
#

oh that's right alfie, a while ago I meant to ask something

#

but I forgor

#

lmao

sonic totem
sonic totem
#

Mineek wrote custom ones

tepid olive
#

I remember somebody told me to ask you because you had tried before or something

crisp frost
# sonic totem Which code is it I’m curious

Well it was like the “base” of the checkm8 exploit ( although your code is currently unused as I switched to other currently not in a public tool checkm8 exploit code, I just never bothered to remove it Fr )

sonic totem
#

All OSS checkm8 tools are based on gaster at this point anyways

crisp frost
tepid olive
torn cloud
#

is blackbird ever gonna go OSS lmao

sonic totem
tepid olive
#

the code is literally in pongo

torn cloud
#

uh

#

I’ve been told lies

sonic totem
#

Mineek got that working

torn cloud
#

by someone else

#

brb

crisp frost
tepid olive
river plank
tepid olive
#

but did they write a custom sepos?

faint stag
torn cloud
tepid olive
#

I wanted to write a custom sepos as well

#

I don't remember why though lmao

river plank
torn cloud
sonic totem
river plank
tepid olive
crisp frost
tepid olive
#

I don't actually have any functional A10 devices, I have an iPhone 7 but its icloud locked lmfao

crisp frost
#

( the exploit )

#

The other stuff I made myself so I should be fine sharing

#

DAMN I really need to sleep now

sonic totem
tepid olive
sonic totem
#

You can just share the payload if that’s easier

tepid olive
#

just appeared in my closet one day

crisp frost
tepid olive
#

I forgot what it was called

#

oh hookra1n

river plank
crisp frost
#

Alright I’ll give you more info if you want to tomorrow Alfie I really need to sleep now it’s 22:40 and normally I go to sleep around 22:00 on a school day

torn cloud
tepid olive
crisp frost
tepid olive
#

yeah that modifies the payload

#

I mean I can't even do checkm8 related stuff anymore because my PC is AMD

tepid olive
#

anyways time to focus on exploiting @faint lion again

kind herald
#

GIR is already broken

brazen timber
#

type really quickly

visual meadow
#

ok so question

brazen timber
#

easy

visual meadow
#

how would i override this and just make it an image:

tepid olive
topaz yew
#

i fucking hate swift what is this

#

its so long

#

😭

visual meadow
#

swift symbols my beloved

topaz yew
#

i mean its not like i have a choice

tepid olive
#

Dock is swift?

visual meadow
tepid olive
#

I always thought it was Carbon

topaz yew
#

pretty much yeah

visual meadow
tepid olive
#

Like the menu bar

topaz yew
#

nah

topaz yew
visual meadow
#

mines transparent lol

#

ellekit mac is W

#

please ignore how many apps i ahev

tepid olive
#

Jfc

topaz yew
visual meadow
#

you can just build with theos for this lo

tepid olive
#

Anyone a fellow yabai user?

visual meadow
#

its just regular tweak

topaz yew
visual meadow
#

a tweak as normal as if it were an ios device

#

but instead its a mac

#

lol

topaz yew
#

ah yeah you could switch the target to macos

visual meadow
#

yeah thats what i did

topaz yew
#

im doing some other things tho thats why i have my own build system

slim bramble
#

how can you live with all that

tepid olive
#

guys does any browser support quantifiers on lookbehind assertions?

visual meadow
#

idk people are different

#

some of those apps i havent even opened

slim bramble
topaz yew
#

holy shit zefram gave me malware

visual meadow
#

mfw pspawn.dylib optool

#

launchd

slim bramble
#

THE DAY HAS FINALLY COME WWWWW

visual meadow
#

i had to port it to theos though

topaz yew
#

man one time i hooked the windowserver and fucked up my shit all my windows were in a little box and i couldn't move them

visual meadow
#

oh shit my bad

#

thank your

faint stag
topaz yew
indigo peak
kind herald
visual meadow
#

i just got eneko working in carplay

#

🙏

faint stag
gentle grove
#

die

#

🎲

indigo peak
#

can someone send me a high resolution nfr

kind herald
#

nfr?

tepid olive
#

have we figured out how to set persistent cryptex nonce

indigo peak
#

nfr == frcoal

kind herald
#

oh

tepid olive
#

@faint timber

kind herald
#

just take the webp from the emoji

indigo peak
kind herald
#

oh

#

well

#

I sent the link to it

faint stag
#

lol

visual meadow
#

somebody send a video so i can demonstrate it working

faint stag
faint stag
#

128 is not high resoution

indigo peak
kind herald
faint stag
indigo peak
visual meadow
kind herald
#

amazing

acoustic imp
visual meadow
#

you can plug phone into mac and it shows up

acoustic imp
#

ohh

#

so you get virtual carplay??

visual meadow
#

basically

indigo peak
#

yeah I put my mac in my car bc I can’t afford CarPlay

kind herald
#

I thought you had to use one of the simulator iPhones to get CarPlay simulation

#

this is the first time I've gotten it to work

faint timber
#

will probably add blob saving but also useless since it probably uses entanglement

native merlin
#

hello, i'm really starting to make a tweak, just wanted to know. is control center part of springboard? (com.apple.springboard) or is it something else?

slim bramble
#

yes

kind herald
#

can you create your own Snowboard extension?

slim bramble
kind herald
#

okay

slim bramble
#

oh

#

probably I'm not sure

faint stag
#

u get the point

native merlin
indigo peak
#

@native merlin This is an extemely simple CC tweak that makes your cc look like this

faint stag
indigo peak
#

can we mute Nathan for ghost ping

indigo peak
#

it gets the job done

visual meadow
indigo peak
#

all it does it change colors

visual meadow
#

but then

#

didnt

indigo peak
#

doesn’t add subviews or anything

native merlin
#

xD

indigo peak
native merlin
acoustic imp
indigo peak
#

all I did was put CoolCC in ida and reconstruct it

#

don’t hate me pls

radiant idol
visual meadow
#

someone fix the home modules

#

🙏

acoustic imp
visual meadow
#

i tried

indigo peak
#

☹️

faint stag
#

max volume is crazy

acoustic imp
#

no its not

indigo peak
indigo peak
#

rate the EQ settings

acoustic imp
#

Spotify?

indigo peak
#

yeah

indigo peak
#

yeah

#

insta win?? No

#

there’s instawin darts, cup pong and golf

#

there’s also darts aimbot now

#

Like you can chose where they go

#

what is a girl not gonna block you if you win or sum

vivid dew
#

women are temporary

#

the boys are forever

acoustic imp
#

@indigo peak W song

indigo peak
hasty ruin
cinder frigate
#

How can I compile/repackage a package to be compatible with roothide?

acoustic imp
tepid olive
#

anyone applied for corellium free trial

#

how long did it take for them to reply back

#

the first time i tried they never replied back to me

#

tried under a new email this time

acoustic imp
#

What SFsymbol is this

placid kraken
#

"slowmo"

acoustic imp
#

thank you 🙏

solid warren
#

iMessage games right?

indigo peak
#

yeah

#

for jailbreaks you can get it on my repo

radiant idol
acoustic imp
#

i would ask how to do that but il figure it out

hasty ruin
#

No self promo

radiant idol
acoustic imp
#

ok, thanks

radiant idol
radiant idol
#

It’s like one of those tweaks that everyone knows but no one remembers who made

#

[[CoolCC]]

faint lionBOT
#
CoolCC

This tweak makes ControlCenter cool!

Author

4nni3

Version

1:3.1

Price

Free

Repo
Bundle ID

com.4nni3.coolcc

radiant idol
#

Never heard of the guy

#

huh

restive ether
#

think he was just a one and done

radiant idol
#

Yeah

hasty ruin
#

Holy shit no he made something cursed

indigo peak
#

coolXX is his pride and joy i guess 😭

indigo peak
acoustic imp
hasty ruin
#

no just skid it

acoustic imp
#

ok

restive ether
#

this dude is legit

restive ether
hasty ruin
#

The OG bolders guy?

restive ether
#

yes

hasty ruin
#

nah

restive ether
#

f

hasty ruin
#

don’t think so anyway

#

idk his name

#

but he didn’t update his tweak

#

so

restive ether
#

candizo i think

#

something like that

hasty ruin
restive ether
#

[[bolders]]

faint lionBOT
#
Bolders

Bigger bolder folders!

Author

candoizo

Version

1.2.2-2

Price

Free

Bundle ID

ca.ndoizo.bolders

restive ether
#

i was close

#

he’s canadian

#

i helped him do a lot of the testing for masq before it came out

#

good times

indigo peak
#

does anyone know any relatively simple xpc servers/daemons that are open source on github

native dune
restive ether
#

yeah i had bad taste too

#

not as bad as some people but not the best either

#

definitely tacky by today’s standards at least

hasty ruin
indigo peak
#

i can only find libsandy, which is like good code but kinda complex

hasty ruin
#

(love you nightwind :)))

hasty ruin
#

fr

placid kraken
#

who is nightwind