Lorenzo

Results 32 comments of Lorenzo

If someone is still interested at the moment you can add my [repo](https://gist.github.com/miticollo/6e65b59d83b17bacc00523a0f9d41c11#tldr). But on iOS 15 there are [two important issues](https://github.com/frida/frida/issues/2288#issuecomment-1537228187).

No because frida is a bit difficult to understand!

> So what's the current state of affairs? > > * iPad Pro / iPadOS 16.7.9 > * palera1n 2.0.0 rootless (semi-tethered) > * Frida 16.4.8 on iOS and MacBook...

[Here](https://github.com/frida/frida/releases) you can find **all** DEBs of Frida. Download `frida__iphoneos-arm64.deb` (because you use a rootless JB). To install the downloaded DEB you can use Sileo or Filza (it's up to...

This is a semantic issue. `AttributeError` is raised [here](https://github.com/keras-team/keras/blob/11be99a6b4ea050528ba1739cad8bf969e242d4c/keras/src/utils/summary_utils.py#L264) because a `keras.ops` (like [`GetItem`](https://github.com/keras-team/keras/blob/11be99a6b4ea050528ba1739cad8bf969e242d4c/keras/src/ops/numpy.py#L2568-L2638)) doesn't have the [`weights`](https://github.com/keras-team/keras/blob/11be99a6b4ea050528ba1739cad8bf969e242d4c/keras/src/layers/layer.py#L599-L618) property. In Keras, a `Layer` [is](https://github.com/keras-team/keras/blob/11be99a6b4ea050528ba1739cad8bf969e242d4c/keras/src/layers/layer.py#L60) an `Operation`, but vice versa is...

Thank u for the answer! At the moment I'm a bit busy with the latest exams at University (one is on Deep Learning). So I can't do it. Anyway using...

Hi @mattdangerw! This issue can be closed. It was solved with [this commit](https://github.com/keras-team/keras/commit/933579d3c4a585f236982d05d3a74921f9567415) and it included into Keras 3.5.0.

**Describe the bug** After spawning, `frida` can't attach to it. The following line fails: https://github.com/ChiChou/bagbak/blob/bab0de94ab0479424fff63899b365229244c1cdc/index.js#L158 and https://github.com/ChiChou/bagbak/blob/bab0de94ab0479424fff63899b365229244c1cdc/index.js#L160 throws the following exception: ```text [Error: Module not found at "/usr/lib/libSystem.B.dylib"] ``` [Full...

Attaching works. Indeed, my [frida-ios-dump fork](https://github.com/miticollo/frida-ios-dump/tree/chunking) works and correctly decrypt the app (only main executable not plugins). But it implicitly uses [`spawn`](https://github.com/frida/frida-tools/blob/c10668fe4565754887027ae00ad54df9a07d140d/frida_tools/application.py#L578) from Frida Python API. In particular it extends...

Thank you for your report! But I don't understand one thing. **Why doesn't it happen using Python?** `bagbak` spawns the mainExecutable correctly then attaching fails. My fork spawns the mainExecutable...