sensepost / objection

📱 objection - runtime mobile exploration
GNU General Public License v3.0
7.42k stars 852 forks source link

(frida:13397): GLib-GIO-WARNING **: 00:04:46.046: _g_dbus_worker_do_read_cb: error determining bytes needed: Blob indicates that message exceeds maximum message length (128MiB #516

Closed GetCode747 closed 2 years ago

GetCode747 commented 2 years ago

what is it?

CDuPlooy commented 2 years ago

This happens if you try to transfer more than 128MiB using your agent (or the objection agent). You'll need to add some more context to this issue, like what you were trying to do at the time.

GetCode747 commented 2 years ago

I'm just using the memory dump app. "memory dump all ./file"

CDuPlooy commented 2 years ago

Yeah so the page it's reading is larger than 128MiB, I've been meaning to have a look at that at some point - in the mean time you can use r2frida, which I believe can do the same thing. I'll refer to this issue if I create a PR for this.

GetCode747 commented 2 years ago

Yeah so the page it's reading is larger than 128MiB, I've been meaning to have a look at that at some point - in the mean time you can use r2frida, which I believe can do the same thing. I'll refer to this issue if I create a PR for this.

thank you for your help,I'm going to try,I will continue to update the issues I encounter.

CDuPlooy commented 2 years ago

You can try this PR in the mean time #520, I may have made an off by one error somewhere so some additional eyes on it would be appreciated.

GetCode747 commented 2 years ago

You can try this PR in the mean time #520, I may have made an off by one error somewhere so some additional eyes on it would be appreciated.

Thanks for your response.