#development

1 messages Ā· Page 235 of 1

hasty ruin
#

i dont get a 404 but sileo gets stuck at -1

#

and i noticed there's no Installed-Size in your Packages file

#

are you using dpkg-scanpackages?

rocky oriole
hasty ruin
#

how are you generating the packages file?

rocky oriole
#

I compared it with rugmj's and maxine's package file though it was basically identical

indigo peak
# rocky oriole I made it manually

i have this in an update.sh script so whenever i put a new .deb in my debs folder i can run update and it will automatically generate Packages and Packages.bz2

rm Packages Packages.bz2
dpkg-scanpackages -m ./debs > Packages
bzip2 -fks Packages
rocky oriole
#

and now trying it I also don't get a 404 but get expected size 5834, got 5880 instead so I probably just put the wrong size?

hasty ruin
#
bzip2 -c9 Packages > Packages.bz2
gzip -c9 Packages > Packages.gz
xz -c9 Packages > Packages.xz
zstd -c9 Packages > Packages.zst
lzma -k Packages
lz4 -q Packages```
#

🧌

rocky oriole
#

expected size 5834, got 5880 instead

#

should I just change the size to 5834? the arm build of it is 5834, while arm64 is 5880

indigo peak
#

please take all nonsense off topic to #general

blazing warren
#

shit

bad channel

sorry

indigo peak
#

@rocky oriole works on my phone

rocky oriole
#

let me try again

indigo peak
#

could just be sileo caching and old deployment of the github page

rocky oriole
#

yeah

#

still not working on my phone

#

i'll charge my SE to see if it works on there

indigo peak
rocky oriole
#

Cleared but now it says 6 KB of -1 byte

#

it said this earlier but I dismissed it because it would change into the expected size 5834, got 5880 instead when I retried

#

uh

#

it just worked on my SE 😭

rocky oriole
#

ok it worked on my main device with zebra

faint timber
summer totem
#
INSTALL_TARGET_PROCESSES = SpringBoard


include $(THEOS)/makefiles/common.mk

ARCHS = arm64 arm64e
THEOS_PACKAGE_SCHEME = rootless

TWEAK_NAME = widecameraauto

widecameraauto_FILES = Tweak.x
widecameraauto_CFLAGS = -fobjc-arc

include $(THEOS_MAKE_PATH)/tweak.mk

%hook AVCaptureDevice

+ (AVCaptureDevice *)defaultDeviceWithDeviceType:(AVCaptureDeviceType)deviceType
                                       mediaType:(AVMediaType)mediaType
                                        position:(AVCaptureDevicePosition)position {
    // Only modify behavior for the back camera and video media type
    if ([mediaType isEqualToString:AVMediaTypeVideo] && position == AVCaptureDevicePositionBack) {
        // Always return the wide angle camera for the back
        return %orig(AVCaptureDeviceTypeBuiltInWideAngleCamera, mediaType, position);
    }
    // For front camera or other cases, use original method
    return %orig;
}

%end

This in Tweak.x

Name: widecameraauto
Version: 0.0.1
Architecture: iphoneos-arm64
Description: Automatically use wide camera!
Maintainer: berget
Author: berget
Section: Tweaks
Depends: ellekit

This is what I have, I had problems getting it to compile as rootless but not it finally did when I used "make do THEOS_PACKAGE_SCHEME=rootless"

In makefile it is set too but its still compiling as rootful without the make do command.

#

Although the tweak itself doesn't work, I want all apps to use the wide lens back camera instead of the original one since I dropped my phone and it stopped working, the front camera still works so that one I jsut want to passthrough normally.

magic hazel
#

still havent gotten dev access

#

wtf

wind ravine
#

how would i initialize this object?

#

the data providing class doesnt have an init function

#

ios 17 just has a regular init without a data providing param

radiant idol
#

It would still have a regular init because it inherits from NSObject

wind ravine
#

it says i cant

#

'*** +[CRSUIWallpaperPreferences<0x27c437d08> init]: cannot init a class object.'

magic hazel
#

I just paid apple again and it still did jackshit

#

im charging back

#

this is bs

wooden yarrow
#

you need to find a class that impls that

#

(or I guess you could try and implement it yourself idk)

magic hazel
wooden yarrow
wind ravine
#

i found the provider class

wooden yarrow
#

and that has no init?

wind ravine
#

'*** +[CRSUISystemWallpaperProvider<0x27c437c18> init]: cannot init a class object.'

#

nopw

#

ios 17 was so easy why did they add a data provider for ios 18 wah

#

hopefully it doesnt require entitlements

wooden yarrow
sonic totem
magic hazel
sonic totem
#

And what did they say

magic hazel
#

nothing

#

lmao

sonic totem
#

Threaten legal action if you have the proof of purchase

#

I’m sure that’ll speed them up

magic hazel
#

i do have proof of purchase but how the fuck am i supposed to threaten legal action

#

i can't afford a lawyer

sonic totem
#

Just say you’ll escalate the situation further and take legal action as you have proof of purchase and haven’t received your developer license

#

You don’t have to do any of that

magic hazel
#

I'd also like to avoid pissing them off if possible as my chosen field of work is software engineering but idk I'll wait another day and if nothing happens then yeah I'll have to do something

wind ravine
#

bc i didnt allocate for any of the other stuff

wooden yarrow
#

I mean unless you can directly pass the class object as a data provider (in which case you don't need to init)

#

yes

wind ravine
#

that wouldnt happen right?

#

wait im stupid

#

i didnt alloc before because i was calling a shared object that was already allocated

wooden yarrow
#

skul

wind ravine
#

how do i allocate

vivid dew
#

gen alpha doesn't know how to allocate objc objects D:

wind ravine
#

in swift?

wooden yarrow
#

why did that send

wind ravine
wooden yarrow
wind ravine
#

im using selectors

vivid dew
#

perform alloc on the class object

#

then perform init on the return value

wooden yarrow
wind ravine
#

oh im really stupid

#

obj().init basically

wooden yarrow
#

yes

wind ravine
#

i am overthinking all of this

#

nope still doesnt work

wooden yarrow
#

exact same error?

wind ravine
#

it wont compile

wooden yarrow
#

what

wind ravine
#

Cannot call value of non-function type 'NSObject' for obj() and Static member 'alloc' cannot be used on instance of type 'NSObject' for obj.alloc()

wooden yarrow
#

what why do you already have an instantiated NSObject

#

wtf is obj

wind ravine
#

i dont

#

obj is the objc_getClass

#

this is what im trying to do

wooden yarrow
frank fossil
wind ravine
frank fossil
#

just declare it in the bridging header

wind ravine
#

for what?

#

i dont have any objc code

frank fossil
#

I mean objc_alloc() is not available in public headers

#

Just add id objc_alloc(Class cls);

vivid dew
#

class objects aren't NSObject

wind ravine
#

how do i initialize AnyClass?

wooden yarrow
#

why would you initialize it

#

just cast to it

wind ravine
#

i am confused

#

ok it no longer crashes but still doesnt set the carplay wallpaper on ios 18

wind ravine
#

would it be worth it to decompile the carplay settings application?

magic hazel
#

lmao swiftui has z fighting

#

thats crazy

#

actually its liquid glass

#

lmao

proud geyser
#

can i use my karva sign cert files in xcode if yes how??

magic hazel
#

I mean possibly but idk why you would

proud geyser
#

and then app stop works

manic forum
#

i spent an hour trying to figure out why my networking code wasn't working

#

turns out waydroid wasn't connected to the internet

harsh junco
manic forum
#
  • the operation isn't too important so it just fails silently if something's wrong
#

i spent 30 minutes putting throw Error("1") at random places

queen ruin
#

Wassup my favorite French šŸ

kind herald
#

favorite
french

thorn ether
#

Anyone know how to install an IPA file in Trollstore with terminal?

pearl sail
harsh junco
thorn ether
hollow idol
slim bramble
slim bramble
orchid fulcrum
#

swift is a c wrapper

#

fr

magic hazel
#

wait

#

guys

#

can you not change your developer name

#

am i gonna have to dox myself to publish an app

#

😭

wooden yarrow
magic hazel
#

yikes

radiant idol
#

@kind herald

manic forum
magic hazel
#

ig

#

technically im under my dads name with a stub acc since im underage and apple told me to do that

tepid olive
#

@magic hazel alternatively some people open a shell company to hide their identity

magic hazel
#

yeah ik

#

its fine

#

i want my employers to find the apps i make anyways

pine holly
#

go by a pseudoname until you sell out to a major coorporation then rebrand everything

#

or right before for resume purposes

manic forum
#

or at least both apple and google require your full legal name

faint timber
#

Clearly they don’t know the audacity of internet beings

acoustic imp
manic forum
faint timber
#

It’s a crime to be using winrar

slim bramble
#

fr

narrow sequoia
#

im trying to make an ellekit tweak to inject into tccd and allow tccd to fully function on macos without sip. for some reason it just isn't injecting into tccd no matter what i do, i've checked with lldb with no luck. i know it works because liji got it to work with his own injector im just not sure why it isnt working with ellekit. any help would be greatly appreciated

robust radish
#

it’s probably on the injector’s blacklist

narrow sequoia
#

just checked the ellekit source and it seems as though tccd is not in any blacklist

magic hazel
#

It does its job lmao

tepid olive
#

use ZIP or zstd+something like a sane person

pallid totem
#

issue fixed

manic forum
orchid fulcrum
# narrow sequoia im trying to make an ellekit tweak to inject into tccd and allow tccd to fully f...

Your amfi is disabled right ? Afaik tcc not working is a result of that rather then disabled SIP but not sure. Anyway somebody did exactly what you want in hack different and what they patched was changing the platform binary bit for non-platform applications. Because when amfi is disabled everything is set to "platform binary" and that breaks the tcc prompts

edit: turns out thats what you were doing as well lmao

fading shell
#

<@&355174844205367317>

#

^ alfie

manic forum
manic forum
#

i'm starting to like kotlin

cosmic briar
#

kotlin is just java but with cringe syntax

faint timber
#

was it even neccessary? or some dude was bored one day

visual meadow
#

did you ever find any good solution for this

tepid olive
#

should i switch my c project’s build system to use a shell script

#

my makefile sucks

faint timber
#

embrace cmake

orchid fulcrum
#

But i don't remember it working fine at all

thin sand
#

Please help me to fix these issues

grim sparrow
#

idk what ur issue is

#

why are you concerned about having old certificates installed

thin sand
#

I would like to updates and get rid of this

vivid dew
#

i would not trust any certificate authority from baltimore

thin sand
#

Thanks. I will delete it from my Mac

grim sparrow
#

in fact, you should leave them

thin sand
#

I have tried to remove or delete those two root certificates, but there is no option to delete them. When I downloaded the Apple root certificate, I received the following error message (see attached screenshot). Please advise. Thank you in advance — I truly appreciate your help.

grim sparrow
#

it is actively blocking you from it because its a terrible idea

#

and I truly think you're either clueless or a troll, you've given no good reason for even wanting to do this

rocky oriole
native dune
#

Schizophrenia

thin sand
thin sand
#

if its does not interfere with Xcode then I don't mind to leave as is

grim sparrow
#

The trust store is maintained by Apple for you

#

you shouldn’t ever interfere with that

thin sand
grave orchid
#

What is the preferred environment for Orion

#

xcode or vs

cloud yacht
#

If you have Xcode it probably works nice due to better integration but you can make do with any text editor

manic forum
#

i spent an hour taking app screenshots only to realize the aspect ratio was wrong trolldisappointed

reef trail
#

<@&355174844205367317>

manic forum
reef trail
light owl
#

Well there isn't anymore

manic forum
#

i hate vim

thin sand
#

Why does Xcode taking 72 hours for the approval? How do I expedite this?

reef trail
#

think they're referring to app store or testflight approval times?

dim yacht
#

Looking for someone who knows about Apple App attest and can help me bypassing attest bans. Going to compensate for his help. Let me know

rocky oriole
rocky oriole
thin sand
#

I have a question: How can I change the location to save my provisioning profiles to the Library/MobileDevice/Provisioning Profiles directory? Currently, I have to manually copy all my provisioning profile files from Users/Library/Developer/Xcode/UserData/Provisioning Profiles.

#

IOS App Signer app default directory is Libraray/MobileDevice/Provisioning Profile

grave orchid
indigo kraken
thin sand
rocky oriole
sonic totem
#

<@&355174844205367317> posted across multiple channels and looks kinda sus

trail nimbus
#

it even was his own one 😭

sonic totem
#

What was it

trail nimbus
#

the token

sonic totem
#

I assumed some crypto wallet address or something

trail nimbus
#

nah

#

his discord login token

sonic totem
#

???

trail nimbus
#

yeah no idea why he sent it 😭

reef trail
hasty ruin
#

yeah send it to mine instead

sonic totem
#

I do not own any crypto

light owl
#

Can i'm get it back ??

wooden yarrow
hexed knot
#

please ban

#

or arrest

#

or k

#

oh yeah

#

let me in to that

wooden yarrow
hexed knot
#

no someone sent a porn discord link

wooden yarrow
#

damn gorn over money i see

granite frigate
#

hey id join

reef trail
#

(this is a joke for ppl who are stupid)

light owl
magic hazel
#

What do you have to do to get developer role out of curiosity

reef trail
#

or a jb ig

#

idrk lol

magic hazel
#

I’m not a tweak dev but I’ve got a moderately sized game that I’m publishing to the App Store

reef trail
#

i'm guessing it's for jailbreak related stuff

magic hazel
#

Interesting

#

I had assumed it was just iOS development in general

reef trail
#

šŸ¤·ā€ā™‚ļø

#

the role doesn't do much

magic hazel
#

Nah i just like the orange

#

I don’t like purple

reef trail
#

we only have special perms in this channel and #showcase

magic hazel
#

🫠

reef trail
magic hazel
#

well if anyone knows what the requirements are lmk

#

in the meantime

#

anyone decent at swift and avaliable to have a brief lookover of like 300-400 lines of code

#

i wanna know if ive done anything glaringly poor in my model

wooden yarrow
#

if you're devving enough you get dev role

#

atleast that's how I understand

magic hazel
#

whats modmail?

#

ic

wooden yarrow
magic hazel
#

do i have to provide my codebase or smthing

wooden yarrow
#

yeah usually will be asked for proof

magic hazel
#

k

#

its private rn but i can share for review purposes

hexed knot
magic hazel
#

ic

frail cedar
#

submit it to modmail

#

we got it for making a tvOS file manager

magic hazel
#

Icic well that’s useful info

granite frigate
#

what does xpc stand for im pretty curious

granite frigate
#

:3

hexed knot
frail cedar
#

and the reason it's not called IPC is because it used to be called "X-IPC" or interprocess comms for OS X

#

the -I got dropped

#

since XPC is simpler

granite frigate
#

drop the I, it’s cleaner

robust radish
#

xpc is a type of ipc, but not the only type. that’s why it’s not called ipc

granite frigate
#

it’s all mach ports

#

😭 😭 😭

hexed knot
#

always has been

summer totem
# summer totem ```TARGET := iphone:clang:latest:16.2 INSTALL_TARGET_PROCESSES = SpringBoard i...

Hi does anyone know how to hook the camera? I dropped my phone and my back camera & flashlight isn't working, although the wide lens is. Some apps are automatically fallbacking to the wide lens, but most apps like even the ios camera app it isn't possible to select the wide lens.

I was hoping I could somehow force the wide lens to be used at all times whenever something is trying to access the back camera.

The message I am responding to was a small attempt but I have no idea what I am doing, I successfully compiled and installed it but it didn't do anything at all.

Its IOS 16.2 iPhone 12.

I can do coding relatively well I have just never worked with modifying IOS device, so if anyone could point me to relevant hooks that are worth attempting to alter that would be helpful itself.

At the moment apps seem to acknowledge that the back camera isn't working so if it defaults to back camera and I switch to front, them attempt to go back to the back camera it doesn't even attempt to use the back camera, so my small theory may be that even though my tweak might change to the wide lens camera it doesn't even attempt because it knows the back camera is broken. (So possibly the tweak would work if the camera wasn't broken)

thorn ether
bright crater
#

hi everyone, do you know the method to retrieve kernel ASLR in code on devices jailbroken using palera1n? I can find kASLR value in the jb log file, but from the code dont know how to retrieve it directly. For unc0ver jailbreak, kASLR can be queried from task_dyld_info->all_image_info_size but for palera1n it's always 0

bright crater
#

thanks @faint timber, will have a look

pearl sail
#

I now understand why it is so easy to make inefficient electron apps

manic forum
slow mica
#

is there any working classdump tool for iphone? hopefully directly on the device or from linux

pearl sail
cosmic briar
# slow mica is there any working classdump tool for iphone? hopefully directly on the device...

for regular binaries I would use classdump-c to dump classes, but when dumping classes from system frameworks from the dyld_shared_cache I use ipsw

GitHub

classdump-c: Custom macOS / iOS / tvOS port updated to work on iOS 13-16+ supporting chained fixups, can also dump entitlements now as well - lechium/classdumpios

Description will go into a meta tag in <head />

#

oh wait ig classdump-c wouldn't work on linux tho cuz you have to compile it with xcode

#

you could try classdump-dyld but idk if it still works

radiant idol
grim sparrow
#

cause thats just been my default for a long time

wooden yarrow
grim sparrow
#

I think so for some stuff

wooden yarrow
#

split Extracts all the dylibs using Xcode's dsc_extractor

#

yeah

radiant idol
#

therefore for example objc_msgSend($_OBJC_CLASS_UIView, "new") would just say MEMORY[0x] iirc

grim sparrow
#

ah fair

#

tbf i rely on ida for that stuff

radiant idol
#

I see, fair enough

granite frigate
#

how do I symbolicate / reverse a swiftui framework

#

cus this shit is all like mangled

radiant idol
granite frigate
#

/System/Applications/iPhone\ Mirroring.app/Contents/Frameworks/ScreenContinuityUI.framework/Versions/A/ScreenContinuityUI

#

i think in general i have no idea wtf im doing

#

just wanted to figure out how to make my own pairer / mirror app on other OSes

radiant idol
#

well first try using ipsw swift-dump

granite frigate
#

oh what the hell

radiant idol
#

lmfao

#

yeah idk good luck lmao

wooden yarrow
#

it really does not enjoy being transliterated into C

magic hazel
#

apple actually isnt too bad at reviewing apps

#

surprisingly

floral notch
#

anyone try to use this for a test harness or something like that? https://sep.lol unfortunately the tethered downgrades are not compatible with checkra1n/palera1n

crisp frost
#

You can use checkra1n/palera1n with turdus merula by doing early exit in turdusra1n and from there manually uploading the kpf/ramdisk

#

However you would also need to manually upload sep_racer if you do that

floral notch
#

sounds above my paygrade, but glad to know its possible

sonic totem
#

Alternatively use an app-based jailbreak

visual meadow
#

I've done it

#

The checkra1n one

#

You'd have to remove auto boot from its kpf tho

faint timber
gentle grove
#

they're giving developer to anyone these days

wooden yarrow
kind herald
#

because he stinks

gentle grove
kind herald
#

Sorry

gentle grove
#

I do not stink

#

this is slander

wooden yarrow
kind herald
#

wtf

#

I take showers every night.

#

And i use deodorant.

#

Do you want my deodorant serial number

#

My deodorant serial number looks like a fuckin phone number what the hell

#

Idk if i'm looking at the right thing

sonic totem
#

Call it

kind herald
#

It was your moms number

#

Ez

gentle grove
kind herald
#

Yeah a fuckin rma for my deodorant

light owl
#

Batch number is probably way smaller

kind herald
light owl
#

Yeah but youre also stupid sometimes so maybe you were reading the barcode

kind herald
#

I wasnt

#

Rule 1 buddy

#

I am not stupid

gentle grove
#

not you specifically

#

it just could be defective

#

its a thing that can happen with mass manufacturing

kind herald
#

What did you do to my deodorant

gentle grove
#

i didnt do anything

#

the factory might have not done something

crisp frost
#

Wtf boba back in rjb

harsh junco
slim bramble
naive kraken
#

<@&355174844205367317>

exotic spire
kind herald
#

my fucking discord closed while trying to ban them

thin valley
#

I was waiting for someone else to do it troll

faint timber
gentle grove
faint timber
gentle grove
#

gonna make a keyboard related section probably

#

idk what im gonna do

faint timber
#

Nice

gentle grove
#

this dude thinks github magically pushes and pulls their files without the internet

#

am i reading this right

#

Yes you read it right, it is totally offline and collaboratory as well!

reef trail
#

looks like they're just using git to store data

#

and syncing when they have internet access

harsh junco
#

@reef trail @gentle grove hear me out: git over bluetooth
Slow? Yes
Offline? Technically, yes
Ass? Absolutely

manic forum
vivid dew
#

mediumslop

sonic totem
#

Does anyone know the best place to hook SpringBoard if I want to show an alert on the Home Screen after the user unlocks their device?

frank fossil
wooden yarrow
#

could also look at what the safemode alert does

sonic totem
#

Oh yeah thanks guys!

#

ElleKit seems to just hook UIApplicationDelegate.applicationDidFinishLaunching

#

As do Substitute and Substrate

pallid totem
#

alfies version of beta alert

#

:/

sonic totem
#

No I need to hook SpringBoard in Apex to tell the user not to use Substrate frcoal

#

Well with the untether only

naive kraken
sonic totem
#

I mean I can but this is for people using checkra1n strap who then install Apex

#

and it only applies to the untether anyway, so they can always boot and then enable tweaks if they really want to, otherwise they can just install a different injection library

gentle grove
#

where do you see that text

native dune
#

its one of the images

lament mica
#

The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions

gentle grove
slim bramble
#

🤨

sonic totem
#

<@&355174844205367317>

kind herald
#

: /

thin valley
#

Mf

exotic spire
thin valley
#

I was typing

kind herald
#

I was about to ban.

exotic spire
kind herald
#

ok … and ….

#

I thought i was supposed to do all the work like a Good Moderator.

cloud yacht
#

Man I cant Belive the mods are stealing all the free money from us

marble perch
#

<@&355174844205367317> waddup

#

Wrong channel my bad

indigo kraken
sonic totem
#

Awesome thank you!

tawny stag
#

Is it possible to use Frida to intercept a network request and reverse engineer the request headers or identify the hashing algorithm used inside of an app?

wooden yarrow
#

yes

tawny stag
# wooden yarrow yes

how how can i do that? using FLEX i can only see the request but not how for example headers are formed

wooden yarrow
#

use breakpoints or sumn idk

tawny stag
wooden yarrow
#

you can see it being formed by stepping through

#

ofc you'd also need to know how to RE

tawny stag
#

what do you mean by RE?

wooden yarrow
#

reverse engineer

#

so basically being able to atleast read the C pseudocode that comes out of your favorite decompiler

harsh junco
tawny stag
#

I’m already intercepting the network traffic. What I need is to know the algorithm/method that is used to decode a responses body. for example:

b989b279eb2de1d156b0e7fb01cc45fb83651a3368ade4ef98b2fe950411085ab9bcc6d79fb1bba81c561f6d7a4dbe113fb0761c23f1a387dbefd43f59ea16c09ac261d79061ebfd68c828ec92c7f7efb90f6d0446f371cfee4d1873da5188e0d5c4e1d66c41b198fae831d82dd64d41d6433b9e0f087651531bc14b90afc545c626ddceb8775d4184c0446fe31de392594efd7a9ee98c2f8cc03a9f2b7679eab1a04a234b86f73b33b7da1eb5641ebfaa6b3090abb09b40ee7e025edad38fed

->
http://download.gaana.com.edgesuite.net/….

tawny stag
tawny stag
#

a Indian service for streaming music

manic forum
#

one app i reverse engineered was base64 encoding and reversing its data before saving it to disk to obfuscate it

#

i wish everything else was that simple

reef trail
#

that way you can just use that rather than the raw data

#

or if you have to use it detached from the app it gives you a place to look at static analysis to recreate it

gentle grove
granite frigate
#

as unknown as any

solid sail
#

šŸ‘

tawny stag
tawny stag
manic forum
#

i don't have anything to recommend, sorry

hollow oar
#

Wild

#

This is why C++ sucks

faint timber
wooden yarrow
harsh junco
faint timber
wooden yarrow
#

that is true but atleast itll fix the random double frees

faint timber
#

Meh maybe just need to run valgrind

#

But honestly turdus can replace it at this point

wooden yarrow
#

isnt turdus just for blackbird devices

faint timber
#

That’s not what I’m talking about

#

It’s more or less modded idr

#

It almost does everything Fr did

wooden yarrow
#

huh, did not look at it very close but nice to know

gentle grove
#

mineekware W

sonic totem
#

<@&355174844205367317>

gentle grove
#

with signal 9

harsh junco
#

sigkill

faint timber
harsh junco
#

<@&355174844205367317>

#

gir ocr eta wen?

#

Bruh

exotic spire
thin valley
#

Deleted yours troll

exotic spire
thin valley
#

I’d like to see you try

thorn ether
#

Does anyone know how to create an app that launches a URL scheme without appearing in the App Switcher?

I've already built one that opens a Filza URL scheme, but it shows up in the switcher. I also don't want to use the Shortcuts method since it's much slower to execute and it doesn't support transparent icons.

quaint rain
#

Snowboard does support transparent icons

thorn ether
quaint rain
thorn ether
#

which don't support transparency at all

wooden yarrow
#

how on earth am i supposed to fix this

#

how does this even happen

#

(line in question)

manic forum
#

@wooden yarrow what about [[user valueForKey:@"id"] longValue]?

#

wait that's not a thing? huh

#

there's longLongValue and intValue though

wooden yarrow
#

isnt long an int in armv7

manic forum
#

ĀÆ_(惄)_/ĀÆ

#

i think it is

wooden yarrow
#

time to remove all usage of NSNumberFormatter

flint wolf
#

guards

harsh junco
#

<@&355174844205367317>

#

oh

flint wolf
#

oh

kind herald
#

i banned them like 10 seconds ago

harsh junco
sonic totem
#

<@&355174844205367317>

manic forum
#

@modulators

quaint rain
#

@modifiers

rare cloud
#

@modrinth

vivid dew
#

<@&355174844205367317> good morning

thin valley
#

?

#

What’s the issue

hasty ruin
thin valley
hasty ruin
#

hyd

thin valley
#

Exhausted, probably going to head to sleep. Hru

hasty ruin
#

not too bad

#

just got up really

thin valley
#

Same here, but now I can’t sleep so oh well

magic karma
#

might be a silly question

harsh junco
magic karma
#

I guess that needs to be tested

slim bramble
#

@torn oriole

#

@lofty juniper

#

Who will be first hm

#

Hydrate wins

torn oriole
slim bramble
thorn ether
#

Anyone know where I can get an image that shows the exact shape of the iPhone 13 Pro Max screen, including the rounded corners and notch, that I can overlay onto another image to see how it would look on the actual device?

granite frigate
#

figma?

thorn ether
harsh junco
#

Is there a way to debug tweaks from ida? Do i simply attach to SpringBoard? frcoal

cosmic briar
#

but then have the disassembly open as reference

#

also if you keep it stopped for too long watchdog will kill it

#

so once it reaches the breakpoint I’d do whatever I need to do quickly, then do ā€œprocess continueā€ so that watchdog doesn’t kill it, and then you can set a breakpoint again somewhere else

#

it’s kinda hacky tho I wonder if there’s a better way lol

#

if you sigstop watchdogd that causes a kernel panic eventually so idk how to get around that

cosmic briar
#

oh interesting lol

#

I should’ve used that the whole time lmao

hexed knot
#

Lollll it's still filtered

faint lionBOT
#
Christian deleted a message

th0rjb

kind herald
#

hmm

hexed knot
#

I'm still a LEAD DEV for THOR jailbreak

kind herald
#

Hello i looked up your jailbreak and a porn site showed up

hexed knot
#

YES

hollow oar
#

?

quaint rain
#

And the jailbreak with the same name too

#

Learn to make better UI before you steal please

hexed knot
#

And THOR JAILBREAK is ORIGINAL

harsh junco
acoustic imp
#

nice method meta initWithIsCanonical:isGroup:isMessageRequest:isSpamRequest:isSelfThread:users:leftUsers:pendingUserIds:socialContext:isMuted:isMentionsMuted:isVideoCallMuted:readReceiptsControlStatus:typingIndicatorControlStatus:lockStatus:videoCallInfo:isFlagged:isMarkedAsUnread:isArchived:msysBasedCutoverState_DEPRECATED:inviter:lastSeenMessageIdsForUserIds:groupMetadata:inputMode:folderType:shhModeMetadata:disappearingModeMetadata:disappearingModeLocalMetadata:isCloseFriendThread:isVerifiedThread:isCreatorThread:isBusinessThread:hasFilteredMessages:isMessageRequestsLimitReached:filteredDictionaryId:violationReview:messageRequestType:themeMetadata:contextLines:responsivenessCategory:icebreakers:persistentIcebreakerSet:welcomeMessage:persistentMenu:senderReachabilityStatus:recipientReachabilityStatus:bizThreadThrottlingState:hasRestrictedUser:hasGroupsXacIneligibleUser:isXacThread:labels:isFanClubSubscriberThread:isTranslationEnabled:threadLanguages:translationBannerImpressionCount:fanClubSubscriberGroupThreadContext:bizSmartSuggestion:accountWarning:threadSubtype:rawThreadSubtype:snippetDict:broadcastChatContext:isOtherParticipantEligibleForIGAppointmentBooking:isAnyParticipant3pAPI:shouldUpsellNudge:capabilities_0:capabilities_1:adContextData:professionalMetadata:ctdOutcomeUpsellSetting:blendedThreadCapabilities:eventMetadata:threadTitle:latestExternalActivityTimestamp:takedownData:groupMemberAddMode:willXacBeReadOnly:isXacReadOnly:isPinned:pinnedTimestamp:isCreatorAgentEnabledForThread:isCreatorAIRepliesEnabledForParticipants:hasCreatorAIMessage:pbiaPageId:cutoverMetadata:groupThreadJid:incomingFollowRequestFromRecipient:customerDetails:recurringPromptType:isStale:

#

90 params 😭

grim sparrow
#

(discord upped the pin limit to 250 today)

#

thought we should have an incredible 51st pin

slim bramble
#

Finally

grim sparrow
#

ikr

slim bramble
#

Ngl, I saw a method with 250 param

grim sparrow
#

this has been in the works for a long time
Surely it was just one constant in the codebase

slim bramble
#

I think icraze or fiore shared it here

grim sparrow
#

yeah

grim sparrow
#

408 arguments

slim bramble
#

per channel

grim sparrow
harsh junco
grim sparrow
#

this is actually auto generated function name

#

by coreml

#

but still

#

its crazy

manic forum
manic forum
#

what would make this list funnier

#

is it possible to compile c++17 for templeos

harsh junco
manic forum
frail cedar
manic forum
frail cedar
harsh junco
manic forum
#

hm

harsh junco
#

no cap

manic forum
#

i'll consider it

harsh junco
manic forum
#

it's on all major platforms now, anything i add from this point onward will only make it funnier

harsh junco
#

classic macos

#

Actually fuck it, uefi

manic forum
#

fym ms-dos 😭

#

uefi sounds more doable than ms-dos

harsh junco
#

technically, it runs on top of dos

wooden yarrow
surreal dirge
#

yes

manic forum
surreal dirge
#

@surreal dirge

quaint rain
#

@surreal dirge

grim sparrow
wooden yarrow
grim sparrow
wooden yarrow
#

what do u do such that you require manual constraints for each of them

grim sparrow
#

manual constraints are typically more performant and easier to apply accessibility rules too

#

for example working with different font sizes is a lot more reliable with manual constraints

#

it allows for easier and more performant previewing

wooden yarrow
#

hm

grim sparrow
#

additionally it makes your app perform a LOT more reliable with screen sizes that resize

#

such as iPad when people add a second app to view

#

and when views can dynmically be resized base on content

frank fossil
untold marten
#

Does anyone know how to play dylib and api? I have some doubts and I wanted to take it out

visual meadow
#

Does anyone know what apple changed in ios 17 to break some things? I'm trying to boot ios 17 userspace on ios 16.5.1, but launchd fails to spawn some things:
2025-07-18 16:04:46.818216 (user/501/com.apple.telephonyutilities.callservicesd) <Error>: Deferred spawn of service failed: 22: Invalid argument

sonic totem
#

what apple changed in ios 17 to break some things

visual meadow
#

Stuff is starting

#

I'm able to view console and ssh in with usb

#

This is on a a12x ipad pro

tropic axle
#

is it possible to swizzle a C function that AppKit calls from another framework at runtime? I tried using fishhook to rebind_symbol and rebind_image_symbol but that only hooks when I call the C function, but not when AppKit calls it. DYLD_INSERT_LIBRARIES is also not viable for a production app.

visual meadow
visual meadow
#
[  364.248149]: AMFI: Launch Constraint Violation (enforcing), error info: c[1]p[1]m[1]e[1], (Constraint not matched) launching proc[vc: 1 pid: 977]: /usr/sbin/fairplayd.A2, launch type 1, failure proc [vc: 1 pid: 977]: /usr/sbin/fairplayd.A2```

[ 361.662052]: AMFI: Launch Constraint Violation (enforcing), error info: c[1]p[1]m[1]e[1], (Constraint not matched) launching proc[vc: 1 pid: 974]: /usr/libexec/adid, launch type 1, failure proc [vc: 1 pid: 974]: /usr/libexec/adid```
anyone know how to fix this, however?

frank fossil
slim bramble
#

Can hook tho

visual meadow
#

It it has it

tropic axle
slim bramble
chilly plover
#

Any frida expert here? How i can tap on Home ui element through frida at this.

Flex says this on element UI

<UILynxView: 0x118c0cc50; frame = (0 0; 299 40); layer = <CALayer: 0x60000b2280a0>>

want to tap on this

native dune
#

@vivid dew happy birthday big man

tropic axle
slim bramble
tropic axle
#

when i use fishhook to rebind_image_symbol it doesn't seem to work when AppKit calls it (but rebind_symbol works when I call it)

#

is that expected?

slim bramble
#

You must be messing something up

visual meadow
#
 "date" : "2025-07-19 14:52:57.13 -0400",
  "panicString" : "panic(cpu 5 caller 0xfffffff0266c14a4): vnode_rele_ext: vp 0xffffffe027310000 usecount -ve : -1.  v_tag = 0, v_type = 8, v_flag = 84801. @vfs_subr.c:2679```
Anyone get this panic before?
tropic axle
# slim bramble You must be messing something up

Basically AppKit makes several C calls that involve a stub, e.g. U _CGSRegisterConnectionNotifyProc, I thought that rebinding the stub in the AppKit image would work but it doesn't.

#import <CoreGraphics/CoreGraphics.h>

typedef void* CGSConnectionID;

extern CGError CGSRegisterConnectionNotifyProc(CGSConnectionID, void* callback, uint32_t, void* arg);

extern CGError CGSRegisterConnectionNotifyProcIntercepted(CGSConnectionID, void* callback, uint32_t, void* arg) {
    printf("hi\n");
    return 0;
}

extern void hook() {
    uint32_t image_count = _dyld_image_count();
    for (uint32_t i = 0; i < image_count; i++) {
        const char *image_name = _dyld_get_image_name(i);
//        if (strcmp(image_name, "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics") == 0) {
        if (strcmp(image_name, "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit") == 0) {
            const struct mach_header *header = _dyld_get_image_header(i);
            intptr_t slide = _dyld_get_image_vmaddr_slide(i);

            struct rebinding r = {"CGSRegisterConnectionNotifyProc", CGSRegisterConnectionNotifyProcIntercepted, nil};
            rebind_symbols_image((void *)header, slide, &r, 1);

            printf("āœ… Rebound CGSRegisterConnectionNotifyProc() in image: %s\n", image_name);
        }
    }
    
    rebind_symbols((struct rebinding[1]){
        {"CGSRegisterConnectionNotifyProc", CGSRegisterConnectionNotifyProcIntercepted, nil}
    }, 1);
}
sonic totem
visual meadow
#

it was old / vnode

#

I think it was because I was accidentally setting VROOT on both new and old vnode

#

But even then now that I got that figured out, it just hangs on blank screen when i userspace reboot until watchdog kicks in

naive kraken
#

I think it's generated when the target is within range for a direct jump

#

in this case there is nothing you can do really

tropic axle
visual meadow
#

this will either catastrophically fail or succeed

visual meadow
#

it failed because of data volume encryption so i hooked fcntl i shall restore again !!

#

userspace reboot !!!! and bar now !!!!

acoustic imp
#

😭

visual meadow
#

I also tried this on my iphone but instead of dualbooting i just made a fakefs

#

(posterboard fucking nuked my wallpapers)

acoustic imp
#

-# nathanfuckery šŸ”„

visual meadow
#

imma keep at this tmr im going to bed
i hope to make this functional enough to the point where i can main this

visual meadow
acoustic imp
visual meadow
#

Yeah

#

I'm just hoping it's possible to like

#

Use 17.0 with this

#

But rn many things are just crashing

acoustic imp
#

šŸ”„

visual meadow
chilly plover
acoustic imp
#

@frank fossil question, have u ever enabled/disabled this like green/red bar unlock/lock iphone debug thing? would u happen to know how to disable it

#

locked

frank fossil
acoustic imp
#

woeis , alr

#

it transfered with a icloud backup

#

from my 12mini (JB, it had it too idk how i enabled it rly)

quaint rain
faint lionBOT
#
STNuke

Disables Screen Time on the device after installing, bypassing the passcode requirement

Author

iCraze

Version

1.0

Price

Free

Bundle ID

com.icraze.stnuke

acoustic imp
indigo kraken
#

oh wait no it’s a different one

#
%hook CSLockScreenSettings
- (BOOL)showRegionsDebugView {
    return YES;
}
%end
indigo kraken
naive kraken
chilly plover
#

@naive kraken I want to tap this Home button through frida. In Flex Heirarchy the its looks like this.
But I dont know how I can achive this
The Home, products and reviews are in this tab.

<LynxScrollView: 0x1561f5800; baseClass = UIScrollView; frame = (0 0; 1024 40); clipsToBounds = YES; autoresizesSubviews = NO; gestureRecognizers = <NSArray: 0x6000061c6720>; layer = <CALayer: 0x6000061c6fe0>; contentOffset: {0, 0}; contentSize: {1024, 40}; adjustedContentInset: {0, 0, 0, 0}>

I think I have to scroll but how

tropic axle
naive kraken
#

it could be that this is part of a shared dyld_shared_cache GOT, I don't think fishhook has support for those

tropic axle
visual meadow
#

Anyone know what daemon shows the Storage full notification?

#

I think it's deleted

#

not 100% sure

high abyss
#

Hi @everyone. I have a question. I recently compiled an tweak called: Meteora (which brings back Slide To Unlock on iOS 10.3.3). I "sucessfully"(i don't think so) compiled it and installed the .deb file over Filza onto my iPhone 5c, running iOS 10.3.3

So, there is the problem. I clickde on install and then resprang my system. Then, I headed over to the Settings App and searched for Meteora. But I found nothing 😦

I tried to do this so often, but I came to the point of giving up. This thing took me more than 3 hours!!!
So I wanted to ask, If there is someone here at this discord server, to help me, by creating a .deb file of the project (compile the tweak from github) and send me the .deb file over a discord dm. For an theos SDK, I used sdk iPhoneOS10.3

Can someone help me please. I would greatly appreciate that šŸ™‚
Thanks everyone
Here is the link to the github page: Compile from https://github.com/iKilledAppl3/Meteora

GitHub

Bring back the iOS 7 - 9 Lockscreen to iOS 10! In honor of Chester from Linkin Park! - iKilledAppl3/Meteora

#

please help me. I would love to bring back this feature. And it took me so long...

visual meadow
#

why would you even attempt to ping everyone lol

high abyss
#

oh, I'm new to this. Sorry 😐

faint timber
#

Not really an excuse

#

No one I there right mind would ping 50k people at once

sonic totem
#

250k actually

rain falcon
#

@kind herald clanker

slim bramble
#

@kind herald clanker

native dune
#

@kind herald clanker

cloud yacht
#

@kind herald clanker

faint timber
#

Maclunkey

harsh junco
#

@kind herald clanker

hasty loom
#

@kind herald clanker

quaint rain
#

@kind herald clanker

manic forum
#

til windows is called windows because everything is a window

wooden yarrow
slow plover
#

How can I start with tweak dev for a specific app? (Looking to write an injustice infinite energy tweak)

My swift/cpp knowledge isn't great but workable, and ive been programming for a long time so I'm not brand new to everything

acoustic imp
#

^

slow plover
slow plover
quaint rain
slow plover
#

yup 😭

rain falcon
#

@kind herald clanker

hexed knot
pastel dome
#

Step 1

#

Stop

hollow oar
#

šŸ”„

manic forum
#

i've been trying to make a small program with the win32 api for about a week

#

i hope i never have to do this again

harsh junco
#

High Level Assembly

marsh ocean
#

@kind herald clanker

#

Fuck ios rah

sonic totem
#

<@&355174844205367317>

manic forum
elder scaffold
manic forum
hexed knot
#

Nah I like the win32 api

sonic totem
sonic totem
manic forum
#

i was going to use qt initially but i hate that the program grows to 60mb when i do that

elder scaffold
manic forum
#

:3

elder scaffold
rocky oriole
rain falcon
#

@kind herald fucking clanker

visual meadow
#

Anyone know what picks up for live voicemail on 17.0+?

#

Like is it a dedicated daemon?

acoustic imp
#

mediaanalysisd maybe idk one they added in 17 for wtv

#

idk

barren fjord
#

I'm trying to compile my tweak using the UnityFramework from the game, but I'm running into an issue where the linker can't find the UnityFramework library for arm64 architecture, even though I've put it in the right place. It's giving me a 'library not found' error.

acoustic imp
#

@visual meadow what did u use to disable watchdog i fg, its being anoying while im trying to lldb mediaserverd

#

šŸ™

light owl
#

@kind herald fucking clanker

visual meadow
#

watchdisable on my repo

acoustic imp
#

oh

visual meadow
#

its a tweak that injects into watchdogd and just disables it entirely

visual meadow
acoustic imp
#

oh

visual meadow
#

but as a tweak

barren fjord
visual meadow
#

@acoustic imp lmk if it works

#

you know it works if watchdogd isnt in process list anymore

acoustic imp
#

alr

#

@visual meadow thumbsup

visual meadow
#

nice

acoustic imp
#

lldb in peace šŸ™

hollow oar
#

Fire

frank fossil
manic forum
fading shell
#

<@&355174844205367317>

frank fossil
#

I just found a funny thing: open YouTube, play a video and unload backboardd

rare cloud
#

im gonna try it

#

curiosity killed the cat

rare cloud
#

Opencore

#

i know you needed an answer 2 years later

rare cloud
#

why fr maxine

kind herald
#

Because you replied to a message from two years ago

rocky oriole
#

Whattt

#

Groundbreaking info right here

rare cloud
#

the people need to know the truth

rain falcon
#

@kind herald clanker

kind herald
#

WHAT IS WRONG WITH YOU

native dune
#

@kind herald fucking clanker

light owl
#

@kind herald fucking clanker

frank fossil
#

audio continues playing

faint timber
#

I need a tweak like that, that actually works seemlessly and doesn't have any issues when carplay enters the chat

frank fossil
#

and if you unload runningboardd, load backboardd and then runningboardd, app still stays alive

faint timber
#

the one I have rn has some weird issues with stuff like spotify where it detects another audio is playing and pauses despite having a tweak to prevent this

frank fossil
#

Also PDFKitDumpToFile still works when backboardd is absent

robust radish
frank fossil
robust radish
#

yeah it just dumps the layer tree, CAEncodeLayerTreeToFile

Would the tree update without a render server?

frank fossil
#

I'd expect blur views (CABackdropLayer-based) to be absent from it

#

Guess what is this

lime slate
frank fossil
#

Nah

robust radish
lime slate
harsh junco
#

@kind herald fucking clanker

slim bramble
#

@torn oriole

#

@azure sail

rocky oriole
#

<@&355174844205367317>

left phoenix
#

How much memory can an app use on iphone 13 before ios kills it?

vivid dew
#

like 3 maybe 4

severe stream
#

<@&355174844205367317> scam thing

kind herald
#

Ty

severe stream
#

yw

gentle grove
quaint rain
#

Great job devs!

manic forum
#

i love naming things

light owl
#

So which one is the original

tepid olive
#

An app to stalk and spread unverified claims about men šŸ’€šŸ˜­

I’m ripping this apps data and creating an app called (BEER: Bad Ex Encounter Registry) for men to talk about women

trail nimbus
#

poor ethan

manic forum
#

also "Stop asking me this" is insane

#

the app DESPERATELY wants to tell you about "Jake"

manic forum
tepid olive
#

Just waiting for Apple to replace my logic board then ima cook up a diabolical app competitor

tepid olive
tepid olive
#

Now their ids are being sold on the black market

light owl
#

@kind herald Honestly why did you even open this channel. Is it because you're living a pathetic loser life. A life not worth living, but the thought of ending it all scares you so you end up not taking your own miserable life. Are you here to actually vent, or are you here searching for validation and some attention. Maybe even if from strangers online, at least someone noticed that you're struggling. Maybe they even care, even if just for a brief moment. Doesn't opening this channel prove that point though, for you to even consider being in this channel is a sad fate. I hope you gather enough courage to end yourself eventually. A life living in fear and regret is one not worth living. Ironic how your life is so shit and you want out but at the very last moment you run away again out of fear of the unknown. What comes after death? Is it something that really matters to someone like you?

rocky oriole
#

I forget the name

quaint rain
tepid olive
#

Their ids and photos

shrewd smelt
#

bros app isn't even out yet and he's already sharing data leaks

tepid olive
#

No the tea app

quaint rain
#

Make the app use the leaked data of the women to have pre-made warnings

quaint falcon
#

Hey guys... Unless it's a government app / banks and that sorts.. why are we uploading our IDs on them random apps?

robust radish
#

leaked IDs (the images) are not really relevant to this channel

tepid olive
tepid olive
robust radish
#

IDs leaked in a data breach are relevant to jb development?

tepid olive
#

This isn’t Jailbreak development it’s development in general rename

quaint rain
acoustic imp
#

theres gota be some rule being broken ngl

tepid olive
#

šŸ„€

acoustic imp
#

rule like 1/13 or sm

#

jus be like carful

tepid olive
#

I don’t think so I’m not attacking anybody if anything bringing awareness as to not upload your id to random apps their info is redacted in the image

thin valley
#

What does any of this have to do with the channel topic

thin valley
thin valley
tepid olive
#

For what rule

exotic spire
#

Don't push it

quaint rain
thin valley
#

Yeah not really going to have this discussion here

quaint rain
#

I would just not continue talking about it

velvet path
#

this sounds neat

exotic spire
#

Just don't send pictures of people

#

regardless of a breach or whatever

lime pivot
#

mildly psychopathic even

tepid olive
#

Bro gon get me in trouble gang

#

We can’t talk about it 😭

#

But I agree ; it’s ironic they were posting pics of men without consent and now all their information is leaked without their consent

lime pivot
#

not sure who you’re agreeing with cause nobody said that

tepid olive
#

There I fixed it

gentle grove
#

I agree you need to find some bitches

shrewd smelt
#

Your obsession with this app is weird asf and ironically validates its existence

hexed knot
#

Yeah bro ur making a problem out of nothing

#

Nobody's using that app

pearl sail
slim bramble
#

Me when I complain about Omni bootlooping iOS 17

tepid olive
tepid olive
gentle grove
#

oh i even missed the obsessing over the tea app part

#

that makes it even more accurate

tepid olive
#

ā€œFind some bitchesā€ says a lot about where your head’s at , you just repeat the same empty shit and call it advice

#

Another sheep that doesn’t understand the meaning of obsession šŸ˜‚

hexed knot
tepid olive
gentle grove
tepid olive
#

Okay buddy have a good day

gentle grove
#

i wont thanks to @pearl sail

#

rolex your domain is for sale

shrewd smelt
hexed knot
#

???

#

Gang u sent them here

#

?

tepid olive
#

Holy shit move the fuck on , I never said anything about stalking women I never posted anyone’s IDs all the information was redacted everything your saying just points out how stupid you are

gentle grove
tepid olive
rotund magnet
#

The FitnessGram Pacer test is a multistage aerobic capacity test that progressively gets more difficult as it continues. The 20 meter Pacer test will begin in 30 seconds. Line up at the start. The running speed starts slowly, but gets faster each minute after you hear this signal [boop]. A single lap should be completed each time you hear this sound [ding]. Remember to run in a straight line, and run as long as possible. The second time you fail to complete a lap before the sound, your test is over. The test will begin on the word start. On your mark, get ready, start.

hexed knot
#

Yeah, he was probably posted on that app that's why he's so upset

gentle grove
#

lets rip the people that were posted on it

rotund magnet
#

<@&558709886397972481> i develop shitposts when do i get the dev role

tepid olive
# shrewd smelt

Oh my bad you must be illiterate , you can clearly see I say ā€œto talk about ā€œ I’ve never said anything about stalk besides the fact that , that app does it

Also it’s a fucking joke

light owl
#

Ok

tepid olive
shrewd smelt
#

the hypocrisy is you calling it out for being a stalker app than claiming you're going to use their data leaks to make your own app

#

also yeah i would probably be worried for the women's who's IDs and geo tagged photos got leaked

tepid olive
#

I was saying I would take the apps structure code not personal information to make another one as a joke because this shit was clearly vibe coded

rotund magnet
#

whys this pathetic incel raging on about an app where no one was even even interested enough to rant about him on there

tepid olive
light owl
#

How are they to know its vibe coded

gentle grove
native dune
#

@shepgoba

rotund magnet
# native dune @shepgoba

As shepgoba's private counsel I have been instructed to advise you that His Holy Shepliness wishes that he not be pinged unprovoked, thank you for your understanding and cooperation going forward.

gentle grove
#

@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba@shepgoba

rotund magnet
gentle grove
#

As @shepgoba's @shepgoba I have been @shepgoba'd to @shepgoba you that @shepgoba Holy @shepgobaness wishes that @shepgoba

gentle grove
rotund magnet
#

I'm making an app to rant about rjb members (especially boba)

tepid olive
#

Your shit posts attracted the brain dead crypto scammers

rotund magnet
#

@rotund magnet send me your license so i can spam it on the platform

#

@gentle grove

rotund magnet
#

(i sent myself my license already)

gentle grove
rotund magnet
tepid olive
gentle grove
#

cloudflare says im bad security because i dont have a security.txt configured

pearl sail
gentle grove
pearl sail
#

Oh seems fine on my end

hexed knot
#

Rolex owns godaddy

pearl sail
#

fr

rain falcon
#

@kind herald clanker

slim bramble
#

@shepgoba

#

@kind herald clanker

native dune
#

@kind herald clanker

gentle grove
#

cranker

light owl
#

@kind herald cracker

tepid olive
light owl
#

Nope

tepid olive
#

Well ik what I have to do then

native dune
#

@kind herald cracker