#development

1 messages · Page 520 of 1

vivid dew
#

what is a stars cream

tepid olive
#

it has didReceive though

#

that is useful

#

example

#

it doesn't seem to be that bad

grim sparrow
#

its not

tepid olive
#

i wish apple ported URLSessionWebSocketTask to linux

#

but sadly FoundationNetworking doesn't have it

#

wonder if someone did it troll

#

nope, woe

torn oriole
#

cock even

proper reef
#

Is there a VNC server for iOS 14.4?

#

orr some other way i can test my tweak over ssh

surreal mountain
#

write tests for it

proper reef
#

mk

#

how do i view syslog over ssh

restive ether
#

you can probably install like ondeviceconsole or something

proper reef
#

how do I use that?

restive ether
#

you type

#

ondeviceconsole

proper reef
#

i did

#

it just

#

exits

#

2021/10/22 19:47:46 socat[9355] E connect(5, LEN=31 AF=1 "/var/run/lockdown/syslog.sock", 31): No such file or directory this also

restive ether
proper reef
#

btw i'm running iOS 14.4

restive ether
#

this is 14.3

proper reef
#

huh

#

weird my device doesn't seem to have syslog.sock

restive ether
#

oh that’s odd

#

i wonder if they took it out

#

or the package is broken from wherever you installed it from

proper reef
#

oh i found it out

#

they changed it

#

it's /var/run/syslog

#

but it still

#

exits immediately

restive ether
#

no there’s a /var/run/lockdown/syslog

#

i doubt they changed it

proper reef
#

no there's not evven a /var/run/lockdown folder on this device

restive ether
proper reef
#
drwxr-xr-x 42 root wheel  1344 Oct 17 14:06 ../
-rw-r--r--  1 root wheel    16 Oct 17 14:03 fudinit
srwxrwxrwx  1 root daemon    0 Oct 17 14:03 lockdown.sock=
srw-rw-rw-  1 root daemon    0 Oct 17 14:03 mDNSResponder=
srwxrwxrwx  1 root daemon    0 Oct 17 14:03 printd=
srw-rw-rw-  1 root daemon    0 Oct 17 14:03 syslog=
-rw-r--r--  1 root wheel     0 Dec 26  2007 utmp
-rw-r--r--  1 root daemon 3768 Oct 22 19:52 utmpx
srw-------  1 root daemon    0 Oct 17 14:03 vpncontrol.sock=``` (ls -la /var/run)
restive ether
#

troll

proper reef
#

no lockdown

#

there is a lockdown.sock tho

restive ether
#

that’s odd

#

yeah i don’t have an answer to that

proper reef
#

trying to figure out if my tweak is executing

vivid dew
#

it's not

restive ether
#

what about with SOcket Cat

#

or oslog

proper reef
#

[[oslog]]

faint lionBOT
#
oslog

os_log implementation for iOS 10

Author

Elias Limneos

Version

0.0.1-8

Price

Free

Repo
More Info
proper reef
#

oslog works

twilit jungle
tepid olive
#

joelog

twilit jungle
lime pivot
#

jOeS log

restive ether
#

make it happen

lime pivot
#

yeah ondeviceconsole is no good any more

#

between iOS 10 - sometime in the 13.x or 14.x days I can't remember exactly, that only gave you logs that were being sent to the legacy log system

#

has been removed now

restive ether
#

there does happen to be a more modernish oslog fork

lime pivot
#

ah bless him hah

#

he always seems to have some useful bits and pieces

weary heath
#

how would i make a uialertcontroller return different %orig arguments for each button? eg alertAction1 - return %orig(1); / alertAction2 - return %orig(2);

hardy glen
#

Conditional case

#

Show source code snippet and ill code it up if you would like fr

weary heath
#

let user choose a method's return value through a pop-up

indigo peak
#

so if im looking at a tweak in ida, and i see MSHookMessageEx on a class, whats the difference between that and return MSHookMessageEx in logos

hardy glen
indigo peak
#

is it just return because its the last one of the hook

hardy glen
#
    [NSObject class], @selector(description),
    &newDescription, &oldDescription
);```
indigo peak
#

i know how MSHookMessageEx works

#

i was wondering why one of them had a return and one of them didnt

hardy glen
#

Let me test rq

indigo peak
#

i mean i just opened my own tweak in ida and none of the other MSHookMessageEx's had a return

#

except for the last one

hardy glen
#

Which tweak was it?

indigo peak
#

i opened gameseagull

#

but i think that its just because its the last one

#

no, but i know who it works

hardy glen
indigo peak
#

sub_xxxx

hardy glen
#

Ah i think i know why

#

Let me compile game seagull and double check

#

Whats the method name

#

As far as i can see, the only that returns it is the constructor, which makes sense

grim sparrow
weary heath
grim sparrow
#

Does this function run on the main thread?

weary heath
#

idk, it only runs when i press a button in an app so i think so?

grim sparrow
#

you'll probably need to override the button

lime pivot
indigo peak
#

ah fair enough

#

is it possible to add a max length to a PSEditTextCell in prefs?

stiff wind
#

hey, what are your fav methods to find out how to change an app's behavior? i'm trying to tweak something in the Instagram app but I'm not sure how to proceed at this point

#

I've used frida + objection + fishhook + classdump to understand the app and I've had some progress... but don't know how to go further

grim sparrow
#

Flex, Frida, IDA/Hopper

#

3 things I always use

indigo peak
#

^^

stiff wind
#

yeah these tools have helped me a lot too

grim sparrow
#

what behaviour are you trying to change

stiff wind
#

I want to enable a sticker that's not available for everyone yet and I could even find the class using FLEX

#

it's the prompt sticker

#

I have changed the app's behavior in the past by hooking an experiment function

misty cradle
#

I use frida for seeing which methods get called, but u can do more magic with it by making scripts

#

no idea how tho

hardy glen
#

^

#

Its just js

stiff wind
#

so I would just return true when it was trying to get the value for my feature

#

but it seems they changed the way things are done

hardy glen
#

You will most likely have to figure out how it was changed

#

Reverse engineer how the decision of showing/hiding the sticker works

#

Most likely, you will not get a specific answer for a specific app unless someone is willing to do it for you

stiff wind
#

can I hook a class constructor or something like that?

stiff wind
hardy glen
#

I would tackle on how the app is deciding to hide the feature

#

If that makes sense

stiff wind
#

it totally does

#

I think that was their logic before...

#

like "is this enabled or not" before showing it on the screen

hardy glen
#

Like there must be a case somewhere where it is like, okay if these cases do not meet then do not show

#

Yup you just have to reverse and find it

stiff wind
#

now I can find the class with the list of the objects that are enabled, but don't know how to get the object I want there

#

well

#

thanks for the talk

#

guess I just have to try harder lol

hardy glen
#

Exactly, might spend more hours, even days but you’ll eventually figure it out

#

Even weeks, months, years

#

Decades even

wicked summit
#

Centuries

#

Millennia

#

Human history may be but a blip in the universe'a infinity longevity by the time you figure it out

indigo peak
#

how are all the cool kids reading prefs without cephei

tepid olive
#

you can't from a sandboxed process without some sort of IPC afaik

gusty pelican
#

Anyone here seen Office Space?

grim sparrow
#

did you fr make a lib for doing [[NSUserDefaults alloc] initWithSuiteName:domain];?

indigo peak
#

@hasty ruin i think copilot is trying to tell me how to make concord fr

hasty ruin
#

copilot wrote like 35 perfect lines a few days ago tho

#

if statement, else if, and else

#

All based on two tiny comments I made like 200 lines up

gusty pelican
#

whats concord

indigo peak
#

Harmony being the discord theming tweak by revulate 🤌

hasty ruin
#

Not at my laptop rn

#

But it was a script that encrypts and ciphers a string a ton of times, in loads of ways

#

And the top of the file just had smth like this for example

raw str -> b64 -> Caesar cipher r2 -> output

#

It had way more steps than that, but that’s the general thing

#

Then beneath that was just how to decrypt it

stoic shale
#

is there any tweak developer for tvos?

rain falcon
#

nfr

restive ether
hardy glen
indigo peak
hardy glen
#

fr closed source and obfuscated

#

Have fun in ida bud

#

Nothing like busting a nut to the big screen

#

Is what the tweak description would say

restive ether
hardy glen
vivid dew
restive ether
vivid dew
#

porn is gross

proper reef
#

Can I open an iOS app from command line in the lldb debugger?

lime pivot
#

oh, it’s -x backboard

#

that will launch the specified app and leave it waiting for lldb to attach, make sure you do it quickly because watchdog will kill it otherwise

proper reef
#

This device doesn't have the xcode ramdisk installed, how do I get debugserver onto it?

lime pivot
#

you can mount it via idevicedeveloperimage or something along those lines

#

included in libimobiledevice

restive ether
#

shouldn’t it be mounted as soon as you plug it in

proper reef
#

i'm doing this remotely

restive ether
#

oh are you not using macos

lime pivot
#

if Xcode is running it’ll mount it, but sounds like they don’t have xcode

restive ether
#

i know 14.x had some issues with the debug server

proper reef
#

also how do I get screendump running on 14.4 checkra1n?

restive ether
#

you use the PR on the repo that adds the necessary entitlements

proper reef
#

alr

#

ok then how do I use the debugserver

#

for on devvice lldb

proper reef
#

@lime pivot

lime pivot
lime pivot
torn oriole
#

Damn it is

#

Better send bloobs

tepid olive
#

imagine

#

dotnet core for ios

lime pivot
#

basically already exists with monotouch/xamarin/unity

tepid olive
#

i wonder

faint lionBOT
#
untether

Linus Henze will release and open source his iOS 14.5.1 untethered jailbreak POC on October 24th (<t:1635102000:R>). This is not a functional jailbreak but rather various exploits that can be used in a jailbreak (e.g., Taurine) for iOS versions ranging from 14.0 to some 14.6 betas.

Do NOT update if you're on 14.5.1 or below.

fair torrent
#

What is needed for tweak injections and sileo?

grim sparrow
#

a jailbreak?

fair torrent
#

ye but like

#

Linus Henzes jailbreak isn't a complete one

#

So I was wondering what is actually needed in the last steps to install sileo

#

What does sileo require to function

grim sparrow
fair torrent
#

that doesn't seem like a lot

#

cydia substrate is needed too if I am thinking straight?

grim sparrow
#

No

#

Personally I think gay

fair torrent
#

true

#

Same tbh

#

Where do you find info about iOS?

#

iOS is based on BSD so it should have some stuff preinstalled right?

grim sparrow
#

probably a good place

fair torrent
#

Can't really find anything about preinstalled packages. Will look around more

#

Well thanks for that website. It will definitely be helpful

fair torrent
grim sparrow
#

ios firmware

#

so thats saying ios 12.0 or higher

fair torrent
#

oh.

#

the rest are deb packages

#

well dpkg and apt not sure

#

So if I understand correctly installing dpkg/apt would be the first step if it isn't done by Linus

faint lionBOT
#
untether

Linus Henze will release and open source his iOS 14.5.1 untethered jailbreak POC on October 24th (<t:1635102000:R>). This is not a functional jailbreak but rather various exploits that can be used in a jailbreak (e.g., Taurine) for iOS versions ranging from 14.0 to some 14.6 betas.

Do NOT update if you're on 14.5.1 or below.

fair torrent
#

hmm. Well this might be a learning experience

#

Just from that libkrw thingy it seems pretty straightforward for someone to port unc0ver or taurine to it

#

Although that is probably hidden with many suprises

restive ether
tepid olive
#

in stock form theres very little in /bin and /usr/bin

fair torrent
#

I have understood that by now. I think installing stuff is going to be to much for me to bother. It might be something I look into in the future. Will definitely spend some energy on it tho but not much.

twilit jungle
golden crag
#

I’ll test the gift card to make sure it’s unused for you

trail venture
#

fs bro

swift plinth
ocean raptor
#

I'm trying to connect to a wifi network using MobileWiFi.framework, rn I'm using WiFiDeviceClientScanAsync() to connect to the network, but it only works for known networks, on unknown networks it sets the error argument in the callback to -100, has anyone here dealt with MobileWiFi.framework that can help me?

rain falcon
#

nfr

lethal ice
snow python
#

Is there a way to pipe data to iOS AVPlayer? Or rather does anyone know how to play audio from the cli

#

Not an mp3, but a stream

restive ether
#

unless i’m misunderstood what you need

snow python
dense bridge
#

Hello! I’m not a developer but I wanted to know if the fugu jailbreak could support lower iOS versions like 14.2.1?

plain egret
#

anyone know where I can find the iOS 12 Beta 1 kernel cache with symbols?

vivid dew
#

yes

vivid dew
#

don’t fr me

#

i actually know where to find it

ocean raptor
#

oh, and nvram

#

and umount, syslogd, pfctl, fsck, newfs, mount

fair torrent
#

So most stuff is done through kernel calls

ocean raptor
#

wdym most stuff?

fair torrent
#

Nothin. I was just being a bit dumb.

#

So libraries/frameworks is what apps use to do more complicated stuff I guess

#

What is the trustcache?

#

That is talked about in Fugu14

#

I think it is something to do with signing binaries without apple

ocean raptor
tepid olive
#

trustcache is basically a list of hashes of binaries that are allowed to execute

#

if the binary matches one of those hashes then it doesn't even spawn amfid to check the signature

quiet warren
#

best ways to learn more ab macos/ios internals?

ocean raptor
#

it marks the exectuale as a platform binary

#

iiuc

#

ofc that will only work is signature verification is turned off

#

you can add this ent or sign with ldid -P

quiet warren
#

nvm theres an online pdf

grim sparrow
restive ether
#

don’t be a dick

#

and disrespect jlevin’s work

cloud pumice
#

Any good guide on where to start on iOS security

twilit jungle
#

You won't find guides on that

cloud pumice
#

Oh rip

twilit jungle
#

But there are books, scroll up a few messages.

cloud pumice
#

Thx 🙏

grim sparrow
#

a book is just a glorified guide

tepid olive
#

the ipsw.me firmware json fucking sucks holy shit

#

why does EACH DEVICE have it's own thing

#

what the fuck

grim sparrow
#

major trolling

#

You can find out by reading *OS Internals by jlevin!

twilit jungle
restive ether
#

i have the answer to this actually

#

meth.

twilit jungle
#

The answer is usually the one with the biggest security hole

gentle grove
#

Mostrar

hardy glen
#

What a chad

gentle grove
#

Terri Terrifies reflectiont

#

Terrible reflection

hardy glen
#

*os internals vol 1

twilit jungle
#

Terri needs some help

subtle grail
#

ida >= 7.5 can load a dsc right

twilit jungle
#

Any IDA can load dsc

#

Older versions just aren't efficient at it

ocean raptor
#

where is the bundle for the wifi page in the settings app?

twilit jungle
#

On Tim Apple's laptop

quiet warren
#

attempting to run jtool2

#

having issues with it being broken?

ocean raptor
#

jtool2 won't work on iOS 15 dsc

quiet warren
#

no no i understand

#

talking about macos

#

currently doing lots of research and learning

#

not going to be 100% w what im talking ab

twilit jungle
#

Its a cmdline tool

quiet warren
#

like powershell?

twilit jungle
#

bruh_l aren't you on mac?

pearl sail
#

!jumbo getalife

quiet warren
#

yes

twilit jungle
#

powershell is for windows.

#

Its a shell where you can use cmdline tools

restive ether
twilit jungle
restive ether
#

m1 is in pre release but it works on x86

twilit jungle
grim sparrow
#

it is has been far too long

restive ether
twilit jungle
#

why would anyone would to install that Microsoft abomination if there was another option?

restive ether
#

nice job cam

ocean raptor
restive ether
restive ether
#

you guys are gonna be covid cop land soon

#

have fun with that

quiet warren
#

what catagory do most devs in the jailbreak community fall under/

twilit jungle
#

A column before PowerUser, copy other people's code and claim it as our own

quiet warren
twilit jungle
#

Yeah they just don't want to make it easy for others to find out that it was copy off something else

quiet warren
#

makes sense

#

so if it were all original theyd fall under PowerUser?

twilit jungle
#

Idk I am copy paste dev, my brain can't process/answer that

quiet warren
#

fair enough then

swift plinth
#

as soon as i have the time im buying the osx internals book and starting my long, fulfilling journey to being doxxed by children for being 30 minutes late delivering clash of clans free gems exploit

quiet warren
#

there happens to be a pdf online

swift plinth
#

still don’t have time

quiet warren
#

fair enough

#

are you talking ab the book with 3 volumes

swift plinth
#

yes

quiet warren
#

oh that one ...

#

thats 123$(FOR ONE VOLUME)

#

paperback

#

cant find it online

swift plinth
#

cry about it

quiet warren
#

sigh

#

my pockets will

swift plinth
#

it’s about drive it’s about power we stay hungry we devour (joke i am not an unironic sigma mindset person)

swift plinth
#

i like jelbrek thumbsUp

empty drift
#

out of curiosity, has anyone tried compiling Fugu14 without the untether?

#

I only know basic programming so I can't do it myself, but I wonder if it works semi-untethered, because it looks like the untether is the riskiest part

twilit jungle
torn oriole
#

My guy

#

Fugu14, is the untether

empty drift
#

That's my b, I coulda sworn that it came with more exploits to support 14.4 through 14.5.1

torn oriole
#

Wh

#

This jb minus Fugu14 is just unc0ver

quiet warren
#

is it a good idea to have solid foundation in C and C++ in regards to jailbreak development?

#

i have no idea

#

which is why im asking

serene dragon
#

I think Objective-C is generally what you need, but you see C sometimes

quiet warren
#

have seen information in regards to using C, haven't come across hearing anything about Objective C. Will look into it

quiet warren
#

what ive found is that after you have extensive knowledge eith Objective-C then you can choose to go with OS X development or iOS development or both. Choose books accordingly.

quiet warren
quiet warren
twilit jungle
#

uhh It tells you exactly where to start

quiet warren
#

C and some knowledge w C++

#

with no mention of Objective-C

#

unless im an idiot

#

and it relates to it

twilit jungle
#

Obj-C is just different syntax, but it gets converted to C at compile time and also has a runtime library for full functionality.

quiet warren
#

alrighty thank you

#

so having a good understanding of all three is what im hearing

twilit jungle
#

Either way programming language doesn't really matter, the low level concepts are more important.

quiet warren
#

as mentioned in the thread?

twilit jungle
#

Yes

quiet warren
#

"memory management, data structures, etc, especially in respect to C and C++"

#

gotcha

indigo peak
#

alright so

#

how do i make a twek in python

quiet warren
#

arent tweaks made using swift?

quiet warren
# twilit jungle Yes

yup went to older jailbreak releases on github to see what languages were mainly used

#

majority

#

C and obj-C

indigo peak
#

objective-c++

quiet warren
#

.......

#

huh T-T

quiet warren
#

i see

late ridge
proper reef
indigo peak
lethal ice
#

true

#

don't nfr me boy

proper reef
#

Also I finally got a decent remote debugging setup

indigo peak
#

tweaks in html

#

when?

proper reef
#

When the jailbreak community decides to make html tweaks

grim sparrow
#

XenHTML moment

proper reef
#

well there’s already javascriptcore which can do objective c stuff in JavaScript so that could be used for the html tweaks I guess

indigo peak
# grim sparrow XenHTML moment
<hook>
  <SBStatusBarManager>
    <script>
      function viewDidLoad() {
        return self.viewDidLoad();
      }
    </script>
  </SBStatusBarManager>
</hook>```
grim sparrow
#

omg please stop

grim sparrow
#

no

#

no

#

no

#

on

#

on

#

on

indigo peak
#

fuck no

grim sparrow
#

on[fognp[fgknolfgk

#

no

#

dfog

#

no

indigo peak
#

i think i broke amy

#

uh

#

amy?

grim sparrow
#

hi

indigo peak
#

nope shes fine

proper reef
#

you download a tweak but it comes with 20 gb of node modules

grim sparrow
#

👍

grim sparrow
late ridge
#
<hook class="UIView">
  <Method name="frame:">
    return ...
  </Method>
</hook>

if you did it like this you might be able to make a simple parser instead of doing javascript stuff
I wonder why nobody's made something like that for plists

indigo peak
tepid olive
indigo peak
# grim sparrow omg please stop
<!--%hook ArcheryScene
-(void)setWind:(float)arg1 angle:(float)arg2 {
    if([preferences boolForKey:@"archeryNoWind"]) {
        %orig(0.0, 0.0);
    } else {
        %orig;
    }
}
%end
-->

<hook class="ArcheryScene">
  <script>
    function setWind(arg1, arg2) {
      self.setWind(0, 0)  
    }
  </script>
</hook>
#

would it technically be possible to write tweaks in java

high citrus
indigo peak
#

seems like a lot of work

high citrus
#

Yeah probably, but it will be worth it

indigo peak
#

probably not

#

but like no joke

#

it would be cool

high citrus
#

Definitely, and would probably be slowing down your apps

late ridge
#

Can't you call C functions in python from a shared library

grim sparrow
#

but that doesn't mean you should

high citrus
grim sparrow
#

what you should actually do is go back and evaluate your life choices up to this point

indigo peak
#

ok mrs aemulo, valery and dra1n

grim sparrow
indigo peak
grim sparrow
#

eta release date + 3 weeks

indigo peak
#

true

late ridge
#

do you actually use centralis

grim sparrow
grim sparrow
#

Its miles faster

#

My school let me put up posters with the testflight link on it

indigo peak
# grim sparrow

i dont know much swift but if i maybe make some pr's with stuff i like, would you consider making them a part of the actual tweak

high citrus
grim sparrow
#

thats the point of open source really

indigo peak
grim sparrow
#

let others learn and to let people contribute to something to make it better

indigo peak
#

no one made any prs on gameseagull chr1s amde a pr on gameseagull

#

that i never merged

late ridge
indigo peak
late ridge
indigo peak
grim sparrow
indigo peak
grim sparrow
#

I did a benchmark/speedtest

#

I can't show it cause I don't want to dox myself

#

but from Home Screen to Seeing Homework

#

EduLink One: 16 seconds
Centralis: 3 seconds

#

on my iPhone 7 Plus

indigo peak
#

i want a rewrite of google classroom

#

it sucks balls

grim sparrow
#

heres the thing

#

Someone told me to do that inside centralis

#

deadass

indigo peak
#

it would be cool

#

i was making a darkmode for google classroom

#

but i gave up

#

probably bc im dumb

#

but i used the worse possible way possible

grim sparrow
#

its a web app mostly isn't it?

indigo peak
#

instead of doing -(void)setBackgroundColor:(id)arg1 {} i did -(void)layoutSubviews {}

grim sparrow
#

CRINGE

tepid olive
indigo peak
#

i still have the embarrassing source code

high citrus
grim sparrow
#

viewDidLayoutSubviews is on the edge for me

#

between bad and acceptable

indigo peak
#

well amy

#

the thing is

#

i did

#

self.backgroundColor = color

#

which sucks

#

because

#

i needed to declare a new interface per class i hooked

#

and i hooked a few

#

plus i was mainly working on it on mobile

#

without a pc

late ridge
#

you don't have a mac right?

indigo peak
#

no i dont

#

i use my pc now

#

i learned about wsl

grim sparrow
#

cringe

late ridge
#

wsl is so useful when I don't wanna lookup windows commands

indigo peak
grim sparrow
#

bruh

#

you would of deadass been better hooking UIColor and just doing it that way

indigo peak
#

i didnt even know how to do a mobile substrate bundle filter

grim sparrow
#

actually

indigo peak
#
%ctor {
    BOOL inClassroom = [[[NSBundle mainBundle] bundleIdentifier] isEqualToString:classroomBundle];
    
    BOOL enabled = YES;

    if(inClassroom == YES && enabled == YES) {
        %init(DARK_CLASSROOM);
    }

}
grim sparrow
#

Couldn't you of just hooked UIView

#

and then hoped for the best

indigo peak
#

yeah

#

yeah

#

i really could have

#

but

#

that was 5 months ago

#

oh the progress one can make from not going outside over a summer

grim sparrow
#

relatable

indigo peak
#

literally

#

cach3d was my best tweak

#

which is sad

grim sparrow
indigo peak
#

i started 2020 as a guy and came out as a disappointment

grim sparrow
#

;dislfgjikl;dfshjgjkldsghjsdghdlfkghnsdfjkgdfsjkgdsnjg

late ridge
grim sparrow
#

me when doing VM backup before I update

indigo peak
#

166 gb

grim sparrow
#

the disk is like 200gb

indigo peak
#

windows 11?

grim sparrow
#

its actually 12.0, its a trick

grim sparrow
indigo peak
#

windows 10 or windows 11

#

and dont say macOS

grim sparrow
#

Im on W11 right now

snow python
indigo peak
#

you literally lurk in the shadows

#

and came out to say that

grim sparrow
snow python
#

👀

#

Nah I don’t mind windows for games

#

Would still love if Linux would work with AAA though

grim sparrow
#

Windows is my game launcher

snow python
indigo peak
#

windows is my daily driver

grim sparrow
#

ur cringe

indigo peak
#

i use windows for dev too

#

well

#

really

#

its ubuntu

#

but

grim sparrow
#

Can someone buy Aemulo a few thousand times so I can get a new macbook ty

indigo peak
#

on it

grim sparrow
#

Description leak

indigo peak
#
import requests

headers = {"paypal": "fuckme@anamy.gay", "password": "dgh0st is mommy"}

for i in range(1000):
  requests.post("chariz.com/Aemulo/buy", headers=headers)

grim sparrow
#

fuckme@anamy.gay
This will literally go straight to my main inbox

#

not even kidding

snow python
#

Lmao

indigo peak
#

check your inbox amy

ashen birch
#

tro

indigo peak
#

are you amy?

grim sparrow
#

oml

indigo peak
#

no

#

i didnt think so

grim sparrow
indigo peak
#

im still salty about this

#

"Hi Donato, thanks for your interest in Chariz. However I’m afraid we will have to decline as we are not hosting cheat tweaks."

grim sparrow
#

L

indigo peak
#

have you heard anything about my repo and canister yet?

tepid olive
#

hello amy

indigo peak
#

or still nothing

tepid olive
#

tale is on vacation or some shit

grim sparrow
indigo peak
#

what the fuck is soon

#

i said mobius14 soon like 7 months ago

tepid olive
#

mobius my nuts

restive ether
indigo peak
#

pogger

restive ether
grim sparrow
#

yep

indigo peak
#

true

#

my iphone 8 is suffering

grim sparrow
#

my 7 is suffering worse

#

its currently used 31.8gb out of 32gb

indigo peak
#

my se is just dead

#

it wont even turn on

#

i dont even think it has a screen

restive ether
#

@grim sparrow do you know if i have to do anything crazy when updating a carrier bundle

grim sparrow
#

say abracadabra and turn around 3 times

restive ether
#

sorry i can’t pronounce that

#

no booba for you

grim sparrow
#

wtf

restive ether
#

see

#

i have the magic key

grim sparrow
#

all my pain just instantly stopped

restive ether
#

crazy right

grim sparrow
#

wanna know something funny

restive ether
#

it’s like a voodoo doll

grim sparrow
#

I took pain killers the other day for something else and my chest pain stopped and I thought I broke something

#

my brain couldn't comprehend that pain killers stop pain

restive ether
#

@unkempt oriole did you finally get harassed too much bro

grim sparrow
#

An update to remove the update banner

unkempt oriole
#

the reason it needed to be there no longer exists, thankfully

restive ether
#

ah

#

i remember seeing a post long ago

#

that got a lot of traction and a lot of hate

grim sparrow
#

Aemulo just tells you what version you're on at the bottom Shrug

restive ether
#

for seemingly no good reason

weary heath
unkempt oriole
#

reddit shitters being reddit shitters

grim sparrow
restive ether
#

as long as you aren’t a certain person with a certain drm that forces you to update then makes you kernel panic Troll

grim sparrow
#

well

tepid olive
#

what is so special about ameulo's depiction

weary heath
#

Bastards

grim sparrow
#

if you write anything other than an amiibo its around 100,000 writes

restive ether
#

bozo

grim sparrow
#

its just amiibo require you to lock it

tepid olive
#

whats the difference

grim sparrow
#

to try and stop theft

tepid olive
#

looks the same minus the changelog tab and more words

restive ether
#

smh look at it yourself

#

🙄

unkempt oriole
#

aemulo is out??

tepid olive
#

fuck you im going back to cydia and my ad infested web depictions.

grim sparrow
tepid olive
#

oh W

#

what about saily trill

grim sparrow
restive ether
tepid olive
#

what tweak

snow python
#

Yeet

restive ether
#

they’ll do it

grim sparrow
indigo peak
#

What the fuck

grim sparrow
grim sparrow
#

with a method with 46 parameters

indigo peak
#

i remember seeing that one time i think

#

it got deleted later 😔

snow python
grim sparrow
#

F

grim sparrow
indigo peak
unkempt oriole
indigo peak
#

Dynastictrolllaugh

restive ether
#

yeah bro sell it on dynastic

#

they’re great to their devs

grim sparrow
indigo peak
#

put it on twickd

restive ether
indigo peak
#

put it on hack[redacted]

#

or app[redacted]

unkempt oriole
indigo peak
#

bc tale is a g

restive ether
#

tale is tale

pearl sail
restive ether
grim sparrow
#

If not we can change it

indigo peak
unkempt oriole
#

well i know that but i was curious if it was because they are friends or if it is some specific feature that chariz has

restive ether
#

what were the choices

#

MPL and Apache?

#

BSD-2?

grim sparrow
#

Someone just suggested apache 2 and everyone said

#

"yes"

restive ether
#

lol

pearl sail
snow python
grim sparrow
#

lol

snow python
grim sparrow
#

It's almost finished being done in Sileo

restive ether
#

everyone’s favorite license, PPL

tepid olive
restive ether
#

Pedo Public License

restive ether
grim sparrow
#

its piss easy to implement too

pearl sail
restive ether
#

same thing

pearl sail
tepid olive
pearl sail
indigo peak
#

%hook

pearl sail
indigo peak
#

%end

pearl sail
ashen birch
#

@heavy kernel gm are u alive

restive ether
#

no

heavy kernel
#

yeah but my signal is shite

#

so i may drop out

heavy kernel
ashen birch
#

with ios.cfw.guide links that direct to a specific section it doesn't go to that section specifically, just takes you directly to the page

heavy kernel
#

all of them?

#

works on my machine

ashen birch
#

while i have the tab open if i paste in the link again it takes me to it tho

heavy kernel
#

hmm

#

weird

#

what browser and OS?

ashen birch
#

true true

#

firefox and big sur

heavy kernel
#

whack

ashen birch
#

for now ill link directly to the file on gh and leave a todo that i will probably never check again

#

trolla

#

fwiw also happens on ios 15 safari @heavy kernel

misty cradle
#

@ashen birch ratio

ashen birch
#

mane

tepid olive
#

@ashen birch find my ecid in your autotss backups please im too lazy to plug my device into itunes

ashen birch
#

wtf happened

tepid olive
#

i deleted them i think idk why

#

im dumb lol

ashen birch
#

bruh

#

i dont got them then

tepid olive
#

@lime quartz

#

ok good at least my backup isnt gone

ashen birch
#

yeah just check ur dms

ashen birch
#

where’s the dm

#

@grave sparrow

#

yo

#

@grave sparrow yo

#

where is it

#

???

#

hey

vivid dew
twilit jungle
snow python
#

Is there any way to prevent a PSListController from destroying a custom PSCell on reload? When I dynamically add other cells, my header just ceases to exist

#

self.reload()

#

lol

#

got it.

twilit jungle
lyric timber
#

I wanted to try backporting AirTag support for iOS 14.4 but jfc so much code to decompile it's overwhelming

#

It seems to be mostly Swift too woeis

#

DaemoniOSLibrary.SDB389SetupAgent in 14.5 sharingd (B389 = AirTag codename)

swift plinth
lyric timber
#

Likely depends on newer stuff in Sharing.framework too

swift plinth
#

update the framework too

lyric timber
#

That's inside the dyld_shared_cache

twilit jungle
#

Just port the dsc

lime pivot
lime pivot
tacit spade
#

@lime pivot yo

#

wanna see a cool Mac thing

lime pivot
tacit spade
#

json themes

#

🙂

late ridge
#

that's actually dope Imma use this

tacit spade
#

i saw you star it 😄

#

make sure to download the xcodeproj and compile it urself

#

im lazy

#

@lime pivot also rate my code

lime pivot
#

hah, nice

#

pretty clean code

tacit spade
#

🙂

#

check out the demo video

lime pivot
#

my only nitpick @tacit spade is that you can take advantage of a few language features to make the code a bit nicer

#

dictionary[@"Name"] ? dictionary[@"Name"] : @"" can become dictionary[@"Name"] ?: @""

#

?: = if LHS is truthy, use that, else use RHS

tacit spade
#

wth

#

thats awesome

#

makes sense too

#

huh

#

that's a c feature isnt it

#

makes total sense

lime pivot
#

and to get an NSNumber you can just wrap numbers in @(…)

#

eg @(_fadeDuration.intValue + _delay.intValue)

tacit spade
#

oh brilliant

#

thank you

lime pivot
#

no brackets needed if it's just a numeric literal i.e. @0.0

tepid olive
#

why is the color of a device represented in so many different ways

lime pivot
#

heh

tepid olive
#

this is the same key from 3 different devices lmao

lime pivot
#

luckily these days they seem to use numeric ids that consistently match a color

#

so eg red will always be the same color number

tacit spade
tepid olive
#

do you know a list of those numbers

tacit spade
#

ie _brightness = dictionary[@"Brightness"] ?: [NSNumber numberWithDouble:0.0];

#

wont compile with ?: @0.0

lime pivot
#

I know that's the case because I use macOS's list of iOS devices to generate the list Chariz uses

tacit spade
#

maybe im just being dumb

#

highly possible

lime pivot
#

can't remember if decimals are supported without brackets…

tacit spade
#

oh wait

#

i did 0.0

lime pivot
#

it's been too long

tacit spade
#

not @0.0

#

ignore meeee

lime pivot
#

hehe

#

_brightness = dictionary[@"Brightness"] ?: @0.0;

lime pivot
tepid olive
tacit spade
#

you notice i set up github actions too? 😄

#

comp sci classes have been good to me

lime pivot
#

you can poke at the actual device model definitions at /System/Library/CoreServices/CoreTypes.bundle/Contents/Library/MobileDevices.bundle/Contents/Resources/

#

there's more MobileDevices bundles in the same folder also, seems they make a new bundle for each year now

#

the icon filenames have the color id in them

tepid olive
#

cool

#

will use to get actual color names

tacit spade
#

im really proud of the kbpulse logo too

#

guess where i made it 😛

#

guess

#

guess kirb

lime pivot
#

was curious whether they'd recycle existing ids for the 2021 colors like starlight, I guess they did

lime pivot
#

except coolstar uses word lmao

tacit spade
#

LMAO

#

i cant say much

#

i make logos in keynote

lime pivot
#

I guess 9 = blue-ish colors

tepid olive
#

is 2 gold

lime pivot
#

the blue XR is also 9

tacit spade
#

@lime pivot any recommendations for the json layout

lime pivot
#

roughly seems to be
1 = black
2 = silver
3 = gold
4 = rose gold/pink/darker gold (XS and up)
5 = graphite
6 = red
7 = yellow
8 = orange/coral
9 = blue/starlight
11 = purple
12 = midnight green
18 = also midnight green?

tacit spade
tepid olive
lime pivot
#

I kinda-sorta figured out most of them

tepid olive
#

ok this makes no goddamn sense anymore (this is a red 5c)

lime pivot
#

there are a few inconsistencies, but iPhone 7 and newer are all using this scheme, older ones are using the stupid hex codes

#

and also the watch colors are totally different from the phone/pad/pod ones

tepid olive
#

hope nobody with an ibus plugs a watch into this

lime pivot
#

heheh

tepid olive
#

actually do watches even have lockdown

lime pivot
#

I'm sure they'll realise apps won't be designed with watches in mind heh

#

they do

#

it's physically difficult to get to (need the adapter), but it's there

#

it shows up in iTunes/Finder and can be restored if you have the ipsw

tepid olive
#

d201aap is a myth

tepid olive
#

this hurts my head im gonna go to bed

pearl sail
#

Is it easier to read machine code and translate it to hex or do people find it easier to read and learn assembly languages?

vivid dew
high citrus
#

why is it updating my old xcode versionfr

#

Can’t cancel it

#

uhh thanks apple

wheat grotto
#

im a dumbass. why aint this working ?

high citrus
wheat grotto
#

Yup, that fixed it. Thanks

wheat grotto
#

How do i pass newaccount as a parameter for sendMoney ? Probably did a really shit explaination here

#

This is how my sendMoney looks like right now

public void sendMoney(double amount)
        {
            if (balance < amount)
            {
                Console.WriteLine($"Nepietiek līdzekļu. Pieejamais atlikums: {balance}$");
            }
            else
            {
                balance = Math.Round(balance - amount, 2);
                Console.WriteLine($"Parskaitijums tika veikts. Pieejamais atlikums: {balance}$");
                
            }
        }
vivid dew
#

why are your comments so weird

wheat grotto
#

Because theyre in latvian and this is a test. I need to comment basically everything i do

vivid dew
#

alright, i guess

#

you just need to add either a sender account or target account parameter to sendMoney

wheat grotto
#

target account, because im sending, but yea, how do i do that. been stuck at this for the past hour

vivid dew
#

the same way you add any parameter

#

you may need to make it a reference parameter, i don't know what the default behaviour is for c#

lime pivot
#

think I saw someone else have that on big sur/monterey

tardy narwhal
wheat grotto
#

Thanks

indigo peak
#

🤌

late ridge
graceful gate
weary heath
late ridge
#

it's dope and hurts at the same time dead

snow python
#

What is the best way to retrieve a users WallPaper? I'm looking at SBFWallpaperConfigurationManager to try to pull it, but not sure if thats the simplest way to get the image

tacit spade
#

give me a bit

snow python
#

cheers

plain peak
#

Yo, is anyone able to get older .ipa files for apps? Cheers

misty cradle
#

Stfu

#

dumbass capt

#

can’t even code arm

#

don’t talk about c#

#

shoots capt

#

starts bleeding

#

Capt is dead now

late ridge
plain peak
tepid olive
#

:(

hasty ruin
tepid olive
#

hell yeah

livid patio
#

Hi everyone I just joined this group. Does anyone know when there will be a jailbreak for ios 14.7.1 iphone 11 devices?

tepid olive
#

no

#

!t support

faint lionBOT
pearl sail
#

so you are a annoying 4th wall breaking immortal asshole?

gentle grove
swift plinth
lethal ice
tepid olive
twilit jungle
#

No he drinks it

lethal ice
#

no i inject it straight into my veins

#

by biting my skin open and pouring the meth in

twilit jungle
indigo peak
#

dgh0st fr'ing scoob like he doesnt do mass amounts of ketamine on the daily

lethal ice
#

nah gh0st only crossfades on advil and orange juice

indigo peak
#

apple juice*

#

he has standards

twilit jungle
fallow ravine
#

Not jb related but if I was interested in hiring a dev for a one off where is the place to look for that?

Strictly theoretical at this point

I need a driver for an M1 Mac to interface with controllers. Whether that’s emulating another driver or native idc as long as it can talk to steam. I reckon ideally it would be a drop in replacement for the steam driver kext

#

I know. I’m asking if anyone has suggestions on where to hire, as this is a one off I can’t exactly post in most places

lethal ice
#

you can hire any type of dogshit on fiverr

fallow ravine
#

I know you’re joking but that’s not a terrible idea

lethal ice
#

but it will be dog shit

fallow ravine
#

Yeah

lethal ice
#

idk wtf a klist is

fallow ravine
#

have you googled klist? I’m assuming yes

indigo peak
#

It’s krits version of a plist file

late ridge
indigo peak
#

Since krit can’t be normal he has to make his own version of everything

late ridge
#

she

#

lol

indigo peak
#

She it they

#

I don’t know

#

Fr

late ridge
#

anyone seen krit recently

fallow ravine
#

krit your bullshit krit

indigo peak
indigo peak
indigo peak
#

Should my next tweak be a troll tweak or a real tweak

#

My last two aka my only two are troll tweaks

#

iusearchbtw but with custom messages trolllaugh

late ridge
#

LOL

indigo peak
#

Yeah

#

Slim filtered it

fallow ravine
indigo peak
#

So hear me out

late ridge
#

wut was it

indigo peak
#

It appends any message to the end of your discord messages + ratio

#

At least mine does + ratio

#

You have to be to survive man + ratio

#

It’s a tough world out there + ratio

gentle crescent
#

ratio

indigo peak
#
  • ratio
fallow ravine
#

Ratio

indigo peak
#
  • ratio
tepid olive
#

mainrepo

fallow ravine
#
  • ratio
late ridge
tepid olive
#

yes?

late ridge
#

how

tepid olive
#

devs have filter bypass in here

late ridge
#

no shot

#

fr?

indigo peak
#

Hackyouriphonr + ratio

#

Bruh I spell wrong + ratio

late ridge
#

the only time I got warned was for copy pasting code in here that has a piracy repo link in it

fallow ravine
#

hackyourratio

indigo peak
#

hackyouriphone + ratio

indigo peak
#

Second to hackyoyriphone

fallow ravine
#

what’s main r? Pircay?

indigo peak
#

Fff MGM q l

fallow ravine
#

Solid thanks

late ridge
#

it is a repo that distributes mobile substrate extensions + themes for the price of nothing moneys

#

:)