Jonas

Results 9 comments of Jonas

The wildcards means you can do `handlr set 'video/*' mpv.desktop` to set all video types to mpv instead of having to set it for all the video/ types individually. Quotes...

I found the private keys using the hex encoded base64 encoded hex string, but im unable to use them to sign transactions as that's not something you can do in...

It seems the list of apps you can add is curated by Samsung so that makes this hard. You can always root your phone and add it manually if you...

> Why would the network change? Because the provider only has so much coverage. Outside their network they lease from others. > I think you can't check the name of...

It's kinda detrimental if qiling can't run the latest binaries from the most popular linux distro on x8664 (for over a year now!). If binaries run just fine when skipping...

Trying this but i cannot get any value to work: ```py ql = Qiling(argv, rootfs) print(f"{ql.uc.ctl_get_cpu_model()=}") ql.uc.ctl_set_cpu_model(UC_CPU_X86_EPYC_ROME) ``` ``` ql.uc.ctl_get_cpu_model()=0 Traceback (most recent call last): File "/Users/jole/pro/rebg/tools/ql/run.py", line 331, in...

Thanks for the explanation! Now i can actually set the cputype/model, but I'm still getting the ISA level error. ```py def run(rootfs, argv): ql = Qiling(argv, rootfs, cputype=X86_CPU_MODEL.AMD_ATHLON) print("cpu model",...

It seems the rseq syscall is being called from `ld-linux-x86-64.so.2`, so it's possibly unrelated to the ISA level check which happens in libc....

Here is a fairly clean workaround for now. No need to set cpumodel. ```python def try_patch_isa(ql: Qiling): # 00023881 8b8a28030000 mov ecx, dword [rdx+0x328] # 00023887 89cf mov edi, ecx...