#development
1 messages · Page 446 of 1
cat
I'll have to log on with my phone

legitimate question
has a piracy repo alert ever stopped a single person from adding a piracy repo
legitimate uhh
Doubt it. People don't even read the depiction of things they are intentionally downloading, why would they read something that popped up unintentionally?
nfr
:legitimateuhh:


already did
already did
already did
already did

already did
think it’s more of a “well at least we tried to warn you”

the warning probably doesn’t stop anyone who got that far, but it hopefully makes them feel a bit more shameful of it
like, “accidentally” adding it not realising it’s piracy mostly isn’t a thing
i honestly disagree just due to the internet
all you have to do is just google
“cydia repos list”
and i guarantee you’ll find like 3-4 piracy repos in the first two results
it’s probably like a 50/50


Haoict’s?
@twilit jungle
What is the one tweak
Bruh
If it’s a react app and it’s modifying JS I think that’s technically just a TOS violation, could be wrong though
twitch
Already did
fair
We reacted

Me when the C

k i reacted now what
you are late to the joke
Cry about it
Ok so I’m moving a folder’s iconlistview that isn’t the active page onto the screen, and it isn’t visible
Can’t find what controls this, anybody know anything

Trust dawg it’s for a dumb reason
Then don't
gl
o.o

C++ symbol vs C symbol
You need to extern "C" your declarations of the IOKit functions
thanks chief
I always forget
am dummy
how bout error: funcname hides overloaded virtual function [-Werror,-Woverloaded-virtual] ?
Werror 
But that’s boring
ok
I feel like you’re being sarcastic towards me
Bruh that's like 10x more work tho...
ik, but i did it once and now i just copy paste it 😛
Minecraft
pojav kinda cute??
Haven't tried it yet unfortunately
anyone know any good free tools for reverse engineering apps on windows
ida 7.5 leak
ghidra is great too
Minecraft decompile
know where I can find the leak? 🙂
@tepid olive wait and see 🙂
its part of taurine
hence why u have to wait
what else would he mean by odyssey14 lol
@faint timber leak worked, thanks for telling me 🙂
ooo
ive seen there are a lot of other tools on mac
like hopper
is ida still better? (in ur opinion)
I bought a hopper to help get some competition for IDA but I never use it, IDA > ghidra > hopper of the ones I've used in my opinion... hopper's pseudocode makes me want to smash things
unless it's gotten significantly better recently
but still hopper's affordable, you should probably buy it and try to use it
I'd buy binary ninja but 300 is making me hesitate
Ive always had bad experiences with hopper
except on armv7
hopper used to be my main for armv7 re
hopper's pseudocode makes me want to smash 
you think if I wanna get serious with the ios reversing stuff that I should buy a mac
maybe a used one atleast
lmao mybloxx edits sudoers
they mentioned something about setuid not working properly on u0
huh? it does
you don't even need to call those functions
wonder what they were seeing
nah Im seriours as fuck I never bought a mac once
I bought a pc tho
runs mac fine
not sure exactly what they did in the previous version, but "revert supervision spoofing" worked on odysseyra1n but not u0
They probably just assumed that mobile was in sudoers?
@uncut ginkgo look at donk’s unlocker if you use vmware workstation
(I mean if setuid was broken sudo wouldn’t work either lol)
well then they'd also have to assume the password was alpine, I didn't test changing that
actually no bc I always modify my sudoers file to allow mobile access and it still didn't work on u0
Sandbox: xxxx(356xx) deny(1) mach-register com.xxxxx.xxxx
Rocketbootsrap was supposed to fix this right (I'm using it)?
I'm trying to communicate from (sandboxed) app -> tweak
Tweak compiled
now it just crashes instant
i feel like it's something about the openssl library but it doesn't even seem to reach the main function
like if i put nslog or printf in the main function it doesnt even get called
followed by Unable to obtain a task name port right for pid 1962: (os/kern) failure (0x5)
i mean there is no reference to libssl or openssl at all in the crashlog
hmmmm otool still says the lib is linked
turned out theos mixed up the files, the same tweak.xm file got injected in both places. make clean make clean-packages and uninstall solved the issue 😐
Guess ill have to rewrite the whole shit
throwback now
still getting "_SSL_library_init", referenced from: even tho i'm using openssl 1.0
it really is
OPENSSL_init_ssl();
^~~~~~~~~~~~~~~~
OPENSSL_init
/Users/rpwnage/theos/vendor/include/openssl/crypto.h:598:6: note: 'OPENSSL_init' declared here
void OPENSSL_init(void);
^
1 error generated.```
what the fuck

openssl is probably the worst offender
openssl 3 
LD_LIBRARY_PATH=/usr/local/opt/openssl@1.1/lib:"${LD_LIBRARY_PATH}"
CPATH=/usr/local/opt/openssl@1.1/include:"${CPATH}"
PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig:"${PKG_CONFIG_PATH}"
export LD_LIBRARY_PATH CPATH PKG_CONFIG_PATH
this has always fixed openssl linkage problems for me
im building for arm64
its so fucked up
"_SSL_library_init", referenced from:
connectToServer(NSDictionary*) in main.mm.530faf65.o```
it compiles
and fucks up linking
ld: warning: ignoring file ../libssl.a, building for iOS Simulator-x86_64 but attempting to link with file built for iOS Simulator-x86_64
oh sure
what a nice explaining warning
lmfao

If anyone has an ios 14 theos setup that can compile a tweak, please dm me. I don't have xcode installed currently and need to compile/test a tweak update

pm me
thanks theos, very cool!
@tepid olive hey! i'm trying to compile my very very first tweak and i keep getting from theos this error Undefined symbols for architecture arm64 did you fixed it?
export SDKVERSION=13.7
ARCHS = arm64 arm64e
INSTALL_TARGET_PROCESSES = SpringBoard
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = ExampleTweak
$(TWEAK_NAME)_FRAMEWORKS = AudioToolbox
ExampleTweak_FILES = Tweak.x
ExampleTweak_CFLAGS = -fobjc-arc
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "sbreload"
what methods do you hook?
export SDKVERSION=13.7
ARCHS = arm64 arm64e
INSTALL_TARGET_PROCESSES = SpringBoard
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = ExampleTweak
ExampleTweak_FRAMEWORKS = AudioToolbox
ExampleTweak_FILES = Tweak.x
ExampleTweak_CFLAGS = -fobjc-arc
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "sbreload"
what header files do you include and what methods from other files do you call? do you use uikit etc?
I include <UIKit/UIKit.h> and <AudioToolbox/AudioToolbox.h> and i'm trying to hook SBVolumeControl
i followed a tutorial
export SDKVERSION=13.7
ARCHS = arm64 arm64e
INSTALL_TARGET_PROCESSES = SpringBoard
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = ExampleTweak
ExampleTweak_FRAMEWORKS = AudioToolbox UIKit
ExampleTweak_FILES = Tweak.x
ExampleTweak_CFLAGS = -fobjc-arc
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "sbreload"```
try this one
you did not include UIKit in frameworks
i just tried this and still the same error
could you show me the error?
Undefined symbols for architecture arm64:
"_AudioServicesPlaySystemSound", referenced from:
__logos_method$_ungrouped$SBVolumeControl$decreaseVolume in Tweak.x.f357edce.o
"_objc_getClass", referenced from:
__logosLocalInit in Tweak.x.f357edce.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
in makefile right? yes this ExampleTweak_FRAMEWORKS = AudioToolbox UIKit
run
echo $THEOS
you sure your sdk has private framework symbols
and send the output
guys he's making his first tweak why is everyone asking him stuff he'll probably don't know what to answer to lol
go easy on him
How can I unsuspend/resume/activate an app in background to let it receive notifications from NSDistributedNotificationCenter. I tried setting deliverImmediately and changing suspensionBehavior, but those don't seem to make any difference.
are you on macos/linux/windows


They made the guns from forklift a real thing
Fortnite*
What
Guys do you think I can just extract the checkrain binary from the deb and get the gui version on a non Debian based distro
export TARGET = iphone:clang:13.7:13.0
ARCHS = arm64 arm64e
INSTALL_TARGET_PROCESSES = SpringBoard
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = ExampleTweak
ExampleTweak_FRAMEWORKS = AudioToolbox UIKit
ExampleTweak_FILES = Tweak.x
ExampleTweak_CFLAGS = -fobjc-arc
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "sbreload"
i've not idea of what that does mean lol but if thats the problem i can fix it?
Yeah update toolchain or use older sdk
Does anyone know a solution, i want to wake the app, because deliverImmediate doesn't work for some reason
Nothing you do with notification centers is going to wake it up.

You are going to have to dive much deeper into process states to be able to do what you want.
im pretty sure that the typestatus plus code had something for this

If i have understand correctly toolchain comes with xcode? And because i'm using older macos (and cant update it anymore) i can't update xcode so i cant update toolchain?

hmm, it isn't a problem if the app does enter suspended state, but it should wake up when i want to
I know nothing about macOS environment so no clue

aight no hate against windows here
i will murder you with win32 handles
I could care less about WSL... just wanted to say Debian master race.

go ahead

DEBIAN ON DA SERVER 
can we all agree that arch linux is 
No because I use it btw



🆗


true

innit
Is suffix better
xcode-select
do u think there was a reason i unpinned the fucking message?
i mean xCODE-select

Bro I am not even a mac user and I know how to fix your errors
switch to arch linux
arch lunix
yes

arc loonux
how can I be as annoying as possible
stud

no
indeed
thank you! I'll try that

@grave sparrow it worked. Thank you very much!!
shut your broke ass up

#GiveRolexAdminPerms




:bruhwhitepeople:

i submitted this in hw, on the bottom is a 5 line python script that does the same exact thing as all the java
Okay now make HelloWorld Compiler in Java
dissappointed, it could have been an one liner
Never understood the comparisons that people did... sure its lesser lines but compare the performance. Like we live in the age of copy pasting, number of lines makes no difference.
ok i will compare the performance
virtually instant vs. virtually instant
why
ok

it's not useless, it's just for different use cases

that's like saying C is useless because python can do the same thing
true
you mean binary
who said useless
.
aw fuck

oh
lol well... ofc its useless to someone that already knows how to program
i only know subroutines
Its that thing that is written in binary
a piece of paper you get when you walk into a play
or a tv show
true


I'm so done with openssl and theos
initializing a custom interface of NSData just randomly segfaults

Noob
youre going to prison

🗿
quick question, think this could be easily ported to ios or it would need a complete rewrite? https://www.macrumors.com/2021/03/22/macos-big-sur-11-3-controller-emulation-m1
would anybody be able to help me understand the moify of a tweak? of what people do? please if u can help me dm me or you can just ping me
probably need to rewrite some stuff for iOS, but nobody would know until they get their hands on it
^]
can anybody help me ]

im trying to make a tweak for ios but i need to modify the tweak and i dont no what i need to modify and how to do it?
?
Xcode for anything else then swift/c/c++/objc is scary
witch one tho there is multiple of them
Xcode for java already sounds like a nightmare
hello there
What do you need to modify?
Hello there
So like edit a tweak?
Just Imagine
Well yeah read that sticky but that's a longer process, If you say what you need edited maybe I/someone else can spoon feed you a bit no programming knowledge needed for you @warm cipher
Im having a seizure thinking about it
yh i was gonna make a tweak where the battery is coloured to start of with a starter
Vscode for the rest
I'm not sure what you mean but if you draw it or explain a bit more it would be amazing or yeah start off more basic 
like?
how do i start more basic
What do you want to do @warm cipher
well i want to make the battery coloured for my first tweak
wtf racist
colored
nah just make tweaks
nobody does that despite everyone saying it
use console.log

o
Starting with tweaks without knowledge is like starting to make a jailbreak without knowing how exploitation works
ill help you with your goal anyway
me.
i know that website
look and see ifyou can find any methods which can be overriden to change the color
oh could i make the icon size bigger and smaller?
would that be easier
probably not
hooker
isnt this a hooker _UIBatteryView
I am sure you'll find a few, 2 streets down the block.
me,
or, upstairs in your mother's room
ok so i need to look for @interface is a hook?
%hook _UIBatteryView
//
%end
_UIStatusBarDisplayable
_UIBatteryView is a class
please learn obj-c before getting into tweak development
you hook classes
All the shortcuts you take now is just going to elongate your time on the struggle bus.
so i need to do UIColor* _fillColor;
but one day you might get off the struggle bus 👏
lemme write this tweak real quick
UIColor* _fillColor{
(activeColor)blueColor?
}
well you tried
thx
%hook _UIBatteryView
-(void)setFillColor:(UIColor *)nfr {
%orig([UIColor blueColor]);
}
%end``` here you go
Yeah you can be that guy that thinks he is cool sitting in the back; but lets be honest Its always better to sit in the front so you can get out first.
dont spend it all in one place
%hook _UIBatteryView
- (void)setFillColor:(UIColor *)color {
%orig([UIColor blueColor]);
}
%end
import Orion
import UIKit
class UIBatteryViewHook: ClassHook<UIView> {
static let targetName = "_UIBatteryView"
func _fillColor() -> UIColor {
return .blue
}
}
thx but dont i need to learn it my self and get use to modifying sorry for being rude?
...
hooking getter
@wicked summit
why's it matter

well you usually want to set the underlying ivar
ffs... for once someone wants to learn and yall making him go down the struggle path...
would it be coool if the phone is 100% blue then whe it is low battery turns dff color
?
yea ig youll need to do the logic manullay though
yea then we can get back to shitposts faster


ok
It just means he'll be coming back for help more so lesser shit post.
hookf MSHook
got an error
send
UIColor belongs to the UIKit framework
whats uikit
ok

Universal Internet Kit
i thought it was ur Imom KITgay
Kock in teeth
do i run it now/
send
ok
ojk

i did

did you save lol
nfr
ok
ok

ok
#import <UIkit/UIkit.h>
%hook _UIBatteryView
-(void)setFillColor:(UIColor *)nfr {
%orig([UIColor blueColor]);
}
%end

BOOl yes or no
BOOL
true or false
not BOOl
yh BOOL forgot the caps for L
my man hates capitalization
Not to interrupt but i’m so down bad that i’m directly asking for advice with this fucked up tool im building. This segfaults (11) on line 128. Pm me or ping me if you have any ideas.
https://github.com/RPwnage/EggShell-Community-Fork/blob/master/src/esplios/src/main.mm
NSstring
lol
Tweak.x:23:132: error: unknown type name 'UIColor'
..._UIBatteryView* _LOGOS_SELF_CONST, SEL, UIColor ); static void _logos_m...
^
Tweak.x:23:274: error: unknown type name 'UIColor'
..._UIBatteryView _LOGOS_SELF_CONST, SEL, UIColor *);
^
Tweak.x:4:66: error: implicit conversion of an Objective-C pointer to 'int *' is
disallowed with ARC
..._cmd, [UIColor blueColor]);
^~~~~~~
Tweak.x:4:66: error: incompatible pointer types passing 'UIColor * _Nonnull' to
parameter of type 'int *' [-Werror,-Wincompatible-pointer-types]
..._cmd, [UIColor blueColor]);
error
send code
hmm i did
did you capitalize the K
Copy paste
#import <UIKit/UIKit.h>
%hook _UIBatteryView
-(void)setFillColor:(UIColor *)nfr {
%orig([UIColor blueColor]);
}
%end
did you save the file
yh i always
if that doesn't work, remove the import and just add this to the top```objc
@interface UIColor
- (instancetype)blueColor;
@end

ok
still aint working
#imPoRT <UIkIT/uiKiT.h>
%hOok _UibatteRyvIEW
-(voID)SEtFILLCOLor:(UiColor *)NFR {
%OrIg([UICoLOR BlUeColOR]);
}
%eND```
wait i need to add <UIKit/UIKit.h> back in?


no
(╯°□°)╯︵ ┻━┻

copy paste this exactly into the file
@interface UIColor
- (instancetype)blueColor;
@end
%hook _UIBatteryView
- (void)setFillColor:(UIColor *)deprecateObjc {
%orig([UIColor blueColor]);
}
%end
ok

ij
you still need to link against UIColor for that, at which point might as well import it.
Everyone sending different shit
OK OK
This man only wanted to change background color of a uiview
doesn't theos autolink UIKit
The man wanted to learn how to make tweaks actually, now he is being spoonfed.
HOW TO GET INTO TWEAK DEVELOPMENT
This has been asked countless times so it's time that there is a long message that explains this.
One of the first things you want to do is reach a "baseline" before you can even think about getting started.
What this means is that you need to be familiar with Object Oriented Programming and how to use Objective C.
uroboro was kind enough to create a guide that you can find here: https://uroboro.github.io/Learn-Objective-C-in-24-Days-Clone/
Additionally, you should also learn a little bit about how iOS works, learn some basic frameworks/stuff you will need to work with.
Stuff like how to use UIKit, Foundation, etc. Once you have a pretty good understanding of these, then you can proceed.
The next step is to actually start making tweaks. Install a tool called Theos for your appropriate device.
The installation wiki can be found here: https://github.com/theos/theos/wiki, please make sure to follow the appropriate platform instructions.
After that, you are ready to start making tweaks, please follow a tweak development guide. (Here's one if you're lazy: https://kodeycodesstuff.tech/guide)
linking 
No it doesn't for over month (maybe even 2).
time to make a tbd file in text edit
good thing it doesnt too tbh
ok
Where’d you get your sdk


5$ its the sdk
hmm
5$ its your mom
@warm cipher are you on macOS
yh

Mans running on macos and windows at the same time
yh but im using terminal and lime ext edit
Randomly conpiling stuff from one of them
xcode-select --install
ok
Should i pull the rm -rf troll
i did it once before
I feel tempted to do
deserves it
i did this
it'll prob take a while, cuz it installs a bunch of stuff
hmm
😆
a guy actually ran that command

ok instead ima just read the 24 hours thing for objective-c
24 hours
👏

ok ok
say amogus amogus
im trying at least
Run that
Why
Try nc towel.blinkenlights.nl 23
cannot

ifunnyapi
What why

who u talking to? 😕
I’ve learned 3D printing in a day
lol
And it took me 6+ years to come to the real state of programming im currently at
my favorite programming language is Discord
Ah a fluent GCODE programmer?
I can write fully plain executables. No compiling i write the full thing /s
witch one do i view? blog_posts
Semantics, pass 2
3 years ago
code_resources
Through Step 22
3 years ago
image_resources
90 - 105, thanks to Tony
3 years ago
404.html
Fixed 404 home link
3 years ago
README.md
90 - 105, thanks to Tony
3 years ago
_config.yml
Set theme jekyll-theme-cayman
3 years ago
favicon.ico
Fixed 404 home link
3 years ago
README.md
?
The one that doesnt say 3 years ago
ok
You trying to learn how to get deprecated function errors with that old guide?
where did he go
wait so i dont view the github???
phub
Not to interrupt but i’m so down bad that i’m directly asking for advice with this fucked up tool im building. This segfaults (11) on line 128. Pm me or ping me if you have any ideas.
https://github.com/RPwnage/EggShell-Community-Fork/blob/master/src/esplios/src/main.mm
i prefer watching youtube vids on how know the basics of objective-c
I'm once again asking for your code support
you ran out of memory
didnt mean to c l i c k t h a t
But why @twilit jungle
Even though we have ARC, understanding memory management is critical to writing effectives. This video covers the process.
About www.raywenderlich.com:
raywenderlich.com is a website focused on developing high quality programming tutorials. Our goal is to take the coolest and most challenging topics and make them easy for everyone to lear...
raywenderich has good tuts but they’re pointless without a foundation
you used too much? idk
????
this isnt agood vid?
raywenderich has good tuts but they’re pointless without a foundation
Created NSObjecr thats all
read it again
but slowly
raywenderich has good tuts but they’re pointless without a foundation
separate it out into two lines, first one doing alloc and second one being init.
but they’re pointless without a foundation
?
Hate me for this
but they’re pointless without a foundation
But go on u d e m y
ok
new tweak devs should learn swift and objc side-by-side at this point so they aren't freaked out by the other

If it returns null from alloc then you know its memory running out.
!t tweakdev
HOW TO GET INTO TWEAK DEVELOPMENT
This has been asked countless times so it's time that there is a long message that explains this.
One of the first things you want to do is reach a "baseline" before you can even think about getting started.
What this means is that you need to be familiar with Object Oriented Programming and how to use Objective C.
uroboro was kind enough to create a guide that you can find here: https://uroboro.github.io/Learn-Objective-C-in-24-Days-Clone/
Additionally, you should also learn a little bit about how iOS works, learn some basic frameworks/stuff you will need to work with.
Stuff like how to use UIKit, Foundation, etc. Once you have a pretty good understanding of these, then you can proceed.
The next step is to actually start making tweaks. Install a tool called Theos for your appropriate device.
The installation wiki can be found here: https://github.com/theos/theos/wiki, please make sure to follow the appropriate platform instructions.
After that, you are ready to start making tweaks, please follow a tweak development guide. (Here's one if you're lazy: https://kodeycodesstuff.tech/guide)
follow this
And invest 10$ into a skillset that can get you your 10$ bacj
instead of trying to code in objc without any knowledge
Then it would segfault in init if you don't have a self guard.
Yea fuck swift
Get the Code Here : http://goo.gl/aNeg5E
Best Objective C Book : http://amzn.to/1GjLx6N
Support me on Patreon : https://www.patreon.com/derekbanas
C Intro 1:40
For Loop 2:37
Main Attributes 3:18
Compiling 4:52
Include 6:06
Data Types 6:17
Scanf / User Input 7:22
Data Type Precision 9:05
If Else Statement 12:07
Comparison Operators 13:02
Logica...
no
That shit is for lizards
!t tweakdev
HOW TO GET INTO TWEAK DEVELOPMENT
This has been asked countless times so it's time that there is a long message that explains this.
One of the first things you want to do is reach a "baseline" before you can even think about getting started.
What this means is that you need to be familiar with Object Oriented Programming and how to use Objective C.
uroboro was kind enough to create a guide that you can find here: https://uroboro.github.io/Learn-Objective-C-in-24-Days-Clone/
Additionally, you should also learn a little bit about how iOS works, learn some basic frameworks/stuff you will need to work with.
Stuff like how to use UIKit, Foundation, etc. Once you have a pretty good understanding of these, then you can proceed.
The next step is to actually start making tweaks. Install a tool called Theos for your appropriate device.
The installation wiki can be found here: https://github.com/theos/theos/wiki, please make sure to follow the appropriate platform instructions.
After that, you are ready to start making tweaks, please follow a tweak development guide. (Here's one if you're lazy: https://kodeycodesstuff.tech/guide)
in one video
red flag
nvm 5 yr
Sorry objc freaky Swift gang
Ill make a video
get out new age gangsters
ty
self guard?
https://github.com/RPwnage/EggShell-Community-Fork/blob/master/src/esplios/src/espl.m#L18-L25
iOS exploitation full course one video
auf deutsch bitte /s
The nslog doesnt even get called @twilit jungle
Like the one at the top of the init function
I think so

But i dont see the issue
Like fr
Its just a nsobject
Wait
Ill send the crashlog
You could be reaching the process limit.
could u send me the vid after you finsihed on either dm me or just ping me with the vid link?
I know
But its small
Really small
It doesnt hold much
And the whole tool im building is not big
It just opens a ssl connection and waits for incoming shit
literally learn objc using the guide
or keep trying to code by copy pasting code from others and end up learning nothing

preach
thats what most german computer science teachers/professors do i've ever met
ok now i go back into winter sleep until Culture III releases 
i didnt go to uni in germany
well i guess ill never be able to make tweaks 
I'm talking about pre-uni
huh, bist du nicht deutsch?
not with that mindset of yours no @warm cipher
doch aber habe nicht in deutschland studiert

Achso, ja gut
Naja deutsche Unis sind nicht viel anders aber die profs sind entweder maximal profis und zerfetzten algos wie die Wurst am morgen oder sind wannabes
TU Darmstadt hat echt gute though
id eher beobachten youtube vids dann nur lesen, ich meine, ich kann lesen und ich mag, aber ich bevorzuge Exmplation von youtubers
habe in usa studiert konnte mich da nicht beschweren
id eher beobachten youtube vids dann nur lesen, ich meine, ich kann lesen und ich mag, aber ich bevorzuge Exmplation von youtubers
mf i dont understand german
lol
Ach nice
id eher beobachten youtube vids dann nur lesen, ich meine, ich kann lesen und ich mag, aber ich bevorzuge Exmplation von youtubers
aber zu meiner gymnasiums zeit in deutschland wurde noch professionell empfohlen jeden fehler zu googlen und zu kopieren
im happy for you tho, or sorry that happened
Lmao Ja gymnasium’s compsci/ “informatik” unterricht war sowieso 90% “Hier sind random aufgaben aus dem Netz”
Ok aside from that who is the best from the migos?? Offset, Quavo or Takeoff
viel zu schade
I say Offset
100%
traurig
init
habe eine schlechte bewertung bekommen als ich in der 10. klasse meine facharbeit über arm exploitation anhand beispielen aus der vergangenheit abgegeben habe und ich wette das war nur weil der typ nur java grundlagen kannte
Ich meine rpwnage könnte u makke ein youtube vid auf, wie man eine tweak oder etwas zu machen, so kann ich verstehen oder machen ein vid ohne youtube
Tr1nslation "Lmao yes, In 90% of gymnasium compsci/informatica classes, you get some random excercise from the internet"
bro you dont have to google translate now lol
im not google translating
what u mean? me?
i mean @warm cipher
Hab in der 11 bei der Hausarbeit über quicksort geschrieben und eine 5+ bekommen weil der dude nicht das Thema verstanden hatte

how do u know ?
if i am?
i might know it tbh
in the mean time,

Das beste daran, pass auf
Kollege gibt simple input-output programm in Java ab, 1+
literally wtf
either that or you're throwing random english works into german sentences just because of missing special chars like ' in i'd which didn't get translated as I'd and therefore stayed Id
ja nomal
i didnt do i'd just normal id
ein kollege von mir hat eine facharbeit über lan kabel geschrieben ohne zusammenhang und 2 bekommen
How can I keep my app running without those assertionhax lol, or wake the app from the tweak somehow
ich schwöre
Manchmal bezweifel ich halt echt den titel “bildungselite” den man als gymnasiast hat
so unverdiente 2
Will kein Auge machen aber come on, das ist echt low effort😂
Dieser Chat ist nun Eigentum der Bundesrepublik Deutschland.
Nein.
^ does anybody have any hints for me?
kollege von mir hat auch einfach instant einen job als software engineer bei zalando bekommen mit studium an fachuniversität und ich musste "auf suche gehen" mit master aus usa
Jetzt machst du doch safe einen meme
heard u signed your life for that new chain ‼️
ist so
weil er hatte ein praktikum bei was weiss ich wo während ich weiter studiert habe
Das ist echt unverdient, damn. Ich gönne ihm den Job absolut aber qualitativ ist das etwas merkwürdig
ich glaube es juckt garnicht mehr ob fachuni oder uni
also von dem was ich mitbekomme in deutschland
then again, heutzutage musst du 372628 Jahre erfahrung haben für eine position aber niemand gibt dir Job um erfahrung zu sammeln
ja
genau
wenn du nicht 15+ jahre php senior software developer bist kriegst du scheiss bezahlung und komischen arbeitgeber ab
100%
🥖
habe also jetzt in usa an einem der bekanntesten universitäten studiert und mich durchgekämpft um in deutschland als "junior" bei einer halbwegs unbekannten firma zu sitzen
baguette crossaint
Klingt educationally dope aber halt mit Job etwas minus, das ist einfach dieser blöde arbeitsmarkt mit deren unrealistischen vorstellungen.
Like jeder will den frontend ficker des jahrhunderts haben weil electron auch die welle macht
Einfach nur traurig das fast alles lowkey ein chrome browser ist
genau
noch nicht einen job gesehen der ansprechend ist
deswegen schwitz ich mir jetzt beim bnd ctf die eier ab
und hoffe dass die mal gut bezahlen haha
Lmao wenn du einen C/C++ Job findest lmk, nehme das gern weil fuck frontend shit
Ach laber der bnd hat auch ctfs?
hast du einen link dazu
.li
^
Explains how to write background processes that perform work on behalf of applications or serve content over the network.
@high citrus
refer to apple docs beforehand as usual
do I need to hijack the existing XPC Service used for external accessory?
@tardy narwhal have u worked with Blazor
Blazor is a feature of ASP.NET for building interactive web UIs using C# instead of JavaScript. It's real .NET running in the browser on WebAssembly.
this stuff

looks interesting
and no js
yeah blazor’s fun to work with
still waiting for u to stfu and get some bitches
.
oh get out you modern javascript nerds

ES6 all the way
thank you
is it made up
geo infiltrating servers now
LOL
geo is 
wakatime made me selfsign it too and it still works
mine just stopped letting me log in with apple id
hmmm
im on bigsur and it works
Where exactly is
13 .espl 0x00000001004db368 0x100360000 + 1553256
?
Would I be able to communicate from tweak to the (sandboxed) app, with a XPC service, and does it unsuspend the app?
me when checkra1n gui on arch linux
I currently use NSDistributedNotificationCenter but it doesn't wake the app, it only works when the app is active/ not suspended
The instruction in the code, I know you added logs. But if the process is running out of memory, logs aren't really guaranteed to work 100% since it also requires memory.
Basically 1553256 should be offset in your binary that its trying to execute
@twilit jungle
Hmm, is this crashing on launch?
Actually main is in the backtrace so it probably does. Looks like its straight up failing to get a selector of a class, yikes. How many other dylibs are being loaded in this process?
Everything... libs, other tweaks, etc.
If I had to guess, you are going over the 6 MB limit real quick
i am

50+ dylibs if i read this correctly @twilit jungle


@twilit jungle i dont see a plausible fix for this tho. I don't have much tweaks installed and all of the injected libs are some system libs
Disable a few libs you don't need for initial launch to see if that is actually the issue. There probably is a way to remove the limit.
you mean like disabling a few tweaks systemwide?


Could you check if the makefile is correct tho?
Its online

how is it not finding the function










very true




