boborjan2
boborjan2
Could you detail what to set during export exactly? I also experience odd placement on the bottom. Thanks!
I tried the same in Linux (WSL). I can connect to the gdbserver via gdb in wsl prompt (gdb->target remote 172.21.208.1:1235), comm is visible in wireshark. Cutter started from the...
> Was able to obtain similar result by running everything on Linux. Thx, I updated description accordingly.
seemingly very similar or duplicate of https://github.com/rizinorg/cutter/issues/3277
This solution is nat part of v5.5 (while 5.4 does have it). @esp-lrh could you reopen it and/or add this commit to 5.5?
Hi, I use this code: https://github.com/qemu/qemu/blob/master/tests/tcg/i386/test-i386.c in a loop of 100000, embedded in a 32bit windows exe that is loaded to unicorn. It is compiled with -O0, printfs omitted. I...
the syscalls that are needed for these simple executables are implemented using int3 hooks. During the benchmark there are no hooks btw. Printfs are macroed out.
I try to extract the test code loop and create a stand-alone .c to make it easier to reproduce.
I extracted a subset of the test suite and injected it to the shellcode sample. I reduced the test to this simple case: ``` static inline void test_bsx(void) __attribute__((always_inline)); static...
The difference comes in when there are memory writes. Consider the following: ``` sub esp, 0x10 mov eax, 0x10000000 mov dword [e], 1 // local var on stack sub eax,...