Maxime Meignan
Maxime Meignan
> I think the source button should have its own icon as well, as its a button that should exist on every remote... > > And maybe making sub menus...
It seems that process envrionnement structures (PEB, TEB, etc) are only implemented for 32bits, so it cannot work with 64 bits binaries for now
 Here is a *horrible* work around :) There seems to be an extra null-byte in the pipe at the start of the r2 process ?
Hi ! We acknowledged the issue, but we are currently working on a substantive refactoring of the project; we’ll consider solving this after, thanks for your understanding ;)
Yes, I just tested it against this program: ``` #include #include #include int main(int argc, char** argvv){ if(ptrace(PTRACE_TRACEME,0,0,0)==0) printf("Win 1\n"); else printf("Fail 1\n"); if(ptrace(PTRACE_TRACEME,0,0,0)==-1) printf("Win 2\n"); else printf("Fail 2\n"); return...
Quick question : I was trying to make `ptrace` return an unconstrained value if the request is symbolic or not supported (`!= PRACE_TRACEME`), by `inline_call`-ing the `ReturnUnconstrained` stub, but it...
Please squash this horrible git history when merging :D
thanks, I didn't know I could do that ! I squashed all changes into one commit and rebased it onto current master branch
Yes, this seems to work well, I ll let you test! Just a quick thing that is still buggy: the search function does not work as intended (if I remember...
Thanks for looking into it, I'll check this morning! > sorry for the delay This is an open source project you're gracefully giving time to, no need to feel sorry...