#development

1 messages · Page 614 of 1

gentle grove
#

Oh its not python

indigo peak
#

its swift

ornate hamlet
#

yeah

#
line1
line2

line3
line4

line5
line6
line7

and i want
[

line1
line2

,

line3
line4

,

line5
line6
line7

]

steep lantern
#

rjb gang💯

ornate hamlet
#

gm

naive sedge
#

Is it possible for an app to get the sysdiagnose information with Private APIs (no JB)?

primal perch
#

if they are allowed while sandboxed

#

depends on the apis

#

battery health for example isn’t anymore

naive sedge
#

yes, I wanted to know what APIs are used, and if they are allowed while sandboxed

primal perch
#

iirc

naive sedge
#

But I can't find what it uses

#

main thing I want is UDID

#

but other things are helpful too

restive ether
#

you can get UDID, appstore apps just aren’t allowed to get them

#

apple won’t accept your app if you use it

primal perch
#

unless you have money

#

tiktok youtube instagram etc

indigo peak
#

@ornate hamlet i managed to come up with this:

#
import Foundation

let data = """
line1
line2

line3
line4

line5
line6
line7
"""



let replaced = data.replacingOccurrences(of: "\n\n", with:"SEPARATOR")
print(replaced.components(separatedBy: "SEPARATOR"))
#
> swiftc -o main main.swift
> ./main
> ["line1\nline2", "line3\nline4", "line5\nline6\nline7"]
#

i replaced the newlines with SEPARATOR because that is unlikely to be in data, but if you have a better temp separator go ahead

naive sedge
#

Which I am trying to do

#

So instead, I was looking for a way for it to detect it's own UDID

ornate hamlet
fervent verge
#

How do apps detect that your currently in a jailbroken state?

#

do they check files time stamps?

primal perch
#

stuff like this

indigo peak
primal perch
#

isIsJailbroken

#

isis jailbroken

fervent verge
#

this one app iv been tweaking can detect that my jailbreak is active if I reboot it lets me run the app

ornate hamlet
#

using tweaks to defeat jb detection

#

can all app store apps access files outside of sandbox

#

also why does orion need an orion runtime

indigo peak
#

cant no app store apps access files outside the sandbox

#

isnt that the whole purpose of the sandbox

#

and thats why jailbreaking has a step for escaping the sandbox

tepid olive
restive ether
#

apps can read for any file to check if it exists

#

that’s basically the foundation of all jailbreak detection

native dune
#

/.installed_odyssey troll

primal perch
#

but apple doesnt care about security when tiktok and snap etc exist

#

nothing should be able to get uuid at all

rapid mirage
#

i hacked my game to let me use manual camera after i try to adjust my aim manually midaim, and reset to autocam after i shoot or stop aiming

#
class SSG4GameLayerHook: ClassHook<NSObject> {
    static let targetName = "SSG4GameLayer"
    
    @Property(.nonatomic) var manualCamera: Bool = false

    func touchBegan(_ arg1: Any, withEvent arg2: Any) {
        manualCamera = true
        orig.touchBegan(arg1, withEvent: arg2)
    }
    
    func setIsAlteringView(_ arg1: Bool) {
        if (ballCameraOffset().x == 0.0 && ballCameraOffset().y == 0.0) {
            manualCamera = false
        }
        orig.setIsAlteringView(manualCamera)
    }

    func ballCameraOffset() -> CGPoint {
        return orig.ballCameraOffset()
    }
}
#

first vid is before the tweak, second is after

#

i won't use it in game but it was fun to make

#

rate my code from 1-10

indigo peak
#

swift

#

0/10

#

buttttttt

#

it does work

rapid mirage
#

yeah imma remake in theos-jailed

indigo peak
#

why not just normal theos

rapid mirage
#

i want it to work on iOS 16

#

and 15

#

w sideloaded IPAs

indigo peak
#

thatll work on normal theos

rapid mirage
#

oh cool

rapid mirage
#

is there a good way to install theos and orion simultaneously

#

like I feel like using the master fork of theos rather than the orion fork if i'm going to compile something w theos

lone bronze
#

i saw someone ask something similar in jb or general recently and I think you may be able to accomplish this using apples "shortcut" apis... not sure if cell data and airplane mode are accessible from that or not monkashrug

lone bronze
#

i honestly didn't think you could get uuid anymore

restive ether
primal perch
#

idk

ornate hamlet
#

how do i fix this

#

how do i get a stack trace

lone bronze
ornate hamlet
#

i used debugserver and got a backtrace

hollow harbor
#

@ornate hamlet what are you making?

ornate hamlet
#

pkg manager

hollow harbor
#

whats it gonna be named

ornate hamlet
#

tweakm8

hollow harbor
#

can any sp of the UI?

ornate hamlet
#

kk

#

i kind of just started so theres nothing yet

hollow harbor
#

huge step in progress

#

is it all in swift?

ornate hamlet
#

yea

hollow harbor
#

looks amazing man

#

👏

ornate hamlet
#

i was gonna write it in swiftUI for ios 14 only but i scrapped it

#

now its using uikit

#

supports up to ios 12 now

#

ima try to go lower

hollow harbor
#

how low does silleo support?

#

is there really people on ios 12 and below?

primal perch
#

somehow yes

ornate hamlet
hollow harbor
#

i would think that sileo released around ios 12 aswell

hollow harbor
ornate hamlet
#

yeah

ornate hamlet
hollow harbor
#

i can make some in ps

hollow harbor
ornate hamlet
#

its not that great tho

#

if you can make a new one that would be nice

hollow harbor
#

alright

#

whats the old one look like for reference?

ornate hamlet
#

yeah its real basic

hollow harbor
#

ok

#

ima head into ps and make on

#

alr

#

good luck on the package manager

restive ether
ornate hamlet
#

so i set my development target to ios 11

#

no errors

#

👏

#

what about ios 10 O_o

restive ether
#

wasting your time supporting ios 10 or 11

hollow harbor
#

only if i could make tweaks in python sadcowboy

restive ether
#

especially with tele 🤢🤢

ornate hamlet
hollow harbor
#

@ornate hamlet did you make the UI in XCode and port it over somehow?

ornate hamlet
#

for what part

hollow harbor
#

like this

ornate hamlet
#

i used xcode the whole time

hollow harbor
#

wow

ornate hamlet
#

no port, its a rewrite

#

the old version had no functionality

#

it was just tabs

hollow harbor
#

is there any documentation too how to make a UI with XCode and compile it too a tweak

#

i've been searching on reddit for a while and stuff

#

but i can't find any information really on it

ornate hamlet
#

then just present the view controller

#

found an old screenshot

hollow harbor
#

yea im still new too all of this. I know a decent understanding of swift but obj-c is unlike anything i've ever coded in before the syntax is bs

ornate hamlet
#

[obj method]

#

the syntax for calling a method

#

objc is just a superset of c, right?

hollow harbor
#

tbh

#

idfk

#

i don't even understand variables in obj-c

ornate hamlet
#

yeah objc should have the same syntax as c

#

just with some extra extensions

hollow harbor
#

i don't know C

ornate hamlet
#

welp

#

do you know java

hollow harbor
#

not too much

ornate hamlet
#

the syntax isnt that hard

hollow harbor
#

its alot

ornate hamlet
#

i support ios 9 now

#

64 bit only

hollow harbor
#

wow

#

i didn't even own a phone when ios 9 was out

#

i still had a nds

ornate hamlet
#

Ive got a good idea

#

Try making both boxes thicker by a bit and make the radius match the ios app icon

#

@hollow harbor

hollow harbor
ornate hamlet
#

how do i get the icon of a package

#

next TODO: add search bar to packages tab

#

Weird bug, package id and package name are not matching

hollow harbor
#

F

lime pivot
#

^^^ this

#

iOS 9 is an ok baseline, but a ton has been added since then

primal perch
#

ios 11 trol

#

arm64 only

narrow raven
#

Jailbreak for 15.5

#

Plz

#

Make

hasty ruin
narrow raven
hasty ruin
narrow raven
#

Their?

#

Give link

hasty ruin
#

Sorry you’ll have to ask someone else. I’m busy rn and can’t get the link

#

Got an exam in around 1 minute

narrow raven
#

@everuone give link

#

Sick

#

Thx so much

undone nest
#

advanced dev channel

rapid mirage
#

I can't firgure out how to call a function within an instance of a class from the same instance of a class :/

#

in theos

#

bool manualCamera = false;

-(void) touchBegan:(id)arg1 withEvent:(id)arg2 {
        manualCamera = true;
        %orig;
}

-(CGPoint) ballCameraOffset {
        return %orig;
}

-(void) setIsAlteringView:(bool)arg {
        CGPoint point = [self ballCameraOffset];
        if (point.x == 0.0 && point.y == 0.0) {
                manualCamera = false;
        }
        %orig(manualCamera);
}

%end```
#

and I get the error Tweak.x:15:19: error: receiver type 'SSG4GameLayer' for instance message is a forward declaration CGPoint point = [self ballCameraOffset]; ^~~~ Tweak.x:22:8: note: forward declaration of class here @class SSG4GameLayer;

weary heath
#

You need to add the class’s headers

rapid mirage
#

I have to import like all of cocos-2dx

#

and have been having trouble with it

#

can I make a header w just those three functions?

weary heath
#

Yeah

#

Use @interface

rapid mirage
#

cool

#

do i need an @class at all

weary heath
#

No

rapid mirage
#

should I modify @interface to use NSObject as it's base template

#

AKA @interface SSG4GameLayer : NSObject or should I do @interface SSG4GameLayer

weary heath
#

First one

rapid mirage
#

and do I even need to put any ivars inside it? I only need to hook functions

weary heath
#

You only need to add them if you’re referencing them

rapid mirage
#

is this okay? ```@interface SSG4GameLayer : NSObject
{
}

@property(nonatomic) struct CGPoint ballCameraOffset; // @synthesize ballCameraOffset=_ballCameraOffset;
@property(nonatomic) _Bool isAlteringView; // @synthesize isAlteringView=_isAlteringView;

  • (void)touchBegan:(id)arg1 withEvent:(id)arg2;

@end

#

oh yeah that worked

#

sweet i successfully converted my tweak to theos

#

I used the header I just posted

#

and this ```#import "SSG4GameLayer.h"

%hook SSG4GameLayer

bool manualCamera = false;

-(void) touchBegan:(id)arg1 withEvent:(id)arg2 {
manualCamera = true;
%orig;
}

-(CGPoint) ballCameraOffset {
return %orig;
}

-(void) setIsAlteringView:(bool)arg {
CGPoint point = [self ballCameraOffset];
if (point.x == 0.0 && point.y == 0.0) {
manualCamera = false;
}
%orig(manualCamera);
}

%end```

#

is there a way to set manualCamera to be a property of the hooked class or is how I did it fine?

rapid mirage
#

how can I do the equivalent of orion's target.$METHOD in theos, to get the result of a second method within the calling class before the hook for the second method is applied?

#

I'm trying to recreate this ```
func GetUnlockedHeadEmotes() -> Array<Int> {
return orig.GetUnlockedWordEmotes() + orig.GetUnlockedHeadEmotes()
}

func GetUnlockedWordEmotes() -> Array<Int> {
    return orig.GetUnlockedHeadEmotes() + orig.GetUnlockedWordEmotes()
}```
glacial matrix
rapid mirage
#
        return [%orig arrayByAddingObjectsFromArray:[self GetUnlockedHeadEmotes]];
}

//- (NSArray*) GetUnlockedHeadEmotes {
//      return [%orig arrayByAddingObjectsFromArray:[self GetUnlockedWordEmotes]];
//}``` this works but if I uncomment the code for GetUnlockedHeadEmotes I crash
#

but I really need the code to do what the swift code did and apply to both hooked functions, appending the results of the non-hooked functions together for each

rapid mirage
#

oh

#

Yeah I know

#

that's why orig.* is so nice in orion

#

how can I do it manually but still be able to inject it into an IPA?

#

idk how putting the compiled package into IPA's works

#

but until iOS 15 jailbreak I want to maintain side-loadability whenever possible

#

can you send documentation

#

or an example tweak source

#

I got it working

#
    return [_logos_orig$_ungrouped$SSG4EmotesDataManager$GetUnlockedHeadEmotes(self, _cmd) arrayByAddingObjectsFromArray:_logos_orig$_ungrouped$SSG4EmotesDataManager$GetUnlockedWordEmotes(self, _cmd)];
}

- (NSArray*) GetUnlockedHeadEmotes {
    return [_logos_orig$_ungrouped$SSG4EmotesDataManager$GetUnlockedWordEmotes(self, _cmd) arrayByAddingObjectsFromArray:_logos_orig$_ungrouped$SSG4EmotesDataManager$GetUnlockedHeadEmotes(self, _cmd)];
}```
#

is the code that works fine

#

thank you @compact swift

vivid dew
#

how is this a real, actual alert

undone nest
#

go ahead, share it

lime pivot
# vivid dew wtf

Apple finally discovered that they can display a prompt instead of things mysteriously not working or closing to the home screen

shut stag
#

i am a noob when it comes to this shit, anyone know how to fix? ping me

#

@heavy kernel i blame you

#

so just delete this folder?

#

that worked

#

thanks

undone nest
#

never ever had that happen to me

#

how tf.

heavy kernel
shut stag
neon jungle
#

Can somebody help me compile and test if I'm doing my theme right(FIrst time making one and unjailbroken so can't compile or test)?

#

Its the top folder on this github page

#

It should just change the calendar and calculator

ornate hamlet
#

MacOS can compile for arm64e

neon jungle
#

Idk I probably could on linux but idk how

ornate hamlet
#

No you cant on linux

neon jungle
#

then impossible for me I guess

ornate hamlet
#

What are you on rn

neon jungle
#

15.0

ornate hamlet
#

Do you have a desktop computer with you rn

neon jungle
#

Yeah, windows and linux

ornate hamlet
#

Damn no mac?

neon jungle
#

Nope

ornate hamlet
#

Ill do it

#

So how do I compile this

#

I see no Makefile

#

or autotools script

neon jungle
#

or is it outdated

ornate hamlet
#

certified programmer moment

neon jungle
ornate hamlet
#

found your DEBIAN folder

#

lol

#

i only see two png files

#

is that expected

neon jungle
#

It's a test

#

for if it compiles and works, once I do that I can add the rest

ornate hamlet
#

theres nothing to compile

neon jungle
#

Well close enough

ornate hamlet
#

you cant "compile" a png

#

its more like bundling

#

and yes you can do this on your linux

neon jungle
#

It says to compile the theme into a deb

ornate hamlet
#

yea

#

thats the linux part

neon jungle
#

But bundling makes more sense

ornate hamlet
#

what linux distro do you use

neon jungle
#

Debian

ornate hamlet
#

perfect

#

you git clone your repo to your linux

#

then cd into it

#

run dpkg -b Ai-Icons/

#

and thats it

neon jungle
#

Oh, thanks, I thought cause every else said it needed like ios or arm flags idk

ornate hamlet
#

however your control file is invalid

#

i made a PR on your repo

neon jungle
#

Thanks, one last thing are these depends actually needed or are they just examples

ornate hamlet
#

im not sure

neon jungle
#

Hmmm probably naming of the app id bundles

#

Ok I changed it, this might work

ornate hamlet
#

Ill check it out in a bit

#

What are these

tepid olive
ornate hamlet
#

com.mojang.minecraftpe

#

should i regex out them

rapid mirage
#

if I want to package my theos tweak into an IPA, should I use IPA Patcher, or what's recommended

ornate hamlet
#

i just use sideloadly

celest quiver
#

to inject deb/dylib

rapid mirage
#

sweet sideloadly looks perf

lime pivot
restive ether
#

no you should display all of them, give the user the freedom to completely destroy their phone

#

on that note does zebra hide base structure? that would be a good one to scrub out also

lime pivot
#

think zebra 2 shows it so I need to filter it specifically

#

that or, like, fix zebra firmware to set the tags on them properly

#

or whoever owns those packages

restive ether
gentle grove
#

I despise Gir

ornate hamlet
#

better than bloo

indigo peak
#

get some bitches

ornate hamlet
#

Naw i need colorful icons

tepid olive
rapid mirage
#

I'm having issues decrypting an IPA using the latest commit of Clutch, is there something else I should use instead, and anything I can run from an M1 mac rather than needing to decrypt on my phone?

ornate hamlet
#

no you cant decrypt it from your mac, that's the whole point

rapid mirage
ornate hamlet
#

I’m not sure then

neon jungle
neon jungle
ornate hamlet
#

K

#

Invalid deb

neon jungle
#

Huh

ornate hamlet
#

Use gz conpression

neon jungle
#

Is that a flag?

#

So dpkg -b -Zgzip

rapid mirage
#
Zipping Golf Blitz.app
Failed to find address of header!
Error: Failed to dump <Golf Blitz> with arch arm64

2022-06-14 14:24:39.093 Clutch[1132:15925] failed operation :(
2022-06-14 14:24:39.093 Clutch[1132:15925] application <NSOperationQueue: 0x107d371b0>{name = 'NSOperationQueue 0x107d371b0'}
Error: Failed to dump <Golf Blitz>

2022-06-14 14:24:39.094 Clutch[1132:15925] failed operation :(
2022-06-14 14:24:39.094 Clutch[1132:15925] application <NSOperationQueue: 0x107d371b0>{name = 'NSOperationQueue 0x107d371b0'}
FAILED: <Golf Blitz bundleID: com.noodlecake.ssg4>
Finished dumping com.noodlecake.ssg4 in 11.6 seconds```
ornate hamlet
#

arm64e

restive ether
restive ether
rapid mirage
#

is there an alternative to Clutch that I should be using?

restive ether
#

fouldecrypt

#

appdecrypt

restive ether
#

gzip, xz or lzma

#

i’m pretty sure xz is the better of those 3

restive ether
#

maybe i don’t know about that one

neon jungle
#

Here

#

@ornate hamlet

restive ether
#

why are you sending icons as a deb anyways

neon jungle
restive ether
#

well i don’t know what you’re doing

neon jungle
#

This guide

restive ether
#

oh you are making a theme

#

i wasn’t sure what you were doing

#

never mind then

neon jungle
ornate hamlet
#

Sus icon?

ornate hamlet
#

com.apple.Magnifier

#

Case sensitive

neon jungle
#

All my current icons

ornate hamlet
#

Lmao

#

WHERES REDDIT

neon jungle
ornate hamlet
#

Cant forget SETTINGS

tepid olive
neon jungle
rapid mirage
#

I can't get appdecrypt, flexdecrypt, or fouldecrypt to work

#

I am going to try compiling fouldecrypt w libkrw support

#

I keep getting mmap errors

ornate hamlet
tepid olive
ornate hamlet
#

Is there a way i can make it so the pull to refresh doesnt start immediately after pulling? For sileo you have to pull a certain amount before it refreshes

#

@grave sparrow

#

I did

#

No results

rapid mirage
#

do i need to build it w liberios or electra instructions?

#

and it supports 14.8?

faint lionBOT
#
bfdecrypt

bfdecrypt for iOS 12/13/14

Author

level3tjg

Version

1.3.3-1

Price

Free

Bundle ID

com.level3tjg.bfdecrypt

rapid mirage
#

cool

neon jungle
ornate hamlet
#

Cant censor in video

#

Piracy moment

hasty ruin
#

batchomatic

native dune
hasty ruin
#

:troll”

#

programmatically?

#

Or storyboard

#

I’ve only ever done it with storyboards

#

I never really bother with laugh screens tho bc 99% of my apps are just for demos or smth

#

so no need to polish

#

L

neon jungle
neon jungle
#

Might be that you are using filza to install it rather than sileo

#

or I messed up somehow

neon jungle
rapid mirage
#

cool my theos-jailed tweak worked

#

but I had to make the package w/o codesigning and use iOS App Signer

restive ether
neon jungle
fervent verge
#

export THEOS_INCLUDE_PATH := pathtodir

#

is this how y’all add a custom include dir to ur project

rapid mirage
#

also this worked perfectly

fervent verge
#

That’s what I did at first than I started exporting stuff from common.mk since that wasn’t working

native dune
#

i set up the mirror

#

now i need to make the script autorun

ocean raptor
#

Cron

native dune
#

'tis what im doing

#

should i just do every 12 hours

#

or 6 hours

ocean raptor
#

6

native dune
#

alr

#

done

#

i can’t remove the procursus repo in sileo

#

guess i have to edit the file

#

and you can download stuff nice

#

it’s pretty fast too

restive ether
native dune
#

lmao what

#

is that the procursus server

restive ether
#

or it’s some random server in germany i forget

ocean raptor
#

That's funny

ocean raptor
#

Given to us for free by Mac stadium

restive ether
ocean raptor
zenith hatch
#

w🕳some

native dune
native dune
#

alright

#

i need to find something to do with it

#

ig i can set up a Monero node lol

zenith hatch
#

capt when bs

#

am i good

#

idk am i

#

jk i would say im not bad

#

whats up

#

launchscren file storyboard, edit that, add whatever into it

#

huh

#

you put a path to a storyboard file iirc

#

then you add whatever shit you need

#

ok i gtg sleep, exam tomorrow

#

gn

primal perch
#

gn

native dune
#

gn

hasty ruin
#

messaged him 6 minutes after this and he’s just gone

#

side note: he revised for the wrong exam HEHEHEHA

primal perch
ocean raptor
#

@lime pivot why is gitlab's dark mode so ugly

primal perch
#

@ocean raptor why is linux's source code so ugly

indigo peak
#

@indigo peak why are you so ugly

ornate hamlet
#
class HomeTabViewController: UIViewController {
    
    let refreshControl = UIRefreshControl()
    let tableView = UITableView()
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
        self.title = "title"
        
        navigationController?.navigationBar.prefersLargeTitles = true
        
        //setup tableview
        view.addSubview(tableView)
        tableView.translatesAutoresizingMaskIntoConstraints = false
        tableView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
        tableView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
        tableView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
        
        tableView.refreshControl = refreshControl
    }
}

why does the refreshcontrol immediately refresh

#

it still doesnt work

wicked summit
#

I like to think so, why?

#

You want a launch screen?

#

Why though? Launch screens are non-Apple-y

#

I can't think of any stock app with a launch screen

#

Are you loading something significant during launch time?

#

Then a launch screen is no good

#

Makes life easier too

#

With iOS 16 you can use Color.gradient

#

You can still do it sub iOS 16

#

Just not as concise implementation

#

If you're using UIKit

#

CAGradientLayer

#

SwiftUI has Gradient

#

No Swift?

#

😔

#

No Swift -> no bitches

#

But Swift performs better than objc

#

Ok

#

True

#

Swift be like "I actually need to know what type of variable that is"

#

Instead of just accepting my nil

#

Average if let user versus average force unwrap ! chad

wicked summit
#

__bridge

#

true

#

why even use swift then

#

Code in assembly exclusively

#

UI in assembl

#

Y

#

here's the trick

#

write your program normally

#

compile to ASM

primal perch
#

a thing in msvc

wicked summit
#

then publish the ASM source

#

as if you wrote it in that

primal perch
#
int main()
{
  __asm {
    xor eax, eax
    ret
  }
}```
#

only 32 bit tho because microsoft

rain falcon
#

fucking up my liver

faint timber
rain falcon
#

okay daddy x

ocean raptor
#

arm64e cringe

wicked summit
#

👍

primal perch
#

@restive ether

#

amd64 > arm64

rain falcon
ocean raptor
faint timber
#

its on gif trending

rain falcon
#

i bent her spine

#

me too

wicked summit
#

Bro?

rain falcon
#

lonelyscreen bruh

wicked summit
#

Step 1

#

Get some bitches

rain falcon
#

bitchless scoop....

lone bronze
#

quickplayer

primal perch
#

every argument against x86: hurr durr its bloated

lone bronze
#

copycat

restive ether
rain falcon
#

sike

#

im moving up by u daddy

#

ill beat ur ass

#

what state bro

#

damn im gonna be in NH

lone bronze
#

lol i just see a bunch of messages from capt... who you talking to 😂

ornate hamlet
#

im in vc

lime pivot
ornate hamlet
#

yessir

lime pivot
#

what

#

as of like a week ago

#

UX design on that is absolutely awful

#

should display the chat by default and only join voice with another button click

#

not click the big button to join voice, click the tiny overlay icon to open the chat

ornate hamlet
#

zefram

primal perch
#

zefram

lime pivot
#

zefrom

tepid olive
#

Sup nerds

lime pivot
#

nerd

primal perch
tepid olive
#

Ghepsoba

primal perch
#

gm

tepid olive
#

Gm

lime pivot
#

I'm not sure if he's ghepsoba right now

primal perch
#

i am not soba

#

jk im not an alcoholic like ren

tepid olive
#

Wtf

primal perch
lime pivot
#

oof

#

shots fired

tepid olive
#

Shut up korbius

primal perch
#

or jynx tbf

#

@rain falcon alcoholic

lime pivot
#

it's korbin time bitch

tepid olive
primal perch
#

KORBIUS

#

the gangs almost all back

#

we just need scoop and shmoo

tepid olive
#

Scorp quit

lime pivot
#

what happened to shmoo

tepid olive
#

Also I'm only here for apple exec events @primal perch I don't even log in with this account ever

primal perch
lime pivot
#

huh yikes

#

hope he's ok

primal perch
#

i think so

#

but honestly no idea scoop was the closest person to him that i know

#

and scoop got no indication

steady nest
#

no idea mate sorry

naive kraken
#

ipc_port->ip_thread->task maybe?

tepid olive
#

Gm @tepid olive

rain falcon
primal perch
#

so much ultra

undone nest
#

skorp

gentle grove
rain falcon
ornate hamlet
faint timber
restive ether
#

amfi my love

ornate hamlet
#

what are the requirements for advanced dev

rapid mirage
gentle grove
#

this is so true'

#

all the staff have advanced dev

#

is that rightg

#

that doesnt seem right

ocean raptor
#

I agree, it's terrible

#

I was told I'd get advanced dev when I make a rootless strap, which I've already done

#

@restive ether 🙄

restive ether
#

wonder why that happened

#

couldn’t have been because the guy who was supposed to do it wasn’t doing it

ocean raptor
#

Nullpixel do anything challenge (IMPOSSIBLE)

#

Nullpixel don't take credit and don't have a superiority complex challenge (IMPOSSIBLE)

cursive rampart
#

capt for advanced developer

pearl sail
ocean raptor
#

Balls

#

Piss

primal perch
primal perch
#

step 1

#

know the people in charge

#

i’m senile yet i have it

#

back room dead anyway tho

ocean raptor
restive ether
#

yeah dog

ornate hamlet
cursive rampart
#

capt

pearl sail
rain falcon
#

nfr

pearl sail
rain falcon
#

no bro work tomorrow

pearl sail
#

not alcoholic then

rain falcon
#

f

indigo peak
#

should i make a ips crash log parser

primal perch
#

only if you can do it in c

indigo peak
#

like convert the apple one to the way cr4shed handles it

#

thats all i got so far

indigo peak
#

trust

#

no scam

#

is there a list of all the device identifiers like iPhone14,5 and its official name like iPhone 13

ornate hamlet
indigo peak
#

ty

gusty pelican
#

@cursive rampart campaign for my advanced dev

indigo peak
cursive rampart
indigo peak
#
Date: 6/7/2022 4:32 PM
Process: Calculator
Bundle id: com.fiore.calculator
Device: iPhone 13, iOS 15.1.1
Bundle version: 1.0

Exception type: EXC_CRASH (SIGABRT)
Exception codes: 0x0000000000000000, 0x0000000000000000

Loaded images:
0. /usr/lib/dyld
#

okay what else needs to be added

gusty pelican
#

@indigo peak what are you writing

indigo peak
#

a crash log parser

#

because the apple ips are dumb

gusty pelican
#

whats apple ips

ocean raptor
#

in 15 they changed the format to a json thing

indigo peak
#

and i wrote a shit python script for it

#

anyone have any app crash ips's they have that they want to send

#

for testing

gusty pelican
#

What’s wrong with Jason

#

JSON

indigo peak
#

hard to read

#

i think

ocean raptor
#

well, it's not prettified JSON

#

it's compact

gusty pelican
#

Oh

#

Wouldn’t a pretty printer be easier

ocean raptor
#

yes, tell that to apple

indigo peak
#

but since each ips is i think different from the rest

#

im just gonna smack everything into a try catch

gusty pelican
#

They probably have a reason for it

#

There’s probably something deep down that can’t read it pretty printed

indigo peak
#

trust the process

ocean raptor
ocean raptor
gusty pelican
#

I’m saying legacy code that hits a newline and doesn’t know how to interpret it

indigo peak
#

is that dumb enough

ocean raptor
ocean raptor
ocean raptor
ocean raptor
gusty pelican
#

There’s legacy shit in this OS I’m sure of it, there’s no way a developer at Apple would be like uh yeah I don’t want to pretty print this JSON

#

Who doesn’t want pretty JSON

#

Besides legacy shit

ocean raptor
gusty pelican
#

Pretty printing isn’t tough though, it’s not like they’re encrypting it they’re just adding a super small extra step

#

If they wanted to gatekeep they would encrypt it

ocean raptor
gusty pelican
#

I agree

ocean raptor
#

it's not that deep

#

they just don't

#

not for some dumbass reason like legacy JSON parsers

#

it's literally just like that to mildly annoy devs

gusty pelican
#

I’m just saying there’s probably some 2005 code that depends on a log not having a newline and the path of least resistance was just not pretty printing it

#

It’s easier to tell your devs to deal with something like that rather than rewrite some legacy code base that hasn’t been touched in 15 years

ocean raptor
gusty pelican
#

it’s just the thoughts I had with the material I was given ¯_(ツ)_/¯

ocean raptor
gusty pelican
#

Yeah I mean that definitely could be an oversight, I guess I don’t know how much error logging happens in the background of iOS like you guys do

#

Is it only on app crash

ocean raptor
faint timber
#

whats the m1 mac local bin path?

gusty pelican
#

Hmm yeah I don’t get it

#

/usr/local/bin?

faint timber
#

well homebrew moved to /opt for some reason I assumed its gone?

gusty pelican
#

I don’t imagine it got deleted, that’s a Unix folder

faint timber
#

@grave sparrow is it still used by developers?

ocean raptor
#

can ghidra load iOS 16 kernelcache?

gusty pelican
#

^^ not sure why homebrew ever loaded things into /usr/local/bin in the first place

#

Doesn’t seem practical for that directory’s purpose

lime pivot
#

now, it’s definitely just a relic of how things used to be

#

the canonical install location on ARM now being /opt/homebrew

#

in general since we got much better build tools like cmake and pkg-config, using a known path is no longer necessary

naive kraken
#

I just briefly looked at some structs dumped from 12.1 macOS kdk, so no

primal perch
#

ip_messages has a thread_t reference in a union but it looks situational

#

rip

raven monolith
#

i love

#

setting up theos

#

this is my own fault for getting a usb internet adapter

lime pivot
viral linden
#

somehow it is possible to unpack cheat.deb so that there are source files?

faint timber
#

machine code doesn't contain any source code

#

needs to be reverse engineered

#

also a deb is just an archive package of other files

#

just extract it

viral linden
#

:-:

faint timber
#

that doesn't make any sense

viral linden
#

I just want to steal somebody's code

faint timber
#

I just explained it to you

#

since you don't understand, you shouldn't try unless you want to actually learn

faint timber
viral linden
#

there is all code in dylib

faint timber
#

yes machine code

#

you need to reverse engineer it

#

theres no actual source code

viral linden
#

there is none but you can decode it

faint timber
#

send the deb many people here know how to RE

serene ridge
#

💀

faint timber
#

listing strings ain't shit

viral linden
#

No this file

faint timber
#
App Store

‎The legendary "Standoff" is back in the form of a dynamic first-person shooter!
New maps, new types of weapons, new game modes are waiting for you in ths incredible action game, where terrorists and special forces going to engage the battle not for life, but to death.

Incredible features are waitin…

serene ridge
#

what

viral linden
#

I need Please

#

@serene ridge

serene ridge
#

what

viral linden
#

I neeed source

#

How to re

native dune
faint timber
#

omfg they made all the code inside one function lmfao

viral linden
#

:/

viral linden
#

Eh bro

#

Come

weary heath
#

works for me

indigo peak
viral linden
viral linden
viral linden
weary heath
#

Turning off your pings would be a good start

viral linden
#

ok sorry

#

I will obey

#

what should i do next?

tidal atlas
#

Did you make this?

viral linden
#

or what I did?

tidal atlas
#

Nvm

viral linden
#

I bought a source but they tricked me

tidal atlas
#

You can’t post debs that are not yours or allowed to be reposted

#

By yours I mean you developed it

viral linden
#

I didn't know but I'll do anything

tidal atlas
#

Learn ida I guess

viral linden
#

I will have courses after the holidays

#

I want to be a programmer in the future

#

I admire you

tidal atlas
#

Ok good luck

viral linden
#

Ty 🤓😜

thorny marsh
#

with no effort you can re all apps written in python trol

viral linden
#

how?

gentle grove
#

You can obfuscate them

zenith hatch
#

ew

viral linden
gentle grove
#

That's completely unrelated

zenith hatch
viral linden
gentle grove
zenith hatch
#

ok&?

thorny marsh
viral linden
gentle grove
#

And i think you can decompile the pyc files if that's what you got anyways

viral linden
#

i only have a deb file

gentle grove
#

What's in it

#

Does it have Python

#

They would probably distribute the py script files which has the source

viral linden
gentle grove
#

what

viral linden
#

Sorry my english is bad

thorny marsh
#

and a tweak would never have python files in it

gentle grove
#

Where's there python involved

viral linden
#

👍🏻

indigo peak
#

tweaks could have python

thorny marsh
#

me?

viral linden
#

you know what happened to the billy?

tidal atlas
#

Gotta learn when to let it go

viral linden
#

What?

#

I don't know what to do, usually the invitation gives nothing

#

Im stupid

thorny marsh
viral linden
#

Oh sorry no billy

#

Biba

#

Sorry

thorny marsh
#

they still here

#

what u talking abt lol

viral linden
#

you know what i would have to do to get the source?

thorny marsh
serene ridge
#

how was a compiler compiled without a compiler

gentle grove
#

the original one being written by hand

viral linden
viral linden
gentle grove
#

what are you trying to do

tidal atlas
#

Man still…

#

If you don’t have a computer you can not re a deb

gentle grove
#

I am confused

#

what is re a deb

tidal atlas
#

Reverse a deb for source code

serene ridge
gentle grove
#

oh

#

reverse engineer

tidal atlas
#

That’s what I’m saying no pc = no re

gentle grove
#

Or regular expression troll

thorny marsh
#

ez

gentle grove
#

that's regex not re though

serene ridge
#

bro has no computer and tryna reverse a deb

gentle grove
#

Go reverse a string

#

abcde

#

edcba

viral linden
#

:/

thorny marsh
#

reverse deb to bed

#

time to bed

viral linden
#

then you won't help me @gentle grove ?

gentle grove
#

How am I supposed to help

viral linden
#

I can let it go if you don't want to

thorny marsh
#

nobody can help you @viral linden

viral linden
serene ridge
#

💀

thorny marsh
#

🤦🏼‍♂️

serene ridge
#

🤦‍♂️

viral linden
#

I was ripped off at $ 10

thorny marsh
#

cope

serene ridge
#

L

viral linden
#

i just want source but i don't know what to do

tidal atlas
thorny marsh
viral linden
#

Im Loser

tidal atlas
#

No idea who that is but ok

#

Where did the deb come from

viral linden
#

and how much would I have to pay you to give it to me? @gentle grove

gentle grove
#

I don't have it

tidal atlas
#

Man nvm

serene ridge
#

bro paid $10 for the source

gentle grove
#

I didn't write the tweak

thorny marsh
#

how can we tell them

serene ridge
restive ether
#

nerd

tepid olive
#

why won't theos find this damn framework, it's clearly there

#

ld: framework not found SpringboardServices

serene ridge
#

I tried to compile iboot from source troll

tepid olive
serene ridge
#

it was missing "iphoneos_internal" sdk

tidal atlas
thorny marsh
tidal atlas
#

Yea but they left now

serene ridge
thorny marsh
thorny marsh
tidal atlas
#

Fr

thorny marsh
#

@serene ridge

serene ridge
#

dk what im gonna do with it tho tbh

thorny marsh
#

follow the guide

serene ridge
#

i will but LATER LATER

serene ridge
#

why do i keep getting this crash log whenever i compile a browser or etc with xcode

#

Termination Reason: DYLD 4 Symbol missing

restive ether
#

it would seem you are missing a symbol

serene ridge
vivid dew
#

trolling

zenith hatch
#

trolled

primal perch
#

remote process or vc

#

or gay sex

primal perch
#

true

gentle grove
#

x protocl is 38 years old

#

and xorg is 18 years old

restive ether
#

xwayland is obviously the best and totally ready for production

gentle grove
#

its actually fine

#

its just using wayland itself that'ws the problem,

hasty ruin
gentle grove
#

true

hasty ruin
primal perch
#

same with x11

#

it has no security flaws

#

and is perfect

gentle grove
#

yeah

tepid olive
gentle grove
#

Most modern Linux desktop

primal perch
#

true

tepid olive
gentle grove
gentle grove
#

nice

lime pivot
gentle grove
#

Thanks

lime pivot
#

I'd sure hope it's backlit

#

it's not a game boy

gentle grove
#

lmao

#

I put that on there when I was little

#

probably like 6 or 7 ears ago

primal perch
lime pivot
gentle grove
#

Wtf

primal perch
#

KORBUIUS

#

wtf kirb isn’t friend

lime pivot
#

friendo

primal perch
#

true

gentle grove
#

KORBUIUS

#

wtf kirb isn’t friend

wicked summit
#

gm

gentle grove
#

Gm

granite frigate
#

how do you make preferences for a tweak

#

oh okay

#

u did that?

gentle grove
#

if anyone can find some actual documentation on how to self host dalle mini i'll run it on boba.best

rapid mirage
#

how can I make a deb that just adds a couple custom lua scripts to the cylinder reloaded script folder

#

also how can I set dependencies for a tweak

#

in orion or in theos

#

should I just read a guide on creating debian packages

restive ether
#

you just read debians control file guidelines

rapid mirage
#

cool

#

i'm learning towards the second option but all are feasible

grim sparrow
#

whichever you want

weary heath
#

cydia.bongs.rip/repo

vivid dew
#

what is "cydia"

indigo peak
#

saurikware

#

a bong is something stoners are addicted to

#

like scoop

#

wtf bro

vivid dew
#

ratioed by ogre battle 64: person of lordly caliber

indigo peak
#

@vivid dew accept my friend request or you're a plagiarist

vivid dew
# indigo peak <@92022121919680512> accept my friend request or you're a plagiarist

Translation lyrics: https://tinyurl.com/y7g65xaf

Anime: Yagate Kimi ni Naru / やがて君になる / Bloom Into You
English lyrics: boredmelly
Sung by: Yuu Koito (Yuuki Takada) and Touko Nanami (Minako Kotobuki)
Editing: wooz
Editing inspiration: https://tinyurl.com/yb388hxc

I've blasted this song ever since I heard it and I love it

▶ Play video
indigo peak
trail venture
#

ima make something that interacts with neofetch to change ascii image with ease
instead of doing --ascii and specifying file ill make it have a library of files and a simpler choice can be made
later tho

tepid olive
#

Lmaooooo

#

Brother how much simpler can it be than just specifying a file

trail venture
#

and gonna add a randomizer in it as a option

#

plus its just gonna be a python script

native dune
#

accept my friend request or you’re a communist

#

oh wait

#

you're already on my friends list

indigo peak
#

what sf-symbol would be good for a graph

#

that is preferably in iOS 13

#

im just gonna do function