#development
1 messages · Page 448 of 1
also don't paper hand the second its red
FR


wtf google no
Fun fact, google search results are usually based on your past searches.



hmm
@lime pivot hello sir i have a newterm issue for you 
if you press the keychain icon twice it murders the keyboard


i also somehow managed to crash the shell in the process too 

gm


@lime pivot when are you cudi's verse?
1-line iPad top bar is hot
yes
yeahhh… I don't know how I achieved that
I had it working until I broke it sometime before release
it's still so cool that you can close the last tab on iPad and the app just, fades away
hello, anyone in here interested in reversing IOS kernel?
and or just looking for vulns within XNU base kernel and trying to port it over? or do you guys not really look for vulns just writing software for post jailbreak devices?
I think I'm r3tarded
For some reason I can't think of a way to pair up text from an array
{1.100.2, 23465343, 1.100.1, 46535334, 1.0.03, 24353454} I need to sort that^ Need to sort these into pairs, first two in their own array, 3 & 4 in their own array & so on. It's either too late or im special. Any ideas?
loop using a for loop, get the values via indexing into the base array and put them into the seperate arrays. implement the checks for when you loop over each index and separate those firstArraySet(baseArray[0],baseArray[1]), secondArraySet(baseArray[2],baseArray[3]), thirdArraySet(baseArray[4],baseArray[5])
@midnight leaf
@novel mulch I dunno if I can do that since the array number changes each time. {1.100.2, 23465343, 1.100.1, 46535334, 1.0.03, 24353454} could have 50, so 25 pairs.
dynamic array? lol
i prolly need one of those for loops with the ++. I havent used one of those in years haha
Why not just a for loop with incrementing by 2 each time and stopping at len - 2, creating an array from elements i and i+1 each time?
^^
for (uint i = 0; i < len - 1; i += 2)

^ yes thats one of those for statements I despise
I'm webscraping a website for AppStore++ and getting versions and the download id from it. It was already hell getting the download id and versions, & I dont think im thinking clearly since I'm sorta sick
anyone in here fucked with libimobiledevice? writting some interesting stuff with that. its gr8
writing*
Indeed, very neat software
mhm, i just got into the IOS game. was disassembling checkra1n and seen calls to it because i was curious how they caused your phone to enter recovery mode then starting seeing references to different function calls from that library.. looked into it..great stuff lol
seeing your role list you have "checkra1n" @lapis vessel, were you involved with development?
Nope the roles are a bit misleading, anyone who wants checkra1n news can sign up to that role
ahhhh lol
checkra1n itself is misleading
when you go to jailbreak, the button presses don't reset your device
they are doing some trickery to do it via usb
I previously thought something like that required serial
I guess not
yes, exploits DFU mode. the packet sent will contain a ptr in memory. the pointer gets free'd when the connection is canceled. but, they don't NULL out the pointer so its dangling which then the pointer will point to whatever you put in SecureROM allowing unsigned code execution
not what I said
or meant
when the device is in recovery mode its somehow reset. the buttons you are pressing aren't actually doing the reset
yes, the device is in recovery mode. you'll hold more buttons while in recovery mode to enter DFU mode.
and to enter recovery mode pre button holding. they issue lockdownd_enter_recovery();
yeah
its reset
lol
the buttons aren't resetting it
its not resetting it, its just recovery -> dfu
I thought it was only possible to reset the device via serial
it is
DFU will allow connection to serial for loading
but its in recovery
Im not even remotely talking about the exploit
i know....LOL
somehow, I guess through magic, checkra1n is sending a reset command to the device via usb, I thought that was only possible over serial lightning cable, I guess not. Its easy to assume the buttons are doing the reset to enter dfu, they are not
the part in bold is what I was really trying to say
but after recovery mode the device has to be reset to enter dfu
what is doing the reset
the button combination, but its required to be in recovery mode prior to entering DFU
nope
the buttons enter dfu after it has already been reset
checkra1n itself is resetting the device
i literally gave you the output of what its doing lol
thats just entering recovery
i don't think limd can enter dfu by itself so it's probably at a lower level of the usb stack as @faint timber said
yeh it doesn't
the button combo enters dfu
but the button combo doesn't do anything from recovery
that makes no sense, how does the button combo not enter DFU
it works from a reset state
okay, enter DFU without the button combo
idk why yall don't understand
you have to enter dfu immediately after the device turns on
thats what the buttons do
do you know what DFU mode is
no u are just not listening to me
yeah that would make sense bc the checkra1n DFU button combo didn't work for me when I manually entered recovery for something else
its impossible to explain what I am saying
its not doing anything crazy
not sure what the point of this discussion is lmao
you guys can literally disassemble checkra1n and see everything. its not obfuscated at all
lets forget about dfu for one second
@nimble parcel can you reset the device over usb
im not the right person to ask about stuff lower than the userland/maybe the kernel so you probably know more than i do about this
that sounds like a special kind of nightmare
yep
bughunting, hacking
even with exploits there is still one demon, sep
LOL
i was legit confused about why you called sep a daemon for a sec until i re-read that
in other news guess who got JIT working on non-jailbroken iOS 14.5
@novel mulch in general do you know if its possible to reset an iOS device via usb this is not a question related to dfu at all or checkra1n just a general question
Thank you kabir, very cool!
W
really embodying the hayden total landscaping vibe
gm
well, its possible to enter recovery mode via libimobiledevice. but, haven't looked at the internals of the call to see exactly what it is doing, so not entirely sure what it is sending over to the USB stack
libimobiledevice doesn't interact with the usb stack afaik
my guess is yes, it is possible as when you're connected you can query the devices UDID and supply that
to enter recovery
well, i mean send the command from USB to the lightening port. via supplying the UDID.
at least not directly; that's usbmuxd's job
well checkra1n has to do it so I guess start by looking there @novel mulch it happens after checkra1n calls enter recovery and after the device has entered recovery
well, when it calls that function its using usbmuxd for backend stuff. so i can look into that, the source is open.
this picture is the gist of what I do
in fact lockdown_enter_recovery is just like any other lockdownd command in that there's nothing special going on at the usb level
its just talking with lockdownd correct?
yep
what i'm getting at, when using libimobiledevice its using usbmuxd for communicating over USB from the host to the device
well we would already be in recovery'
so no lockdown
unless lockdown is recovery
idk
<key>Request</key><string>EnterRecovery</string>
interesting
yes idrc about entering recovery, known about that for 4-5 years
care about usb reset command
nah lockdownd is a confusingly named daemon which is basically a gateway to other services on the device
^^^
gm
plus it implements some stuff on its own
i was confused when i first learned about it lol
doesn't at all sound like what its used for
there is an iboot command called reset
also, you can look at the iphonewiki about lockdownd. and there is some work that was released on reversing the actual binary from vault7 leaks
so I'd assume that is how checkra1n is doing it
irecovery send command reset
then because device just rebooted the button combo will work
the dfu button combo only works after a fresh reboot
why not just sniff the packets if you wanna know @faint timber
i haven't look tooooo much into it. i was wondering how the device entered recovery mode via checkra1n beginning process and found out about libimobiledevice. thats what i was looking into it. and yea
if you reset from recovery the button timings are less
you can do that as well
@nimble parcel idrc just made a random observation and he was the one reversing checkra1n
only for a certain aspect, not the whole thing
libimobiledevice is a lot of fun
yeah it seems like it, i'm currently going to use it for other things
Im the one that reversed the sep exploit when it was obfuscated only for it to be released oss a week later
@nimble parcel @novel mulch
wasn't it always open source?
i thought there was a talk on it too
at defcon or something
axiomx has stuff about it
but hikaried
on his github
does the syslog tool in libimobiledevice work for ULS or just ASL?
he was the one who found it no?
isn't asl dead?
pretty much, but idk if libimobiledevice has been updated for uls
i think it supports it
great!
not 100% sure though
what work do you normally do? @nimble parcel
I mean idevicesyslog spits out a ton of stuff and most Apple internal clients seem to have moved to ULS so clearly it somehow supports it
without debugserver or...?
nice!
i can't go into the details rn but it's entirely on device
idevicesyslog was the first thing I tried when socat died in iOS 13 @lapis vessel been working ever since
Riley said on 14.5 you can just connect debugserver for a moment to launch the app and it will stay active even if you disconnect
also theres limneos oslog tool
but that sounds even nicer
this server is pretty dope lol
i sit in qwerty's IRC (one of the checkra1n devs) and its quiet in there for the most part
haven't tested it but I wonder if this is yet another "bug" Apple will patch
afaik in earlier versions as soon as the device disconnects from debugserver the debugged app crashes
theres a checkra1n discord lol
all at this point, ASL is gone
sorry my bad


ASL is gone 


better
although I would note there's seemingly zero clients that support the filtering Console.app does, which is far more than just a fancy grep as there's tons of metadata behind each log message, and there's also activities/signposts that show in a separate view
I don't expect that to be hard to reverse since it's just a lockdown service after all
@faint timber wouldn't surprise me lol, theres a discord for everything it seems lmao
actually a pretty nice place though
yea
although i always put it before the implementation and not the definition
so idk if it still works like that
doesn't make a difference would it?
yea true

yea
yup
yea
yes
true
Hey guys is there currently a snapchat tweak for ios? I wonder if like back in the day people are able to send fake snaps, I know it got blocked at one point.
not sure, but it may not have been able to find the .dylib
not sure, but it may not have been able to find the .dylib
aight
maybe you forgot to compile for arm64e or something
why even use theos
Sometimes theos doesn’t compile for arm64e automatically, it’s weird
add ARCHS = arm64 arm64e to the top of your makefile

what does theos compile for by default?
armv10
Depends on your sdk
and armv69
armv420 even
mfs be like armv7 arm64 arm64e
like stfu i'm a programmer, not an architect
(this is your cue to laugh at my hilarious joke)
plain arm64 (and armv7 I think)
Depends on your sdk
@twilit jungle 


Yeah and you'll always know which line to add new features to
im still looking for how to make tweaks for ios i mean i am still trying to find out new features if u have any advice let me know please?

getting my day together shit 1
ok sileo dev
when you said deleted repos
i thought u meant like your repos
tru
swiftui is not really swift though
Lol it is, Saying SwiftUI is the same as Swift is like saying Obj-c is the same as C.

Swift is better because of the type safety it provides at compile time but most swift developers don't utilize it to its max potential if at all.
Thanks for proving my point
Unexpectedly found nil while unwrapping an Optional 
no the type safety is good
but swiftui is j a framework
objc is not a C framework
It is technically

Welcome to the club, if you could just go to the end of the line that would be appreciated.
sadly the retain count on that one is still greater than 0.
hey babe, i think we have a strong retain cycle
i just can't forget about you

what are some more ios dev pickup lines

optionals isn't the only thing i'll be unwrapping tonight
hey, can i load my d (lib)?
@tepid olive @twilit jungle @wicked summit @grave sparrow gm

can i get root access to you?
are you a daemon? cuz you're constantly running through my mind
you're gonna make me SIGCUM
What would be the best free software to make icons for my theme be? I use paint.net right now but it looks shit
c'mon babe let's stay in the pool, don't wanna release you
paintNET is pretty powerful and sufficient for that purpose if you’re just starting out. Have a peek at GIMP too btw.
In the end you won’t get around Photoshop et al. imo, but your experience & expertise dictates how powerful a tool is, not the tool itself necessarily
@shadow trout
Thanks
I messed with GIMP a little in the past
I just thought something was off about this kinda
Apart from the rounded corners on the inside used in comparison to the outer rounding, the rounding in general, missing symmetry, it’s okay
base 6 bro
smh
I think it’s called sexadecimal
The apple icon only has 4 numbers
it's senary
sexadecimal is correct yeah
bottom looks missing, also top display shouldn't be same color as buttons
explain the joke
I think this is the wrong comparison and start tbh, start with the basics like spacing, color science & schemas and getting to know common design approaches
This is not so bad now
Yeah
better
fuck is ctrl?
Just clones it
yep
print("Fuck objc tho")
echo joemama.swift :troll~1:
joemama.swift 

@tardy narwhal @vivid dew https://cdn.discordapp.com/attachments/688121419980341282/735375481096110100/video0.mp4
mood
Still need to fix some things but its pretty good
^
@twilit jungle sir
where is your link
for pointer to pointer to pointer
this is the correct one
wait no this #development message

How can I change theme colors with snowboard?

damn, discord message IDs don't seem to be predictable so you can't make an infinite loop
without editing

lol
@twilit jungle You diamond handing GME?
Is my Theme folder structure right? ```NotQuiteDarkMode\Library\Themes\NotQuiteDarkMode.theme\Info.plist

#themes would know more about that.
It works
@twilit jungle Yesterday was stressful, was negative 8K but im positive again.
true... 33% down to 50% up lol
Yo does anyone know what tweak the first dylib i just saw this tweet n curious if it’s malware or what
bro are you using phantom still 🗿🗿🗿
No?
snapbreak
oh then idk wtf that is
But i cant seem to get rid of it

i’m pretty sure that’s just phantom maybe the postrm didn’t work
I got rid of it
Manually deleted it from library/mobilesubs-/ and that folder banner that
Named *
It was snap break
^ha

i’m good at this
i didn’t even know if snapbreak deployed the random dylib name trick or not
Isn’t that really a old version too 
SMH you can just downgrade if you accidentally update it...
how to get banned 101
Never got banned like that
Btw yo smart ppl i got a question is it possible to decompile snapbreak dylibs cuz i wanna mess around with the code
not really to the point where you can mess around with the code
did you used to work on android side of things?
also please never do that
only decompile dgh0st tweaks
yes please, only mine no one else's
I need a small loan of million dollars to test that daemon, can you please provide the funds?
ye one sec
lemme get my buddy to help u out
@twilit jungle hey bro, can you float me a million dollars


gmed coming soon
it will hack your bank account just to buy gme for you
if not enough funds it’ll hack your credit

no hacking required, the daemon already knows your sign in info
ghost has no credit

Need some help if anyone could!?!?
I just set up a repo with a theme that I designed the theme installs fine on Filza but I get this when I try to install it in Cydia any idea on why I’m getting this
yo shoutout to libimobiledevice for being a bitch to compile for windows
What?
don’t fret, because windows loves you
cc/ @plain sedge if you haven’t seen this
🙏 tybg
cramming SHAtter into idevicerestore+irecovery because limera1n broke like 3 years ago on windows 10
everything is a bitch to compile on windows

everything windows is a bitch to compile on windows
I'm going to fucking squeal
as long as you compile statically you can keep some sanity
you know what bro i'm just gonna edit these shady ass binaries i got from some site idc idc
the second you start trying to dynamically link you might as well go to a mental asylum
bro i make wii homebrew wtf is a statically linked
i am convinced the person that did the static futurerestore for windows did not sleep for several days
if only windows nt had an actual Unix subsystem that isn’t Cygwin or WSL
it had one but they removed it for some dumb reason
mingw 
mingw false
use cygwin guys

mingw worked
früh

i personally think society would be much better if windows was not bitch

that's about all i know how to say in russian 
cyka blyat
blyat
nande
🙏


pog
weird libimobiledevice windows download i got works with default apple drivers
one i compiled doesn't
with DFU mode
i am stumped
When I try to make a repo in Silica I get this error.
Silica Compiler 1.2.2
Traceback (most recent call last):
File "index.py", line 225, in <module>
main()
File "index.py", line 51, in main
tweak_release = PackageLister.GetTweakRelease()
File "/mnt/c/Users/zoome/Documents/Projects/Silica/util/PackageLister.py", line 55, in GetTweakRelease
with open(self.root + "Packages/" + tweakEntry + "/silica_data/index.json", "r") as content_file:
FileNotFoundError: [Errno 2] No such file or directory: '/mnt/c/Users/zoome/Documents/Projects/Silica/util/../Packages/NQDM/silica_data/index.json'```
I made a index.json file and then it gives me a malformed error
is it a json decode error?
nvm I found the template
your json file was prob missing a comma somewhere
It's still giving me the issue. here's my json file
{
"bundle_id": "com.isaiahangnakak.notquitedarkmodee",
"name": "Not Quite Dark Mode",
"version": "0.1-Beta",
"tagline": "A simplistic, glyph-based theme.",
"homepage": "https://isaiahangnakak.github.io",
"developer": {
"name": "Isaiah",
"email": "zoomer589@gmail.com"
},
"social": [
{
"name": "Twitter",
"url": "https://twitter.com/AccurateIsaiah"
},
{
"name": "Website",
"url": "https://isaiahangnakak.github.io"
}
],
"sponsor": {
"name": "Blank",
"email": "Blank"
},
"section": "Themes",
"pre_dependencies": "",
"dependencies": "com.anemonetheming.anemone","com.spark.snowboard"
"conflicts": "",
"replaces": "",
"provides": "",
"other_control": ["Tag: role::enduser", "SomeOtherEntryToControl: True"],
"tint": "#fc00c0",
"works_min": "8.0",
"works_max": "13.0",
"featured": "true",
"changelog": [
{
"version": "0.1-Beta",
"changes": "First Release that stinks honestly."
}
]
}
and whats the error you were getting?
Silica Compiler 1.2.2
- Configuration Error! -
The package configuration file at "/mnt/c/Users/zoome/Documents/Projects/Silica/util/../Packages/NQDM/silica_data/index.json" is malformatted. Please check for any syntax errors in a JSON linter and run Silica again.```
whats up with line 27
"dependencies": "com.anemonetheming.anemone","com.spark.snowboard"
it doesnt end with a comma and or its not in []
seeing people call package ids "bundle ids" 
dont bother using malloc
int8_t data[0x60000000]; just use this global and youll have plenty of memory

why malloc at all signal(SIGSEGV,SIG_IGN);
use that and make your own malloc implementation that just returns an offset in the data array

true but unironically
void *malloc(int size)
{
static uint8_t data[0x60000000];
static int offset = 0;
void *data_ptr = data + offset;
offset += size;
return data_ptr;
}```

i’m pretty sure this is wrong
wouldn’t just make depend resolution freak out
yeah it will
true but unironically
get some bitches

Any widget modder here? I need some help.
Idk what yall call it
I just modify widgets
And want to know how do I add lines to XenHTML widgets
@grim sparrow
Oh
Nothing helps on the webs
I may be open to change scripts but for now, as a noob I am only changing Style.css
no one uses that garbage
What garb?
.
XenHTML
anything that isn't assembly or machine code
Oof. I use Xen a lot
It is useful for setups...
And I’m trying to make a cool one, but I need to add some lines to the widget....
Its HTML ofc he has sauce
Yeh... I just went to the directory...
Yeh, I know... I just don’t know how the f I add lines. Do I edit the css file or the html file?
Or even the scripts folder...
So, I have studied other widgets and I know that to add lines my code in the css file needs to start with #L1 {
But for some reason when I add that it doesn’t change a single thing
idk that anyone here will be able to help much with actual widget creation
at least i can't
So, I’m pretty much alone?
well try to find someone who has xenhtml experience
Oh yeh. Widget study session coming up next weekend
lol
@tepid olive
My experience is only like, editing css
And Stuff Folder....
But thanks for the link
I just need to add a line... that is just there
oh so you just wanna edit it?
oh
you can make a box, apply width and height
and add a border-left and border-right
w3schools provides really basic stuff, what you do with that knowledge is entirely on the creative side
styling is more a designing thing rather than coding per say..
Lol. Just now I realised how fucking stupid I am! HTML... websites... websites are htmls

Fr
enjoy
I could’ve just searched basic website code first.... but thx anyways
does anybody know how to get libimobiledevice to compile with support for the apple USB drivers on Windows
can someone tell me why w3schools makes my computer go fucking BRRRRRR

why do you have the developer role
???
!!!
what have you developed?
yo momma!!!!
python shell script wrappers?
i have developed

terminal cancer and brain damage
thats not something you should joke about
terminal cancer and brain damage
yes true i shouldnt joke about that
they are real problems and it was insensitive of me to use it in that context


?
too bad we only take shit out of context
woe
dghost is the kind of c++ dev to do int cum{}
true
definetely not

and im the type of python dev to do os.system()

true
@lapis vessel sorry for ping, but can you add support for flow on iPad... it’s sort of broken ngl....


solution: https://developer.mozilla.org
The MDN Web Docs site provides information about Open Web technologies including HTML, CSS, and APIs for both Web sites and progressive web apps.
False

I told you its not my pfp, its just your mind playing games

Atleast you got voices, my head is dead silent, even after I put a few worms in there
@solar pendant wrong channel and no, sorry
I probably want to smash my head
I spent time learning how to do integer math, comparison, and for loops in zsh
hey guys want some group?
Want sugma?
hey guys. can someone help me understand how can i use this framework https://github.com/mikaoj/BSImagePicker in order to have multiple photo selection in my tweak?
as of now - i am presenting ordinary image picker with single selection
multi selection is available in the new PHPickerViewController
but i want ios 13 support
How can I get amfid's task port? @lapis vessel

proc_listpids to find its pid and then task_for_pid
Ok then I think you want to find the task struct kernel address by traversing the kernel_task linked list, then build a fake task port in the same way old exploits used to to get tfp0. You might have issues with PAC though, I'm not sure.
yeah data PAC is the problem. Thanks for explaining
Mono it’s time for your medication i think 


googled and apparently its different and depends on other stuff
Jetsam monitors memory use and kills applications which are not good memory citizens. A good memory citizen is an application which is willing to give back memory when asked and does not keep asking for more memory. In order to be a good memory ci...
dont trust quora tho
ye
true
log how much
legit no idea what the hell is wrong with my libimobiledevice compile why it no work
classic
read libimobiledevice as @gentle grove
what
yeah my debugging is like printf("first\n"); printf("second\n");
NSLog(@"cock");
...
NSLog(@"cock 2");

what
__CUM__
Hey guys, I created a tweak that I want to run on my old iphone 24/7, and am now trying to have it open the tweak on startup (maybe the phone resprings for some reason). I am able to open the tweak from a theos tool by doing int result = SBSLaunchApplicationWithIdentifier(identifier, FALSE); but I was not able to figure out how to unlock the lock screen, I've tried this:
[[objc_getClass("SBLockScreenManager") sharedInstance] unlockUIFromSource:0 withOptions:nil];
SBLockScreenManager* sharedLSM = [NSClassFromString(@"SBLockScreenManager") sharedInstance];
[sharedLSM unlockUIFromSource:0 withOptions:nil];
But I don't think running this from a tool context works.
who made windows USB this way
why are you making the tweak that way instead of using logos and stuff
primarily because I need a UI, but more honestly because I didn't know better when I started
why no daemon doe
trolld

Fuck 1
Fuck 2
Fuck 3
Fuck 4
One time i turned in an assignment with slurs in the debug logs
lol
lmao
yea thats why i use cum and shit as my printfs
i forget a lot so its better that than slurs
Nope its all the same
printf("weed\n");

wtf

two of m

petition ban actual development in #development
can someone help me understand how to integrate this multi photo picker in my tweak? https://github.com/mikaoj/BSImagePicker
i compiled it with swift builder so i have libBSImagePicker.dylib
fkn annoying i am trying to do this crap for 2 days
@peak quartz how important is it to use that image picker?
lol
i believe there's an image picker made for tweak developers
i mean unless the user is picking 20 images, picking multiple at the same time prob won't matter that much
well, I want the user to have that option to choose multiple images
as for now it can select only 1
which is the ordinary image picker apple provides
Pretty sure apple's API allows that as well
yep, single selection is apple api
but multi-selection is not
No it can select multiple
apple definitely has an API for picking multiple
not on iOS 13. I heard that on iOS 14 theres something new called PHPickerViewController
do you have that name?
is that so complicated to integrate this into a tweak?
it has OBJ-C external methods
no you should be able to do this
so you compiled the dylib you'll need to get that on the device
prob have it as a second package
thats for later stages
as for now i just want to see if that works
i manually trasnferred the dylib to /library/mobilesubstrate/dynamiclibraries
and also included the headers in /home/theos/include/ folder
which lets me compile the BSImagePickerController
so the tweak is compiling just fine, added in the makefile the line XXX_LIBRARIES += BSImagePicker
but the tweak wont load
i guess its something to do with the dylib, i dont know what
did you check console log?
didn't mean to reply to that
but did you check console log?
from my experience when the tweak does not load up and it uses external libs/frameworks its because it cant find it
what can i check?
Can someone here on iOS14 check if a directory exists for me?
It might be private API but image picker can handle multiple selection
do you have a mac?
if so usb connect your phone and check logs
as far for my google searches they all said "you need to implement it yourself"
search for the name of the dylib
the dylib does not goes into the mobile by himself
Yes because google searches are going to be for what you can do with public API
i manually transfer it
any google searches will say that bc they won't know or recommend the private APIs
oh.. ok. as far as reversing something that is using multiple-selection photos i couldnt find any
if the dylib fails to load for whatever reason, there'll be an error message in the logs
let me check
one sec
testiculars
If you understand how UIImagePickerController public API works then just looking at its header should be enough to figure out how the multiple selection part can be used.
Nobody here has a iOS14 jailbroken device? lol
i have an ios 14 non jailbroken device
same
-(BOOL)_allowsMultipleSelection; whats that?
try enabling it
everyone hates unc0ver 14 that much?
Thats a getter method
pfff right
not to mention its likely an internal method
true
-(void)_setAllowsMultipleSelection:(BOOL)arg1 ;
since its a public class im willing to bet theres a better way

maybe ill inherit UIImagePickerController and just hook on those methods?
so nvm use the internal shit

or when i allocate imagepicker ill just call those methods
i just trusted google this much
theres no way that its that easy
It is
i went through your exact process of thoughts
no way apple didn't implement this for public use
oh wait, stackoverflow


What’s up fellow devs
fellow
Hey @opal hazel any reason why your dumped headers for iOS14 skips over /System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstored
What is the appstore hiding 
why are you pinging some random person who clearly isn't sparkdev to talk about something sparkdev would know?
^alot of bullshit
True true
because thats what we do in #development
@wicked summit Ya know, why would someone pretend to not be him. And his discord # is SparkDev so im assuming its actually him
petition ban yulky. ALL SAY I

Eye
"Get development advice and info here" ha. this sub went to shit.

you should purchase 
anyone know of any good discord channels where talk is actual dev advice for jailbreak dev?
no unfortunately
Lol
oh is sending server links banned
fool
@restive ether get pinged
oh yikes.

i have been summoned
@restive ether
i have 10 

And on THIS episode of attempting to sell a fake untethered, no physical-access-necessary jailbreak to the Russian government so I can buy GME...
can someone help me find headers for ios13 at least for iOS13. like this: https://github.com/lvchangye/iOS-Header/tree/master/appstored
for appstored specifically.
massive has them on his header viewer site
link me I dont know who that is
appstoredaemon.framework moment
Your iOS Header Servic
Maybe im dumb but i cant find them on there either.
he had appstoredaemon.framework, but not appstored which is separate

There is 12.4 appstored on his github
@twilit jungle @wicked summit thank you guys. - (void)imagePickerController:(UIImagePickerController *)imagePicker didFinishPickingMultipleMediaWithInfo:(NSArray *)infos
POGGGG

Not mine but yes
servic
@midnight leaf hello. Under appstoredaemon.framework you should find what you seek
appstored stuff should be in there, clues in the name
not enough people ask questions there
related to jailbreak development
that could be swayed though over time
i agree

photoshop

how'd this man get to day 2
Its suppose to be day 4
day 400 of gme will go up any day now
false
you can also use ScreenShotX by JunesiPhone with built-in mockups and custom ones
unfortunately good code means nothing if people aren't learning about and being given incentive to buy your product, the easiest is just putting effort into your marketing materials
sk1llz
see how easy it is
yep
please fix the positioning of the screenshots in the frame
too much for me
ERROR: control file '/Users/r0wdrunner/Desktop/projects/situm/.theos/_/DEBIAN/control' is missing a Version field at /Users/r0wdrunner/theos/bin/dm.pl line 77.
Can someone help me out on this

















