#development
1 messages · Page 160 of 1
does bro really want it
i might still have the installer
chop chop
i def have bad sigs
Hello .
q
hey
guessing it doesn’t have arm disassembler
isnt macos ida still on like 7.0
you can copy your totally legit 7.7 decompilers to 8.3
Try the .deb 😡
will the windows ones work on macOS?
windows
still crashes
my brotha send it
@hasty ruin don’t laugh at me, laugh at NW
Yeah I am dw
may Allah bless you
Wait what
.
Send crashlog in #1084320818231787552
#unknown
chop chop litterbox
ok bud
w!!!1
POV: wine
subhanallah
subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah subhanallah
alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah alhamdulilah
Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar Allahu akbar
@ mods ^ this user is spamming
i have religious freedom
fair enough
POV : Orange role
You forgot Aaron sir
he doesn’t have the guts to do that
@snow python can I dm you about relocateme
you can
You wish
you can always dm me too (I git cloned RelocateMe)

is springboardui framework not a thing in ios 16
SBSceneView changed to SBDeviceApplicationSceneView(?)
did you figure this out
i'm trying to update the same hook
for those lurking but not responding: ```%hook SpringBoard
- (void)applicationDidFinishLaunching:(id)application {
%orig;
trying to update this ios 14 rotation popup tweak
you caught me
I’m always lurking 🗿
i mean that depends, when do you want the menu to appear lol
find my ping
I hate android development so much
I'm learning the xml method and it's just
Pain.
no no no no no non ononono
it's like if you had the worst of inline styling and you had to repeat yourself a gazillion times
why need xml
because my school is teaching xml
I wanted to do jetpack compose because i'm pretty ok with Flutter
skimmed through it and it looks kinda similar
like you nest stuff
Sorry for responding so so late but what I really want is to get the app's data directory so i can search for resource packs that have files I want to intercept the original asset with, I can figure out how to hook nsbundle myself
One of the reasons why i never got into android and windows gui dev
Markup languages are so shitty for ui
fr
i need a live offset patcher is there one thats a dylib preferably because all of the ones which are deb's haven't worked for me and i only tried one which was a deb which i cannot state but its icon is a person with a red beard and hat in front of a computer and their moto is everything IOS
anyway i need a live offset patcher that isnt theirs.
im jailbroken with seratonin.
Wdym by live offset patcher lmao
yeah ofc
but these are the same people with the funny mod menus
think of it that way
any project for reference to do this properly?
You could always use and64inlinehook but that doesn’t have support for PAC
So
dobby is an alternative ig
I don’t think dobby has support for PAC either though?
Idk maybe it does
Never used it
shadow has a dobby backend so i thought it might
i'd have to ask jjolano about that tho
Always used and64inlinehook
Also why do we use substrate over just using the objc runtime functions
Is there a real reason
oh
it does lol
(Like seriously, what’s the point of ellekit other than safe mode)
I mean I might use the objc runtime functions for when I do v2 of my in progress tweak
Because v2 of my tweak is going to use zig
But that’s after it’s finished lol
man i dmed you
logos linted is typing...
idk to make things easier
mobilesubstrate has existed for a while lol
we've just built on top of that (with better drop-in replacements sometimes)
True true
Hi devs, regardting spoofing camera. Is there a way to instead of taking a prerecorded video to spoof, to display a live deepfake video?
also don't forget swift hooking 
Well I mean you could still use objc runtime functions lol
yeah but, easier once again
damn this vcam shit easy asf
Yeah I guess so
I’m planning on making something like it but for zig
I could probably implement it all natively
Because I assume msgSend is a native C function right
ye exactly
I don’t see the purpose
ye it's in foundation
mod menus mainly
Because it is not as clear cut as you think
there are shenanigans that go on when superclasses are involved
Alright, so I could implement my own shooting stuff in Zig
Righttt
swifting hooking from asm >>>
You can see what occurs if you use the internal generator with logos
is game hacking against the rules of this discord server becuase if so its not for game hacking
but if it isnt then it might be for that
It causes recursive calling, right
No, i mean finding superclass implementations and stuff

mfw
Uh, does KrashKop automatically symbolicate crash logs
so drop the src 
anyone know what this was deprecated by
it says in discussion
u right

fr
zefram doesn’t exist
fr
its too easy, so no need to waste time
So I've decided to drop swift and switch over to obj-c and have become completely lost
the end goal is to modify the time in the status bar and this is where I'm at
#include <UIKit/UIKit.h>
@interface _UIStatusBarStringView : UILabel //Inherts from UILabel
@end
%hook _UIStatusBarStringView
-(void)setText:(NSString *)arg1 {
%orig.setText("Hello world");
}
%end
the error I get when compiling is error: member reference base type 'void' is not a structure or union _logos_orig$_ungrouped$_UIStatusBarStringView$setText$(self, _cmd, arg1).setText("Hello world");
Seeing that I try and call setText from setText looks pretty stupid in here now
You need: %orig(@"Hello world");
What does the @ do
NSStrings start with @ usually
Just to differentiate from C shit
(Because %orig is a function and you call functions with () )
True
Akthually it’s a pointer to a function that gets automatically dereferenced when you use parentheses

you just confused him more 
real
Can I use NSomparisonResult to check if a string contains a character
there's a method in NSString I think
stringcontainsstring
@tepid olive
Ok
Can I use text from -(void)setText:(NSString *text)arg1 to compare or am I not reading it right
yes
because the argument is an NSString
so you'd do something along the lines of
[NSString stringContainsString:text]
something along those lines
might not be exactly that
According to stackoverflow it looks about right
@steady nest figured out Tamarin with LLDB :D
bang
if ([text stringContainsString:@":"]) {
%orig(@"Hello world");
}``` this should be right?
Can you send your whole hook please
#include <UIKit/UIKit.h>
@interface _UIStatusBarStringView : UILabel //Inherts from UILabel
@end
%hook _UIStatusBarStringView
-(void)setText:(NSString *text)arg1 {
if ([text stringContainsString:@":"] ){
%orig(@"Hello world");
} else {
}
}
%end
Was so simple too idk how I didn’t find it before 
lldb —one-line "gdb-remote 127.0.0.1:3333"
skill issue
#include <UIKit/UIKit.h>
@interface _UIStatusBarStringView : UILabel //Inherts from UILabel
@end
%hook _UIStatusBarStringView
-(void)setText:(NSString *)text { // arg name goes outside of ()
if ([text containsString:@":"]){ // it's containsString not stringContainsString
%orig(@"Hello world"); // run original code, but replace the text argument with a custom string
} else {
%orig; // run the original code, with all original arguments (just text in this case)
}
}
%end```
that should work
I forgot containsString exists
or maybe I'm just reading the docs wrong
and stack overflow

Time to debug A6 ROM with JTAG 
Yea my plan exactly 
Are preferences going to be a huge pain in the ass
https://www.youtube.com/watch?v=iHEuM1e8V40 Definitely recommend watching this
Nvm Tamarin breaks
no way did you quit orion and start making real tweaks
congrats !!
but ARC doesn't do a well enough job
in this one part
(writing a large dictionary to a file)
causes it to run out of memory
It lasted for maybe 6 hours
obj-c is better
My c++ knowledge does not contribute much to learning obj-c though
Now I'm just rewriting the first tweak I made
ehh, a lot of it doesn't pass over but it does make it a bit easier to grasp
first I'm going to just try adding an autoreleasepool ontop of arc
note that objc++ is a thing
It definitely makes it easier to grap

if not then manual memory management it is
Is there a way to open up theos tweak projects in xcode
instead of the individual files
you can with orion
I know
But i've moved on from orion
not logos
L
there's no IDE for logos
for some reason
someone should make a Language Server for logos
So I'm just stuck without intellisense
like seriously
just fork SourceKit LSP
This is so lame
we need a clion handler for logos
turn your syntax colouring on istg
symlink to .m
That's what I was looking for
autoreleasepool didn't fix it

idk how to do that with xcode
you don't
ln -s tweak.x tweak.m
well for one, logos is a pre-processor for mutiple types including both objc/objc++ so
ok
you can probably still add support to sourcekit lsp
sourcekit lsp is open source right
not saying u can't do it it's just
has reasons
switch to objc syntax highlighting
and get the logos vscode extension
^
why are you using xcode for tweaks
so I just don't use logos
adds autocompletion for creating hooks
¯_(ツ)_/¯
I just use the substrate header
I literally just started this
__attribute__((constructor)) static void init() {
NSString *path = ROOT_PATH_NS(@"/var/mobile/Library/Preferences/com.sora.weatherwhirl.plist");
[WWPreferences loadPrefsWithURL:[NSURL fileURLWithPath:path]];
if(!WWPreferences.isEnabledTweak) {
[WWPreferences freeMe];
return;
}
MSHookMessageEx(NSClassFromString(@"SBHomeScreenViewController"), @selector(viewDidLoad), (IMP)&viewDidLoadHook, (IMP *)&ogviewdidload);
}
i don’t even have xcode installed and i write tweaks just fine
i just have the command line tools and a theos patched sdk for 16.5 and 14
I don't enjoy logos
did you install the toolchain seperately or something
I prefer doing it the old-fashioned way
i installed xcode, installed theos, uninstalled xcode, installed the xcode clt, and relinked the path so that theos didn’t complain
it works perfectly fine
that's fine
i just mean that xcode requires a bit of setup for it to work as intended
and has a decent amount of things you aren't going to use
so it becomes less practical for tweak development
Ah
imo vscode >>>
That's what I'm finding
@faint stag I have to adjust my whole codebase to use manual memory management don't I
just for one thing
;-;
vscode and atom are the worst editors i've ever used
^
CLion Nova
ARC does some of the required autoreleases for you
so basically, yes
❤️
i will switch to zed once it has objc syntax highlighting and more themes
I mean for the most part I can just do ```objc
autoreleasepool {
// Existing code
}
no?
you can use ifdefs to trick the highlighter
either way i write in a variety of languages so specialized editors like the whole suite of like rider and pycharm doesn’t appeal to me
I've heard about this lol
actually you can just install IntelliJ and install all the plugins lol
yeah this is mostly why i use code
cause it just works for the most things i edit
awful rn omg
well yeah that's a good point but is intellij even that good
like i usually have around 8 code windows open at once and chances are, some of them are c#, some objc, some python, some typescript, some rust, heck even some gleam windows (i’m learning)
yes
much better than code
i tried fleet for a week and switched back to vscode
lmao
yeah fleet is ass atm
just use JetBrains IntelliJ IDEA Ultimate/Community and install all the plugins
i kinda wanna write my own language that compiles to beam bytecode
what I wish there was is a hotkey trainer/practice for vim/nano to go speed mode
i know how atoms and arity and stuff work, with enough time i can probably make my own language
beam is an erlang vm
it’s a language used for telecommunications
stop making languages u cucks
fr
known for it’s extremely fast multithreaded performance
it’s used in stuff like whatsapp and discord as a backend to achieve very good performance
it was written before 2000 but it still holds up to this day
especially the beam vm
C be like:
I mean C is kinda bad
but like
it's good enough
C isn’t bad
because multithreaded performance matters a lot in modern society
it does the job
hmm true
vm can do multithreading for you
gleam is built in rust but it compiles to beam bytecode and is ran by the beam vm
concurrency is hard
it’s a really cool project imo i wanna try my hand at it myself
gleam
I should make a tweak using it
woke gleam
fn spawn_task(i) {
task.async(fn() {
let n = int.to_string(i)
io.println("Hello from " <> n)
})
}
pub fn main() {
// Run loads of threads, no problem
list.range(0, 200_000)
|> list.map(spawn_task)
|> list.each(task.await_forever)
}
im not sure but it definitely has interop with erlang libraries i tried them
that is interesting
it’s so cool
because javascript syntax bad
my only issue with it is that, because it’s a new language, it’s missing quite a lot of stuff
kinda like zig
for example, it has stdout but stdin has to be done via a library
oh gleam doesn't have metaprogramming yet
it doesn’t have if statements but it does have switch cases (which are very powerful here unlike other languages)
switch statements in zig are good
it doesn’t have loops but you can loop with recursion
yeah fair enough
I'd like to learn rust some day
but like
eh
y'know
lua has built in multithreading I think'
it compiles to
"lua bytecode"
I think is what they call it lol
but it also runs on a VM
println 
the one above
ah gleam
yeah @placid kraken the luau VM does auto multithreading
(luau is roblox's lua fork)
it can be used in other contexts though
mfw when lua index starts at 1:
i’ve written some rust for the enmity v3 debugger because it’s in tauri, i had to write an async websocket server (so that the ui thread could still run without being halted while waiting for connections)
it was pretty fun tbh
I think rust's syntax is a bit weird
ok well tbf
all of lua's syntax is more human readable
/ readable to someone who knows nothing about programming
so it makes sense that they'd use indexes starting at 1
@placid kraken https://luau-lang.org/performance
A fast, small, safe, gradually typed embeddable scripting language derived from Lua
do people even use lua outside out game scripting lol
I do
lol
I use it instead of python
Luvit also exists for web contexts
so obviously people do use it
neolua also exists
(running lua on the .NET runtime)
pub async fn create_server(host: IpAddr, port: u16) {
let listener = TcpListener::bind((host, port)).await.unwrap();
println!("Server listening on {}", port);
let clients = Clients::new(Mutex::new(HashMap::new()));
tokio::spawn(async move {
loop {
let res = listener.accept().await;
match res {
Ok((stream, addr)) => {
tokio::spawn(handle_connection(clients.clone(), stream, addr));
}
Err(e) => {
eprintln!("Failed to accept connection: {}", e);
}
}
}
});
}
``` lol
yeah i know
if there's a web version
tbh
I might start using lua
I wonder how well I could write a tweak in lua
I know there's alot of objc libs for lua
there are also projects which let you use straight up react and typescript in your roblox projects
and you can compile to native code using luau/luaJIT
@placid kraken opinion on Orion/Swift?
make a tweak in typescript
I'm not a fan of the javascript family
W
@placid kraken i have a leaked screenshot of tesla man asking me to throw it back
do you want it
used it like once
horrible experience
yeah because of lua's syntax being good
objc isn't weird to use in lua
--instantiate a class. the resulting object is retained and released on gc.
--you can call `release()` on it too, for a more speedy destruction.
local str = objc.NSString:alloc():initWithUTF8String'wazza'
--call methods with multiple arguments using underscores for ':'. last underscore is optional.
--C constants, enums and functions are in the objc namespace too.
local result = str:compare_options(otherStr, objc.NSLiteralSearch)
like that ain't bad
ocal str = objc.toobj'hello' --create a NSString from a Lua string
local num = objc.toobj(3.14) --create a NSNumber from a Lua number
local dic = objc.toobj{a = 1, b = 'hi'} --create a NSDictionary from a Lua table
local arr = objc.toobj{1, 2, 3} --create a NSArray from a Lua table
local s = objc.tolua(str)
local n = objc.tolua(num)
local t1 = objc.tolua(dic)
local t2 = objc.tolua(arr)
hate the no { }
it's better than python whitespace imo
anything better then python fr
real
yeah funny thing btw
luapower somehow links the objc memory management system directly to lua's garbage collector lol
--add Lua variables to your objects - their lifetime is tied to the lifetime of the object.
--you can also add class variables - they will be accessible through the objects too.
objc.NSObject.myClassVar = 'I can live forever'
local obj = objc.NSObject:new()
obj.myInstanceVar = 'I live while obj lives'
obj.myClassVar = 5 --change the class var (same value for all objects)
this just makes sense
it's not weird trickery or anything
function objc.NSObject:myMethod() end
local str = objc.toobj'hello' --create a NSString instance, which is a NSObject
str:myMethod() --instance method (str passed as self)
objc.NSString:myMethod() --class method (NSString passed as self)
but right
luapower is discontinued
https://bounces.dev/en/documentation/lua-code/lua-native-bridge/ this exists which is even better
This document provides an overview of Bounces Lua native bridge, the software layer allowing you to transparently mix Lua and native code in your application. In this article, you will learn how to use native objects in your Lua code, how you can use C structs, enums, and most other types in Lua, and how easy it is to make your Lua objects visib...
but it costs money I think
what does that mean
i dislike swift overall
It’s like python but different
it's nothing like python
swift gives you a compile error if you pass an int32 to int64, its dumb
I wish there was something I could use instead of objc or swift
they both suck
objc is just weird
like it shouldn't exist
swift
I don't know where to start
bad overall
obj-c should not exist at all
no it shouldn't
it's C++ but worse
do you know what the 32 and 64 stand for lmao
no passing 32-bit integer to a 64-bit integer is fine
the other way around is not
you don't lose precision
but if you cast from 64-bit to 32-bit
I think the worst thing is my comp sci professor would not use spaces unless absolutely necessary in his programs
when you say passing do you mean concatenation
ah
yeah 64 was made in 1964 for Super Mario 64 was too computationally intense for the 1932 version of ints
I mean I could definitely use rust to make a tweak
was the N64 even 64-bits
serious question
makes sense
ok y'know what
real
I really don't like objc
I know objc interop in uh
rust is p good
but I don't like rust lol
I really like C#
I know you can use that
but
not sure about tweaks
Potentialy dumb question here. Can I convert a NSDate to a NSString
@native orbit do you know if you can use Xamarin for tweaks
ye
NSDateFormatter
I think it is
I'm using that
-(void)setText:(NSString *)text {
if ([text containsString:@":"] ){
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.dateStyle = NSDateFormatterMediumStyle;
dateFormatter.timeStyle = NSDateFormatterNoStyle;
NSDate *date = [NSDate dateWithTimeIntervalSinceReferenceDate:118800];
%orig(*date);
} else {
%orig;
}
}```
Straight from the docs
@tepid olive ```objc
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"MM/dd/yyyy HH:mm:ss aaa"];
// Conversion of NSString to NSDate
NSDate *dateFromString = [[NSDate alloc] init];
dateFromString = [formatter dateFromString:curDate]; //give what u want to give curDate
[formatter release];
// Conversion of NSDate to NSString
NSString *dateString = [formatter stringFromDate:datePicker.date]; //give date here
[formatter release];
stackoverflow is your friend
Sorry but, any clue?
I'd use zig
but too experimental
I'm just gonna use lua and see what happens

anyway to fix this?
import SwiftUI
struct ContentView: View {
@State private var jailbreakInfo: String = ""
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
Button(action: {
jailbreak()
}) {
Text("Jailbreak")
.padding()
.background(Color.blue)
.foregroundColor(.white)
.cornerRadius(10)
}
.padding()
Text(jailbreakInfo)
.padding()
.background(Color.gray.opacity(0.1))
.cornerRadius(10)
}
.padding()
}
func jailbreak() {
// Call the kopen function with the appropriate parameters to initiate the jailbreak using the exploit
let kfd = kopen(64, puaf_landa, kread_sem_open, kwrite_sem_open)
// Check if kopen was successful
if kfd != 0 {
// If successful, update the jailbreakInfo text to indicate success
jailbreakInfo = "Jailbreak Successful!"
// Close the kfd after the jailbreaking process is done to free up resources
kclose(kfd)
} else {
// If unsuccessful, update the jailbreakInfo text to indicate failure
jailbreakInfo = "Jailbreak Failed!"
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
fuc
yeah no icant make a jailbreak on my own
what do you need to make one for
ehh why not
i want to turn a joke jailbreak into a real one
hm
im trying out tho if kfd would work
is there a file of kfd smith and landa ?
A file?
yea?
Wdym
swift one or smth?
https://github.com/rweichler/objc.lua mmm perfect
it's the same thing except forked to work on normal LuaJIT
EWWWWWWWWWWWWWWWWW
worse than sw*ft
@hasty ruin what do you think ?
wait lmao they were trying to use it to make a tweak
wait
it's the guy who made cylinder lol
and made EQE
yah
those both support lua plugins right
was only recently added apparently lol
Or both
go to src
oh only 4 files
tap on init.lua
2300 loc
lmfao
@grave sparrow https://x.com/ptr_to_joel/status/1770412698595106829?s=46
the us government wants to take away your UB
fr
notice how the us government doesn’t want to take away my python
remember when you said you would make zefram public if i gave you £500k
python lang best lang
or something like that
respectable
what version of macOS is your mac containing the zefram source
how about $3 and a used sheet of toilet paper
ARM asm to be exact
the CIA uses pip and npm as a method of torture, they can’t get rid of it
notice how they're using 2 levels of optimization in C but only 1 in rust
i’m waiting for the ruff devs to replace pip already 🙏
leak it like it leaks memory
what
they already released something for it but iirc still very early stage
Oh lmao I didn't even notice that
hold on
I'm waiting for python to disappear
Lockdown Mode helps protect devices against extremely rare and highly sophisticated cyber attacks.
nuh uh
uh huh
image python 4
python is good for keyloggers

thank you for supporting minorities like myself
regardless that shouldn't matter though
but I'll try it anyways
c++ no please no
pretty sure it would
it's better than objc
it's not UB in rust
how
i like don’t know C but feel like i understand the very bare concepts
i know more arm64 than c 🧌
C is just beautified assembly
😂😂
x86 ASM is cursed
why
I also know ARM ASM
Oh right I forgot on rustc -O is the same as O2 for other compilers
x86 is poo
cus its good
oh is it?
arm is haram
So they're still on same level of optimization
Yes
false
apple shouldve paid for an x86 license from amd and intel
rustc --help
use eyepatch
and built m1 off of that
ARM is halal
What do you mean by that
they should buy VIA
subhanallah
@gentle grove still this tho
fuck all this dick swinging contest apple should’ve gone back to ppc
yeah you definitely are Muslim
ppc64 mac pro
real bro
🚅
I didn't realize that, I swear I used that before. Regardless the C version isn't a "normal operation of the language". It's UB and the compiler can do whatever it wants
are there any wii emulators that just use a hypervisor on ppc computers
did capt die
that’d be kinda sick
i hope
i hope he did so zefram becomes OSS
he told me "that's not how a cpu works" and then didn't elaborate
zefram will never bootloop another device again
or is that not how it works
Why would that be how it works
my mac in internet recovery rn because of zefram
Literally classy car
yeah except i cant imagine any gpu exists that could handle the emulation part well
that has drivers for ppc
Wii U is also ppc
lets make a change.org for nvidia ppc drivers
This is a matter of law, not logic
I’m so smart
I hate the law
Much more custom design tho
💯
imagine if the law didn’t exist
That’s called anarchy
i could commit jihad freely
no way is it really
joking
Yup
please don’t report me
damn crazy
thank u nintendo for making all of ur games run on potatoes it really helps with emulation ❤️❤️❤️
fr
Fr
frcoal
they’re starting to change that with the switch
iphone 15 pro has 8gb of ram for nintendo switch emulator
Although the Wii U had much more custom design
switch 2 gonna be interesting
might get a switch 2 when it drops tbh
i will be enjoying that day 1
especially cus we havent had a new 3d mario in a while
the 15 pro only has 8gb ram?
lol
its probably gonna be launch title
iirc there’s reasons why ryu wouldn’t work on iOS
somebody tried
(That’s where all the coffee codenames are from)
fuck how long ago was odyssey
It’s made in C#
Yes
i mean not that part
I remember watching someone play it on youtube on release day
I feel super old now lmao
https://github.com/Ryujinx/Ryujinx/issues/4198 this basically sums it up
its just a matter of ease. if people could click download an ipa from the internet with jit permissions devs would care a lot fucking more about making it
then they could look into hypervising but it still needs patching to redirect syscalls iirc
and that wouldnt be happening on ios without more entitlements anyway
it’d be getting to the point where it’s only really feasible on a jailbroken device
and that’s not worth the effort
yea
delta (actually convenient emulator app) isnt moving beyond DS until that happens
(it wont)
maybe in 20 years lmfao when the cpus are good enough to brute force wii era with interpreters
last i tried mario galaxy on my 14900k i got like 2 fps though
i’m pretty sure delta’s already hit the point where people are forking it and doing updates themselves because it gets updates that infrequently now
in other great news wireless JIT enabling without xcode is possible now https://x.com/doronz88/status/1770529377152843803?s=46
It's almost official - #pymobiledevice3 is going to have RemoteXPC support over WiFi (Initial pair must first be made over USB)
Please provide feedback on how well/terrible this PR works
https://t.co/KIt1fno74K
Since it's a HUGE refactor - will be a major version bump (v3.0)
i had an idea a few months back to make a JIT launcher in python with that, might need to actually do it
using interpretation
yeah it did
Then why’d you say with interpretation??
doronz on fire
cus im testing interpretation on dolphin emulator
Ohhh
pymobiledevice3 is goated
so goated
i gotta stop playing and drop equinox already
What’s equinox
pure python futurerestore
mashallah
also much better than actual futurerestore
Interesting
and is almost feature complete
Built in tether downgrade support mayhaps?
restores work i just haven’t finished nonce setting
likely will be a separate project that also includes a tethered booster
What does tethered booster mean
chad
Hello
you fr
gm
@ashen birch
Oh lol
Actually quick question @ashen birch could it theoretically be possible to make iOS 17 work on X and 8
it’s theoretically possible to do a lot of stuff
no
Why?
what’s another a11 device with 17
Ohh true
people said the same with ios 13 and the iphone 6
still not done fr
still hasn’t been done successfully yet

the closest anyone’s done like this successfully is the ipod touch 4th gen running the iphone 4’s build of ios 7
and i think maybe the 5c running the 5’s build of ios 6
does the ipad 6 support ios 17
Yes
in that case basically same scenario as the 6 running 13
the plan with the 6 was to boot the mini 4 kernel
I mean what would stop you from just
Doing the tethered downgrade process
But with iOS 17
like purely as a restore process? yeah it’ll work
Oh wait drivers are different
but a LOT of modification’s gonna need to be done to whatever firmware you’re using
that’s also a big one
Yeah
I mean so it’s technically possible but not worth it?
for the amount of work yeah
A11 would probably be more worth it
infinitely more work
But Apple never released an iPad with it
So
SEP moment
A10 has sep
but A10 has blackbird
your mom has sep
It’s just vulnerable to unsigned code execution
i mean qwerty was crazy enough to try getting macOS running on a11
Was it ever successful
Oh damn that’s pretty good tho
I wouldn’t expect to get that far
Oh by the way
What
Has anyone made an alternative to that one green thing kind of like lemons that fixes things
lol
You know what I was trying to say lmao
Yes
in that case no
OSS blackbird downgrade tool eta wen
S0n
iOS SEP bypass eta wen
Blackbird
<=A15 tethered bootrom execution launching next week
a17 pro support? For my i15 pro max
unfortunate brother
it’s an insane amount of work & research needed
i support making any tool that needs that much effort paid
It also includes an iCloud bypass 
i believe with the latest version it properly allows the device to activate now
I see
before yeah but i mean it’s not like there was even any effort put into the icloud bypass
it just deleted setup.app
and i think activation in general didn’t even work then so it wasn’t purely for that
Fair enough
Well idk
Personally I think charging for that stuff is a dangerous precedent
thats me
i mean customers can vote with their wallet
would
real tho
i’d argue that’s a little different but i mean i’d still support it
it definitely wouldnt help with the legality of jailbreaking either
that court decision could change
ok fair
jailbreaks could more actively advertise a “pay what you want” model like elementaryOS
some of the best ios jailbreaks were a result of jailbreaks becoming monetized
buying a $1.1k phone ✅
paying $2 ❌
so real
Example?
pangu/taig
legit
absolutely not including u0 in that
They were paid??
no but they were sponsored
U0 got worse when it got sponsored
they had that piracy app store in them
pangu taig and evasi0n
yeah but was it ever good
oh yeah i forgot about evasi0n
U0 5 was fine
was that ios 13
Yeah
idk the only time i ever really used u0 was 12 and that was until chimera dropped
yeah
and then didn’t it get unveil ads in it whenever that dropped
That was literally pwn20wnd’s app though
yeah but he used the popularity of u0 to make money off of it
ugly
shoutout the dude that did the ui for u0 though the old one was hot ass
now it’s ok
logos
this is too hd
yeah im on eduroam they blockin some shit
not a programming language my brother
what is it then?
I have no idea why these cases exist
preprocessor
Cases that dont protect the whole phone
ok fair enough
i mean those pitaka cases seemed decent a few years back
gorn
haven’t paid attention to them at all recently tho
I used bumper cases until glass backs came back
i just have dbrand grip
Rhinoshield 💪
yeah i don’t want a yellow case in a few years
Good thing its only $5
would rather buy a good one and have it never yellow
i bought a random screen protector at best buy a few weeks ago and turns out it has a lifetime warranty
that’s actually pretty cool
didn’t this used to be a gif for swift
there it is
My mum had a friend who got a best buy screen protector with a lifetime warrenty, and then when she tried to get it replaced, they didn't honour it for some reason
i mean for me the warranty isn’t thru best buy it’s thru the brand
i already warrantied it once because i installed it fucked up and they honored it
have to pay for shipping though
trump 2024 i want cheap gas
trump 2024 i want cheap gas
if the choice is between 2 dumbasses i might as well get to save some money

