Evan Teran

Results 399 comments of Evan Teran

In particular, I'd like to see if edb can work well on macOS, as I think there's a lot of potentials there and not a lot of tools available for...

Interesting... Well this is an encoding issue. Do we assume UTF-8? UTF-16? It looks like EDB is perhaps assuming Latin1 encoding in some places. I don't know if there is...

Right. Now that we have session files this is doable, but has a little bit of trickiness to it: 1. ASLR, we need to make sure to store breakpoints as...

So once we have the library load hooked, my current thoughts for how to store breakpoints would look like this: ``` { [ { "module" : "/lib64/ld-2.21.so", "checksum" : "",...

Exactly. But JSON numbers according to the JSON standard are floating point. So to prevent any unexpected loss of precision, we should store all addresses as strings and convert back...

Looks like Ubuntu now has a nice up to date package for capstone. My manually create "create-deb-qt5.sh" scripts seem to produce a working .deb file. So getting closer to getting...

Honestly, I just find the online instructions for creating a source Deb for a PPA confusing 😋. If you have any experience with that, I'd love any insight.

Firstly, I like the idea of finding a good way to make the disassembler more of a plugin. I've thought about this for a while, but never settled on what...

I like the idea of a universal breakpoint. However, we do need to be careful with using a 4 byte breakpoint in thumb mode, because I think it gets messy...