#development

1 messages · Page 418 of 1

restive ether
#

wtf

tepid olive
misty cradle
#

what the fuck

#

how did that work

#

its a local change

grim sparrow
#

_ _

#

this logic

#

literally

tepid olive
#

tbf they didn't have a bug bounty program but it was still shitty bc he didn't actually abuse it or harm people

misty cradle
#

he shouldve given the exploit to poor people

#

who never flown before

#

make it be over 10k people

grim sparrow
#

true

misty cradle
#

then they cant sue anyone

grim sparrow
#

what the fuck

tepid olive
#

apparently they "tested" it by having each employee test buying a ticket and that's it

misty cradle
#

all u need is cameren as tester for tweaks

#

his phone literally is like

restive ether
#

death

misty cradle
#

callBug();

#

gets every single bug in the tweak

restive ether
#

yes

misty cradle
#

yes

restive ether
#

me with odyssey

misty cradle
grim sparrow
#

@restive ether Superbro wants to be unmuted because he's finished his work fr

restive ether
#

ok

#

@turbid fjord dumbass

grim sparrow
#

lol

turbid fjord
#

Ty

misty cradle
tepid olive
#

Aw yes

#

The null license plate story

misty cradle
#

have u overflowed enough buffers yet

#

for pac unlock

tepid olive
#

Yep

grim sparrow
#

pog

tepid olive
#

I leak a kernel pointer via a ROP chain in the posix_pwn exploit in order to do it

#

لوحة المفاتيح new jailbreak coming soon 🙏

grim sparrow
misty cradle
#

oh ok

lethal ice
#

@grim sparrow that thing is gonna be so slow

#

60w for all those phones

grim sparrow
#

they have a 96w version for £10 more

tepid olive
#

Sup hotties

restive ether
#

true

lament mica
tepid olive
#

hey does anyone know the apt repo for ubuntu 20.10 groovy to install clang-6.0?
i have been trying to find it but can't, i have even used it before but forgot it

gaunt mesa
#

groovy gorilla

tepid olive
#

i updated clang to 11 and now theos is not compiling

#

was working fine with 6

gaunt mesa
#

uh

#

whats the issue u were having

restive ether
#

6

twilit jungle
undone nest
#

mf using a clang version from 1980

misty cradle
#

applerollingeyes

undone nest
tepid olive
#

looks like i rewrote everything again

misty cradle
#

okay :and:

tepid olive
#

im stupid

#

was using an incompatible theos toolchain

surreal mountain
#

TRUE

restive ether
#

ok

glacial matrix
upbeat wyvern
#

‪WTF @ATT we had this on landlines 20 years ago and you’re acting like it’s something special AT&T Free Msg: Great news! As one of our best customers, we gave you Caller ID at no extra cost! You don't have to do anything, just sit back and see who's calling before you answer. Enjoy additional security from AT&T.‬

lime pivot
#

ah american carriers, charging you for basic features and then taking credit for making them free

lime pivot
faint timber
#

I know how to do this for screenshots so prob could work for recording

midnight leaf
#

@faint timber Interesting. I'm curious where. Spent a couple hours on it but didn't get anywhere

tepid olive
#

Those 3 are armv7 instrs :p

upbeat wyvern
#

@lime pivot pretty sure they’re talking about name- callerid

tepid olive
#

but otherwise I'm pretty sure you got them all

#

good work

upbeat wyvern
#

But still

faint timber
#

idk if its something I should make public tho

restive ether
#

probably not

pearl sail
twilit jungle
#

And even then that is app specific

faint timber
#

false, hook apple libs?

twilit jungle
#

Yes you would be hooking apple libs, but that approach of blacking out content is app specific

faint timber
#

the blackout functionality is app specific but still based on apple drm

#

return false on the asset is protected

plucky cedar
#

I've used Theos in the past on IOS 9, to write a good number of tweaks, trying again on newer
hardware an os and can't get it to hook.

  1. Simple command line version works:

#include <stdio.h>
#import <UIKit/UIKit.h>

int main(int argc, char *argv[], char *envp[]) {
@autoreleasepool {
printf("Hello world!\n");
NSLog(@"Todayisnewtest");
return 0;
}
}

  1. Trying to hook springboard has no luck.

@import UIKit;

%hook SpringBoard

-(void)applicationDidFinishLaunching:(id)arg1{

NSLog(@"Todayisnewtest");
NSLog(@"Todayisnewtest");
NSLog(@"Todayisnewtest");

%orig; 

}

%end

  1. I'm using > oslog | grep "odayisnew" to grep back results from logs, in separate window.

Been searching for about 2 weeks, and complied out with Theos for about 10 hours,
arm64e (11 Pro Max) device, running ios 13.3, anything special I need to get it to run using jailbroken with Uncover.

twilit jungle
#

Build for arm64e

#

Shouldn’t have to do anything special for different jailbreaks

plucky cedar
#

Thanks 🙂 I’ll give it a go 🙂

#

do I need to specify a specific sdk to work with arm64e?

#

lipo: unknown architecture specification flag: arm64e in specifying input file -arch arm64e /projects/tweak252/.theos/obj/debug/arm64e/tweak252.dylib

grim sparrow
#

no

#

export ARCHS = arm64 arm64e

#

in the makefile somewhere

plucky cedar
#

thanks

#

anywhere to download a newerr version of lipo that supports arm64e?

tepid olive
surreal mountain
plucky cedar
#

thanks, get wrong cpu type when trying to run

surreal mountain
#

why

plucky cedar
#

-sh: /usr/bin/lipo: Bad CPU type in executable

surreal mountain
plucky cedar
#

running on device

surreal mountain
#

file /usr/bin/lipo

plucky cedar
#

/usr/bin/lipo: Mach-O 64-bit x86_64 executable, flags:<NOUNDEFS|DYLDLINK|TWOLEVEL|PIE>

twilit jungle
#

Yeah... binaries aren't interchangeable between different architectures

plucky cedar
#

thanks, so right now arm64e device no way to compile out theos that will run other then command line utils?

#

or move build tools off device? 🙂

twilit jungle
#

theos supports it, it would depend on the toolchain.

#

lipo should be included as part of the toolchain

plucky cedar
#

hmm I'm not sure by what you mean as toolchain, the lipo binaries I can get to run on ios, are from 2018, and seem to not support arm64e

twilit jungle
#

Yes because you would be using a different toolchain (linux toolchain). Though the iOS toolchains should work as well (make sure your installation is correct).

plucky cedar
#

I've tried multiple theos installs direct from the repo, and a few from cydia, any suggested versions that have better success?

#

also thanks greatly for the help 🙂 been at this a long time and any direction is very appreciated 🙂

twilit jungle
#

follow the official guide

plucky cedar
#

sweet, I'll give it a go from scratch 🙂

twilit jungle
#

And if you run into problems, look at the issues for that repo.

plucky cedar
#

thanks again 🙂

primal perch
#

💎🤲Duhh🤲💎

twilit jungle
#

shlorp 💎🤲

lime pivot
tepid olive
#

armv8 does not expose PC as a normal register so it's impossible to change it without branching somewhere. When I say pc relative I mean the instructions which act on data a certain distance away from the current program counter, not instructions which modify pc

lapis vessel
robust radish
#

I want to do this too. I made a CarPlay tweak but Netflix doesn’t work

tepid olive
slender copper
#

Hello, I have access to kernel r/w how would you install cydia and others ? Thanks in advance.

pearl sail
restive ether
#

plank filza isn’t r/w nfr

tepid olive
#

plank filza

slender copper
#

@pearl sail it’s not plank fileza

tepid olive
#

lmao imagine being that desperate

#

and using plank filza

slender copper
#

I’m using cicuta exploit

tepid olive
#

ok

pearl sail
tepid olive
#

Bro if you have to ask that question just stop

pearl sail
#

for real

#

don't go farther

#

just turn back

tepid olive
#

true

tepid olive
#

Cydia is not available in Apple's App Store, nor is it a website: it is installed on your device using a "jailbreaking" tool, such as Pangu or TaiG.

primal perch
#
if (message.contains("cock") or message.contains("cum")):
  funny = True
robust radish
#

cock is funny but not Cock

primal perch
#

yes

wicked summit
#
if any(funny_word in message for funny_word in ["cock", "cum"]):
    funny = True
gaunt mesa
#

this is cancer to look at

twilit jungle
gaunt mesa
primal perch
gaunt mesa
#

still waiting on ighostuhhS 17

primal perch
gaunt mesa
#

troll

valid venture
gaunt mesa
#

is this worse?

#

ah here

#

even worse

valid venture
#

you can make your name 30x “god the most gracious” in arabic

#

الله الرحمن الرحيم

tepid olive
#

⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣤⣤⣤⣀⣀⣀⣀⡀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⠟⠉⠉⠉⠉⠉⠉⠉⠙⠻⢶⣄⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣷⡀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⡟⠀⣠⣶⠛⠛⠛⠛⠛⠛⠳⣦⡀⠀⠘⣿⡄⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠁⠀⢹⣿⣦⣀⣀⣀⣀⣀⣠⣼⡇⠀⠀⠸⣷⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⡏⠀⠀⠀⠉⠛⠿⠿⠿⠿⠛⠋⠁⠀⠀⠀⠀⣿⡄⣠
⠀⠀⢀⣀⣀⣀⠀⠀⢠⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⡇⠀
⠿⠿⠟⠛⠛⠉⠀⠀⣸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡇⠀
⠀⠀⠀⠀⠀⠀⠀⠀⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣧⠀
⠀⠀⠀⠀⠀⠀⠀⢸⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⠀
⠀⠀⠀⠀⠀⠀⠀⣾⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀
⠀⠀⠀⠀⠀⠀⠀⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀
⠀⠀⠀⠀⠀⠀⢰⣿⠀⠀⠀⠀⣠⡶⠶⠿⠿⠿⠿⢷⣦⠀⠀⠀⠀⠀⠀⠀⣿⠀
⠀⠀⣀⣀⣀⠀⣸⡇⠀⠀⠀⠀⣿⡀⠀⠀⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀⠀⣿⠀
⣠⡿⠛⠛⠛⠛⠻⠀⠀⠀⠀⠀⢸⣇⠀⠀⠀⠀⠀⠀⣿⠇⠀⠀⠀⠀⠀⠀⣿⠀
⢻⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⡟⠀⠀⢀⣤⣤⣴⣿⠀⠀⠀⠀⠀⠀⠀⣿⠀
⠈⠙⢷⣶⣦⣤⣤⣤⣴⣶⣾⠿⠛⠁⢀⣶⡟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡟⠀
⢷⣶⣤⣀⠉⠉⠉⠉⠉⠄⠀⠀⠀⠀⠈⣿⣆⡀⠀⠀⠀⠀⠀⠀⢀⣠⣴⡾⠃⠀
⠀⠈⠉⠛⠿⣶⣦⣄⣀⠀⠀⠀⠀⠀⠀⠈⠛⠻⢿⣿⣾⣿⡿⠿⠟⠋⠁⠀⠀⠀

gentle grove
#

Codiciándolas

tepid olive
#
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⠟⠉⠉⠉⠉⠉⠉⠉⠙⠻⢶⣄⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣷⡀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⡟⠀⣠⣶⠛⠛⠛⠛⠛⠛⠳⣦⡀⠀⠘⣿⡄⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠁⠀⢹⣿⣦⣀⣀⣀⣀⣀⣠⣼⡇⠀⠀⠸⣷⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⡏⠀⠀⠀⠉⠛⠿⠿⠿⠿⠛⠋⠁⠀⠀⠀⠀⣿⡄⣠
⠀⠀⢀⣀⣀⣀⠀⠀⢠⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⡇⠀
⠿⠿⠟⠛⠛⠉⠀⠀⣸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡇⠀
⠀⠀⠀⠀⠀⠀⠀⠀⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣧⠀
⠀⠀⠀⠀⠀⠀⠀⢸⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⠀
⠀⠀⠀⠀⠀⠀⠀⣾⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀
⠀⠀⠀⠀⠀⠀⠀⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀
⠀⠀⠀⠀⠀⠀⢰⣿⠀⠀⠀⠀⣠⡶⠶⠿⠿⠿⠿⢷⣦⠀⠀⠀⠀⠀⠀⠀⣿⠀
⠀⠀⣀⣀⣀⠀⣸⡇⠀⠀⠀⠀⣿⡀⠀⠀⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀⠀⣿⠀
⣠⡿⠛⠛⠛⠛⠻⠀⠀⠀⠀⠀⢸⣇⠀⠀⠀⠀⠀⠀⣿⠇⠀⠀⠀⠀⠀⠀⣿⠀
⢻⣇⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣼⡟⠀⠀⢀⣤⣤⣴⣿⠀⠀⠀⠀⠀⠀⠀⣿⠀
⠈⠙⢷⣶⣦⣤⣤⣤⣴⣶⣾⠿⠛⠁⢀⣶⡟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡟⠀
⢷⣶⣤⣀⠉⠉⠉⠉⠉⠄⠀⠀⠀⠀⠈⣿⣆⡀⠀⠀⠀⠀⠀⠀⢀⣠⣴⡾⠃⠀
⠀⠈⠉⠛⠿⣶⣦⣄⣀⠀⠀⠀⠀⠀⠀⠈⠛⠻⢿⣿⣾⣿⡿⠿⠟⠋⠁⠀⠀⠀```
#

Ok guys

#

amogus

#

I got the overflowing buffer arrays in the posix_spawns

#

PAC is unlocked too

#

Now I gotta figure out how to escape sandbox

#

I think I’ll exploit a race condition via reading the tfp0 back and applying a Linux patch to the sandbox

primal perch
#

yea true

#

you just need to patch the x7 registers to bypass memory protections

grim sparrow
#

lmfao

gentle grove
#

You're the imposter

ashen birch
#

amog

gentle grove
#

Someone forked my status website and I can't tell why

pearl sail
#

I forked Procursus

#

I have no idea why

tepid olive
gentle grove
#

Delete everything on your fork

#

sed

#

Wait

tepid olive
#

hexedit the bin in your tweak's postinst

barren drum
#

is there a way to take a Swift object like a UITableCellView, and then x seconds later see if any subviews/values/subview's values changed?

twilit jungle
lime pivot
#

the Capt Corporation doesn’t mess around

#

man these corporations rebrand every 5 minutes I swear

#

13:59:47 up 7 days 21:10, 5 users, load average: 1.00, 0.89, 0.86 💁‍♀️

#

yep I do actually

#

it does this at random when waking up

restive ether
#

looks fine

robust radish
#

happens to me at least once a week

#

fuzzy screen

restive ether
#

m1 moment

lime pivot
#

but otherwise it’s worked perfectly, a TB3 and an HDMI monitor

primal perch
#

m1 moment

lime pivot
#

too bad I can’t go for a 3rd monitor but 2 keeps me happy

primal perch
lime pivot
#

if I try to daisy chain an HDMI adapter to my TB monitor, the TB goes black, lmao

#

my MacBook Pro handles that fine

#

I bet they rather mean active screens, but that’s too hard to explain on the spec sheet

#

plus if you open the lid I bet you either lose one display, lose both externals, or lose all of them

#

I’m on mac mini so can’t test that one

rain falcon
#

@lethal ice METH

primal perch
#

@lethal ice METH

tepid olive
#

why the Fuck is it snowing in texas

rain falcon
#

@lethal ice METH

gaunt mesa
#

WTF

#

i forgot my name was just cancerized

lethal ice
#

@rain falcon METH

#

@primal perch METH

#

@tepid olive METH

pearl sail
#

Please accept my request I just have rabies nothing else

lime pivot
gaunt mesa
#

brb

#

leaking chariz source code

lime pivot
#

damn

#

I did this to myself

pearl sail
#

Finally I can see chariz

gaunt mesa
#

u don't want to see it

#

@lime pivot can confirm

pearl sail
#

just javascript everything

gaunt mesa
#

uhh chariz is actually written in wasm

lime pivot
#

chariz is actually written in lolcode

gaunt mesa
#

we can't forget about the scratch script

#

there are a few there

tepid olive
#

my tweaks are actually written in neko

gaunt mesa
#

this is actually a thing

#

ayo the fuck

tepid olive
#

yes

gaunt mesa
#

what the

tepid olive
#

lol

gaunt mesa
#

weird shit

#

guys

#

im a rust dev now

#

because i wrote hello world script

tepid olive
#

kys

gaunt mesa
#

so now im gonna go on a crusade

#

and delete c

#

rust is superior

pearl sail
gaunt mesa
#

if ur code doesn't run in negative seconds then its shit

tepid olive
gaunt mesa
#

ok i am still yet to actually touch rust in all seriousness

#

seems totally unnecessary

tepid olive
#

i will not

#

i have no use for it

#

rust my ass

gaunt mesa
#

also the rust logo is shit

#

that's what matters

tepid olive
gaunt mesa
#

somehow the HTML and CSS logos are better

pearl sail
#

Graduate college and both you end having to do Rust lang that would be ironic as fuck

gaunt mesa
#

no

pearl sail
#

yes

gentle grove
#

C

gaunt mesa
#

C

#

what the fuck is a boblet

gentle grove
#

I am so bad at c

gentle grove
gaunt mesa
#

since when were those a thing

pearl sail
#

C++

gaunt mesa
#

C# intjcum

gentle grove
#

I don't know any c++

#

Well I know what it looks like and that's about all

pearl sail
#

#include <array> that is all I know

gaunt mesa
gentle grove
#

I should add ye to procursus

pearl sail
#

Aite ask Ye about that first

gentle grove
#

What

pearl sail
#

Ask Ye if he wants to be on Procursus first

gentle grove
#

@peak nova would you like to be on procursus

pearl sail
gentle grove
#

@jade plover would you like to be on procursus

#

they're not responding >:(

pearl sail
#

wild

#

ye said yes tho

gentle grove
#

where

tepid olive
#

@gaunt mesa check dm

gaunt mesa
#

ok

tepid olive
burnt niche
#

Thats all you need to know

gentle grove
#

NO

#

HATE THAT

#

NO MORE

burnt niche
#

Lmao

gentle grove
#

I LNOW

#

bruh

#

compressing 719M of backups using xz which should be very duplicated didnt decrease the size barely at all

#

decreased it by less than a megabyte

#

this is a scam

restive ether
gentle grove
#

this is really dumb but im gonna do 9 compression level

#

xz is using 4 GiB of ram

tepid olive
#

shut tf up

gentle grove
#

alright i think im doing something wrong because compression level 9 makes it take up 1 MiB more than the original files

#

or these are terrible files

tepid olive
gentle grove
#

going to be trying to do it without all this fancy piping, just tar -cJvf

tepid olive
undone nest
#

that doesnt sound very important

#

goodbye stomach lining

gentle grove
#

nope they really just dont compress well

surreal mountain
#

@gentle grove PLEASE zstd

gentle grove
#

yeah zstd did worse

faint timber
#

7zip gang shit

burnt niche
#

Winrar gangegg

gentle grove
tepid olive
#

Zstd is soooo much better than every other comp format currently

#

Actually an all around beast

queen rain
#

its finished @worn flame

gentle grove
#

zstd is the good catch all

#

xz gives the best ratio but is slowest

lime pivot
#
COMPRESSOR_bz2  := bzip2 -9
COMPRESSOR_lzma := lzma -9
COMPRESSOR_xz   := xz -9e
COMPRESSOR_zst  := zstd -9``` not sure why I’m using -9e lol that seems unnecessary
gentle grove
#

monka

#

Why all -9

tepid olive
#
        System.out.print("minesweeper-alpha: ");
        String input = stdIn.nextLine();
        String inputNoSpaces = "";
        if (input.equals("h") || input.equals("help")) {
            System.out.println("Commands Available...\n- Reveal: r/reveal row col\n-   Mark: m/mark   row col"+
                "\n-  Guess: g/guess  row col\n-   Help: h/help\n-   Quit: q/quit");
            promptUser();```
#

promptUser() inception

tardy narwhal
#

love me some recursion instead of while(true)

tepid olive
#

due in one hour

#

im tired

#

dont have time for proper solution

#

if it works ship it to the grader

#

all they run is a test suite

tardy narwhal
#

true that, it should pass lmao

gentle grove
#

#include <stdio.h>
int main() { while (1) { putchar('j'); } }

tepid olive
#
int main() { while (1) { main(); } }```
gentle grove
#

true

#

What happens if I run that

tepid olive
#

probably wouldnt compile

gentle grove
#

I'm running it

#

I'm on iOS so this will be pain

tepid olive
#

use

#

neovim on procursus

#

™️

gentle grove
#

I need a compiler

tardy narwhal
#

just write one

gentle grove
#

I have installed clang from the procursus

tardy narwhal
#

it’ll costs your soul & a half but it’ll do

gentle grove
#

Oh right

#

I don't have the standard headers

#

I'm going to ssh to my VPS and compile it there instead

#

It compiled without warnings (even when I tried -Wall)

#

It immediately segfaults

lime pivot
#

surprised sometimes that Packages doesn't compress quite as well

#

I mean most of mine is just old versions that match except for version, filename, sha256

#

and I intentionally put those at the bottom so it could compress more in one go

gentle grove
#

What if there was a jailbreak that used pacman instead of apt

lime pivot
#

what if no

gentle grove
#

what if yes

#

don't make fun of me

#

what if

#

Ok brb

#

Gimme a couple hours

lime pivot
#

thanks

gentle grove
#

Well actually wait would that be possible with an existing jb

#

I actually do not own any test devices

lapis vessel
tepid olive
gentle grove
#

Well I don't see what would break it on arm

#

The thing is then you have to repackage every single thing

tepid olive
#

Yeah

gentle grove
#

Arch Linux arm exists

misty cradle
#

@tepid olive do we have golang on procursus troll

tepid olive
#

Go ahead

#

Get golang on procursus

nimble parcel
#

@tepid olive as you're the tooling man dyou have any recommendations on how to solve the lipo issue?

grim sparrow
#

lmfao

wicked summit
tepid olive
turbid fjord
#

SwiftUI

tepid olive
#

Alsoooo considering the big sur arm64e abi is still marked preview, i bet you we’ll go through this again

nimble parcel
tepid olive
#

Sad woeis

nimble parcel
#

that is to say there won’t have to be any changes on our end

tepid olive
#

Im just ready for it to be stable

nimble parcel
#

yeah same

tepid olive
#

I wanted procursus m1 to be arm64e but to my surprise its apple tools only without an nvram flag

#

Silly shit

misty cradle
#

frcoal

surreal mountain
#

BBServer: Could not find section info for <dev.quiprr.notatio>. Ignoring bulletin: <private>

#

why

#

this worked like a week ago

#

someone giveme noti code

grim sparrow
misty cradle
#

haha funny bro

#

frcoa

#

l

grim sparrow
twilit jungle
#

It do if you compile iOS 14 with older xCODE toolchain

misty cradle
#

@twilit jungle Hey, I was wondering if you had gotten your GME share yet?

twilit jungle
#

💎 🤲

misty cradle
#

monkey haircut

nimble parcel
#

same

misty cradle
#

Procursus
A new, powerful cross-compilation system for *OS devices coupled with an APT repo.

Why?
At its birth, this build-system was meant to create an APT repo included in a specific jailbreak. That never came to pass, however, and it turned into more of a hobby project.

The current goal of Procursus is to provide a large set of consistently up-to-date *nix tools cross compiled to work on Darwin based platforms. It's built from the ground up in such a way that updating packages is quick and easy, helping to not fall behind upstream.

surreal mountain
#

ok

lofty echo
#

@twilit jungle sorry for ping, do you know why i can't invoke FLEXall ? I've disabled all my tweak in case of conflict except libFLEX and FLEXall, and long press status bar only work in AppStore Apps, it doesn't neither in HS/LS nor Apple Native apps like Music.

#

Same bug occur with FLEXing, so it may be libFLEX related only ?

gaunt mesa
#

@lofty echo tap and hold on the screen with 3 fingers

lofty echo
#

Didn't knew this gesture existed, but the problem persist... It works for AppStore apps but that's all

twilit jungle
#

arm64e slice missing from libFLEX, can't do much

gaunt mesa
twilit jungle
#

Either downgrade or wait

lofty echo
#

Apple Arcade apps doesn't work either, while other works

#

Weird than it works on app then no ?

twilit jungle
#

No its not weird

#

non system apps use arm64 slice hence why it works

lofty echo
#

Is there any recommanded version to downgrade to ?

twilit jungle
#

Whatever version is before the latest ig

lofty echo
#

Work perfectly now, big thanks

primal perch
#

@twilit jungle

twilit jungle
#

@primal perch

misty cradle
#

@twilit jungle

#

monkey haircut

lethal ice
#

wtf

#

♦️

#

💎

pearl sail
tepid olive
#

Did i ask u a question?

#

She been givin me that action

primal perch
#

@tepid olive

tepid olive
primal perch
faint timber
#

Procrastinate Pog

tepid olive
pearl sail
#

WHO IS CAPPING?

#

fuck you are right

ashen birch
#

CAPPER

faint timber
#

bruh professor was just talking shit about the other community college in the area lmao

tepid olive
tepid olive
tepid olive
#

me when calloc fails

#

AHHHHHH FUCK ME

plucky cedar
undone nest
tepid olive
#

“developer”

lime pivot
gentle grove
tepid olive
gentle grove
#

free your mom

tepid olive
#

also does anyone know why cr4shed literally just does not catch any crash logs

#

i have to use console and report crash uhh uhh uhh

gentle grove
#

Mother *your_mom = (Mother *)calloc(sizeof(Mother));

tepid olive
#

bitch that isn’t even correct

twilit jungle
gentle grove
#

free(your_mom)

twilit jungle
#

Off by 1 character

gentle grove
#

Of

tepid olive
undone nest
#

ok develop frens

#

today i have video for u

#

good video

gentle grove
tepid olive
#

calloc takes 2 args

#

smh

gentle grove
#

Oop

#

Mother *your_mom = (Mother *)calloc(1, sizeof(Mother));

lime pivot
#

hair can’t think

tepid olive
undone nest
#

wtf did anyone even watch the video

#

:(

gentle grove
#

@undone nest oh I've seen that already

#

It's good video

undone nest
#

its so good

#

yes

tepid olive
#

gm @lime pivot

gentle grove
#

doesn't he say like a swear word in German acterwatds

#

Idk how to spell

#

ß

lime pivot
#

gm burritzeroz

tepid olive
#

i just wrote horrible looking C code

tepid olive
undone nest
#

Scheiße

#

its very funny.

lime pivot
tepid olive
#

i shall show you in dm troll

gentle grove
#

Show me in dm

#

See if it's worse than mine

tepid olive
burnt niche
#

Yo

#

can anyone help me on my c++ lab

#

This shit is so fuckin confusing

#

Its due in 3 hrs

#

Stfu propruhh

#

Bruh im barely learning c++ this mother fucker

#

Thinks im a mathematician

gentle grove
#

I do not know c++ and I am terrible at c

burnt niche
#

Ex: If the input is:

8 7 38
3 -5 -1
the output is:

x = 3, y = 2
Use this brute force approach:

For every value of x from -10 to 10
   For every value of y from -10 to 10
      Check if the current x and y satisfy both equations. If so, output the solution, and finish.
Ex: If no solution is found, output:

There is no solution
You can assume the two equations have no more than one solution.

Note: Elegant mathematical techniques exist to solve such linear equations. However, for other kinds of equations or situations, brute force can be handy.```
tepid olive
#

better

#

lmgtfy ftw bro

burnt niche
#

i have no idea how to solve that equation

tepid olive
#

stfu

gaunt mesa
#

fuck

#

oh

#

my name looks cancerous on mobile

tepid olive
#

renai can you not use this nickname

gaunt mesa
#

why

#

just type @tepid olive is idiot

#

then u can ping me

tepid olive
#

true

burnt niche
#

Like wtf this mfer expects us to brute force a equation on barely our first month

#

Thats like 4 nested while loops fr

gaunt mesa
gentle grove
#

Well brute forcing is easy

#

At least for the human

#

You will give your computer suicical thoughts

lime pivot
#

google let me google that for you

burnt niche
gentle grove
#

I take it they don't allow you to brute force it?

burnt niche
#

No i can do it. Its just the equation he wants us to solve from user input

gaunt mesa
#

the correct term

#

is

#

guess and chec

burnt niche
#

Like i have no idea how to solve

#

Sure

#

got it

#
#include <iostream>
using namespace std;

int main() {
   int x1;
   int x2;
   int y1;
   int y2;
   int z1;
   int z2;
   bool haveSolution = false;
   cin >> x1 >> y1 >> z1 >> x2 >> y2 >> z2;
   int resX = 0;
   int resY = 0;
   
  
    for(int x=-10;x<=10;x++){
            for(int y=-10;y<=10;y++){
                if((x1*x+y1*y==z1) && (x2*x+y2*y==z2)){
                   resX = x;
                   resY = y;
                   haveSolution = true;
                    
                }
            }
            // if(haveSolution){
             
            // }
       }
       if(haveSolution) {
          //x = 3, y = 2
            cout << "x = " << resX << ", y = " << resY << endl;
       }
       else{
            cout << "There is no solution" << endl;
            
       }
     return 0;   
}
#

was pretty easy

#

nah our zylabs does not like that

gentle grove
#

Nice

tepid olive
#

@gaunt mesa

#

oh i can

gaunt mesa
gentle grove
#

You can what

robust radish
tepid olive
#

cool

#

mach-o-view tho

robust radish
#

this is an analysis engine, not a metadata viewer

#

s/o mach-o-view tho

tepid olive
#

oh

burnt niche
#

Who wants 10$

#

I have a job for you

tepid olive
#

nfrkek @grim sparrow

gaunt mesa
burnt niche
#

Bruh someone help

gaunt mesa
#

no

#

go play cod

#

or something

burnt niche
#

My 99% grade is gonna fucking drop

tepid olive
#

oh lord not a comp sci student who needs help

burnt niche
#

My teacher got us building a command line graphing calculator on the first month

#

Like wtf bruh

grim sparrow
burnt niche
#

This man is a fucking nutjob

#

U cant be fuckin serious man

#

Im literally gonna lost a letter grade

#

Cuz of this fucker

tepid olive
grim sparrow
#

Yep

tepid olive
#

sad!

grim sparrow
#

It’s beautiful

tepid olive
#

was a burrit0z original emote made with preview on macos

gaunt mesa
tepid olive
gaunt mesa
#

PREVIEW ON MACOS

#

LMAO

tepid olive
#

YES LITERALLY

pearl sail
#

You post your emotes here expect them to get them stolen lol

tepid olive
#

LITERALLY PREVIEW LMAO

grim sparrow
#

Oh yeah here’s a fun game

gaunt mesa
grim sparrow
#

According to App Store review, one of these isn’t appropriate

tepid olive
#

maishy

grim sparrow
#

Anyone got any suggestions as to which

gaunt mesa
tepid olive
#

no actually

#

hug2

pearl sail
gaunt mesa
#

no

grim sparrow
pearl sail
tepid olive
gaunt mesa
#

shut up

#

ef1 wen

#

e1f

#

elf

pearl sail
#

banned for spam

tepid olive
#

ef1 comes after ef3

grim sparrow
tepid olive
#

i can’t possibly spam all these so lemme just send an image of them all

grim sparrow
tepid olive
grim sparrow
#

Nah

tepid olive
grim sparrow
#

Yes

tepid olive
grim sparrow
tepid olive
grim sparrow
tepid olive
#

:maishy:

#

nfrkek

#

we did not ask

#

nice

#

so true

#

what’s the way to tell if you’re compiling for arm64e? ifdef __arm64e__?

#

i used it once before but forget

pearl sail
#

That was a short video

tepid olive
primal perch
#

ejaculate

grim sparrow
tepid olive
slender copper
#

does anybody know what posix_spawn does ?

#

in what path does it spawn the command?

#

when i call posix_spawn where is the command in the filesystem?

#

c

#

nvm

burnt niche
#

i ended up clutching

#

and i got it

gaunt mesa
#

ok

#

sofuckingfunny

burnt niche
#

yo WHATS UP GUYS its tale back again with another banger VIDEO! Today we re gonna be...

gaunt mesa
#

killing nerds in search

burnt niche
#

Waiting on youtube channel

#

I made a banner for you

surreal mountain
#

please

burnt niche
#

Last night

surreal mountain
#

someone that uses requests

gaunt mesa
#

send me banner

surreal mountain
#

in python

#

help me

burnt niche
#

Sending

tepid olive
#

Why not just write it in js

#

Like a real king

burnt niche
#

Js is ass

#

Lmao

#

@gaunt mesa fr

gaunt mesa
burnt niche
#

Using my art as wallpaper

gaunt mesa
burnt niche
#

I am already tired of c++

#

Lmao

#

What makes you think im gonna try something else

tepid olive
#

C is alpha language

#

pure C

upbeat wyvern
#

Is there another language? 🤔

wicked summit
#

asm

rain falcon
#

pwn gon

primal perch
gentle grove
#

im died

burnt niche
#

Bruh im binge watching dream

#

Instead of doing my hw

gentle grove
burnt niche
#

I just watched my first video by dream

#

Hes fucking anazing

gaunt mesa
#

wtf sam was alive

pearl sail
rain falcon
#

binger dont listen bro

gaunt mesa
pearl sail
lime pivot
burnt niche
#

Lmao took me a while to figure it out

lime pivot
#

we need a Casio/TI calculator emulator that outputs dot matrix to a terminal using unicode braille symbols

burnt niche
#

That would be amazing

gaunt mesa
#

Ti 84 plus CE

#

color edition

#

xterm-256color

burnt niche
#

I have no clue where to even start on a emulator

lime pivot
#

TI-84 is Z80 aka roughly an Intel 8086 clone

burnt niche
#

Seems really interesting tho i actually want to learn how theyre made. Not try to make them but learning the process would be interesting

#

Is making an emulator just reversing basically?

gaunt mesa
#

no

#

u ideally want to get the OS to run

#

instead of reversing and making it urself

burnt niche
#

Got it

lime pivot
#

you're building the CPU it runs on, and any hardware it expects to interact with, fully in software

burnt niche
#

Seems challenging

gaunt mesa
#

reverse the official TI emulator

tardy narwhal
#

Z80’s a bit big, 6502’s more reasonable in terms of reimplementing if you haven’t done any emulators yet

#

or chip8

lime pivot
#

possibly not quite that difficult to emulate a Z80 on Intel 32-bit but I also have no idea what I'm talking about so don't trust me

gaunt mesa
#

do u ever tho?

burnt niche
#

I am not sure if i could even think about emulators this yearfr

lime pivot
burnt niche
#

Just focused on learning as much as i can

tardy narwhal
#

emulators sounds hard but they’re doable, you’re essentially reimplementing their logic & actions

gaunt mesa
#

that's not a good idea either

#

learn stuff but don't forget to apply it

lime pivot
#

oh although more recent TIs run on eZ80 which is 8-bit with 24-bit ALU + address mode

burnt niche
#

True cuz then ud forget

gaunt mesa
#

it's why i'm shit it java now, because i haven't used it in almost a year nfr

burnt niche
#

Thats a win win situation fr

gaunt mesa
#

well u wouldn't forget it per se

#

maybe stdlib

tardy narwhal
#

@burnt niche peep that out for 6502 whenever you‘re up for it. fully documented

burnt niche
#

Yea im gonna end up watching simple emulator tutorials and explanations because thats something i always wondered about

lime pivot
#

if TI gave a shit about improving the TI-84 line they would have ditched Z80 ages ago and gone ARM, I mean ARM was good enough for Apple with the iPod since 2001

burnt niche
#

I am gonna bookmark that

#

Thanks brotha

tardy narwhal
#

then definitely watch his NES series

primal perch
#

i’m doing 6502 rn for my school project

lime pivot
#

yeah totally look at that if you think you'd be interested in learning how CPUs work

#

plenty out there about 6502 emulation given how many things used it back then

tardy narwhal
burnt niche
#

Most likely going to watch it tonight

tardy narwhal
#

@burnt niche bookmark this, it’s an entire walkthrough

burnt niche
#

Thanks bro. I m hella excited to watch this. Hopefully i can take something from this and learn alot

gaunt mesa
#

how u people so smart

#

i stg

#

everytime mass1ve enters the chat i just feel like an absolute dumbass who shouldn't be here

pearl sail
#

I am the most stupidest dumbass here chill out

tardy narwhal
#

You’re smart in your own domains like I am in domains I’m comfortable with, don’t downplay your knowledge but keep an open ear and mind to broaden. In that very sense, we’re equal in terms of being dumb

pearl sail
#

This is true

burnt niche
#

While you guys are arguing about whos more dumb

#

Hes got me lost on hex and bitwise operations fr

tardy narwhal
#

lmao do you just not get bitwise operators?

burnt niche
#

Never really paid attention to them lmao

#

Guess its time to learn

#

They seem simple tho

tardy narwhal
#

you’ll get the hang of them soon enough, it’s easy to think about them as logic gates directly

#

if you logically OR 0 with 1 you’ll get 1

burnt niche
#

That makes more sense. Im definetly gonna spend more time with this before i watch those so i can properly understand everything

tardy narwhal
#

and basically just matches and retains similar bits, or can flip bits and xor is essentially toggling.
there’s the “not and/or” variants but they’re inverses

burnt niche
#

Got it

tardy narwhal
#

if you look at a truth table on wikipedia or somewhere about the logic gates you’ll probably also get a good glimpse of it

rain falcon
burnt niche
tardy narwhal
#

in the nes vids he also explains them lmao

#

albeit briefly

burnt niche
#

He actually repliedfr

pearl sail
pearl sail
rain falcon
burnt niche
#

Leave the man alone lmao

rain falcon
#

in my bed, u want a piece

tepid olive
rain falcon
burnt niche
#

Pwns breaking into coolstars place to steal libhooker source code

#

Wait is it open source or am i dumb fr

rain falcon
burnt niche
#

That was me when the mfer ran the red light

rain falcon
#

yes

rain falcon
burnt niche
#

Lmao

#

Straight to car heaven

#

Thats all that matters

#

Shes gone now

tepid olive
#

bot wise operators

#

*bit

#

wtf autocorrect

burnt niche
#

Yes sir

#

Totalled

#

Sold for 27k tho

#

So i actually had profit

#

I got the car for 24k

grim sparrow
#

^

upbeat wyvern
#

@burnt niche lol neither he nor I would have absolutely any desire to see that

burnt niche
mighty hill
#

Hoping jailbreak gets released before 14.4 goes unsigned, can anyone make nonce generator setter for A14 before a jailbreak? Just so to save 14.4 blobs.

restive ether
#

man

upbeat wyvern
#

The jailbreak is for 14.3 not 14.4

#

Also you don’t need a nonce setter to save blobs, only to use them

restive ether
#

i already told you no nfr

upbeat wyvern
#

And methinks you may be in the wrong channel

restive ether
mighty hill
upbeat wyvern
#

That’s not to save the blob it’s to get the apnonce - which yes is needed to save for some devices

restive ether
#

@grim sparrow birthday brit birthday brit

grim sparrow
#

Wow

mighty hill
#

A14 never had a jailbreak/nonce setter before

grim sparrow
#

Not wrong

mighty hill
#

I mean right we can save blobs for temporary use in futurerestore

restive ether
#

you wouldn’t be able to save those for a device that you’ve never known the apnonce for

upbeat wyvern
#

Right

pearl sail
mighty hill
restive ether
#

that’s not going to happen on 14.4

lime pivot
mighty hill
restive ether
#

you can request all you want, that doesn’t mean someone’s gonna make it

mighty hill
#

Its to have 14.4 blobs atleast

restive ether
#

if they do it’s gonna be awhile

mighty hill
#

I know that one too

#

Won’t be difficult to know kernel slide

upbeat wyvern
#

@vivid dew the kernel slide is 42

pearl sail
mighty hill
#

Yes I don’t. At least i know its need to be known for most things we do to bypass keenel. ASLR implements this randomisation is by sliding the entire process address space by a given amount.

pearl sail
#

r/jb discord #development figures out how to jailbreak 14.4. Someone get a Twitter jailbreak news account to tweet about this.

#

or GeoSn0w

mighty hill
#

I was talking about 14.3

primal perch
#

the memory addresses for all accessible data points by the bus are shifted by a constant offset to retain security

pearl sail
primal perch
#

big words = you know what you’re doing

pearl sail
#

the memory addresses for all accessible data points by the bus are shifted by a constant offset to retain security

undone nest
#

wouldnt that be just a bit too easy

pearl sail
#

It is just like SIP

#

just go into recovery mode

undone nest
#

true

#

go into recovery

#

csrutil disable

#

and do the jailbreak

#

ez

wicked summit
#

never

#

that is the opposite wtf

#

turning off dark blockchain makes your device extremely prone to bricking

#

oh no

#

really

pearl sail
#

@grave sparrow They legit haven't change anything that should make it harder for people to disable SIP on m1 macs

#

hmm weird everywhere I read seems to indicate it works fine

#

and the same on intel

primal perch
#

yes you just have to patch offset 0x80040200 iirc

#

in iboot

#

0x80040200

#

the Win32 API [Copyright (C) Microsoft Corporation 2021] has the newest technologies

#

allowing you to compute faster than any competitor

#

apple has announced they are moving to intel's 14nm process for future iPhone processors as well

#

tsmc 5nm cannot keep up

#

as an intel shareholder i implore you to go purchase an i9-10900K and a Z490 motherboard

#

amd ryzen is known for its stability issues

#

go purchase intel for that ease of mind you can rely on

#

true

pearl sail
#

I finally cut my cocaine nail off

undone nest
wicked summit
#

there are British woman?

#

wtf

#

this shit gonna turn me atheist

#

why would God do this

upbeat wyvern
#

I never bought AMD again after buying one and it being garbage back in like 2000

#

Intel processor I bought the same time was still working 10 years later

#

Hmm, maybe ‘99

restive ether
#

i wasn’t born yet

pearl sail
#

I was 8 years old

#

Intel was a beast back then

#

unlike now

mighty hill
#

Is it possible to derive nonce generator from Apnonce?

pearl sail
#

it just says sus

burnt niche
lethal ice
#

ElectroBOOM

#

@primal perch

#

ElectroBOOM ElectroBOOM ElectroBOOM ElectroBOOM ElectroBOOM

lime pivot
gaunt mesa
#

tri angle

#

why aren't u a bi angle

#

or mono angle

lime pivot
#

too many angles

#

I just want to hear the one angle I agree with

misty cradle
#

@vivid dew are u a nice person

pearl sail
west hazel
#

Hey guys I need help

#

I have and wanted to help my errors of the Cydia repo I cloned from GitHub

#

I need help and using git commands and to update my Cydia repo and I have errors I never seen or heard can anyone help?

tepid olive
#

Can you say what the errors are

west hazel
#

Git commands errors and how to update a cloned repo from GitHub on terminal Linux

#

I have errors

frozen fable
#

nobody can help if we can't see any output

#

yes

#

we know that

#

but what errors

west hazel
#

I will send some

frozen fable
#

show us

tepid olive
#

balls

#

The developer

#

Imagine

tepid olive
#

balls the developer

west hazel
#

All I did was clone a repo using git

#

And it comes with a . Git folder

tepid olive
#

you clone through git clone

tepid olive
west hazel
#

Yes I did

tepid olive
#

That’s

west hazel
#

But I can’t pull right away

tepid olive
#

git pull

west hazel
#

Or push

#

I use git pull

#

With repo url

tepid olive
#

why cant you use git clone? fr

west hazel
#

Really

#

It worked

tepid olive
#

Just use it and see what happens

#

Smh

#

Ok

#

There you go

west hazel
#

But I can’t update the repo

#

For Cydia

frozen fable
#

Hackers-iPad

west hazel
#

I named it That

tepid olive
#

true

frozen fable
#

I noticed

west hazel
#

Git commands are new to me 😝

#

But it won’t let me use git pull

#

It gives me errors

tepid olive
#

why you need to use git for cydia tho?

west hazel
#

And I can’t update the repo I cloned

#

Like I added stuff on my file browser and it won’t let me git pull , fetch or push

tepid olive
west hazel
#

Oh can u help me?

tepid olive
#

if you want to update you need to commit the changes

west hazel
#

Can I do it in git commands in terminal?

tepid olive
#

so basically you are trying to make your repo?

frozen fable
west hazel
#

I already made repo

#

I added stuff to packages folder

#

But the section won’t pop up on repo

#

Even though it’s added

#

It’s like my Cydia repo won’t update with git

#

Someone said they use git commands and git pages to update repo

#

And to fix issues and more

#

Without having to go to GitHub

tepid olive
#

ye someone here might help you out.. maybe kirb if he comes online.. just dont ping anyone

west hazel
#

Oh I wish

#

Can U tell him to help me?

tepid olive
#

see if it helps you out

#

thats all i can do

west hazel
#

K

tepid olive