Vincenz Conrad
Vincenz Conrad
I am still experiencing the same issue on: Linux kali 5.10.0-kali7-amd64 #1 SMP Debian 5.10.28-1kali1 (2021-04-12) x86_64 GNU/Linux gdbserver --version: GNU gdbserver (Debian 10.1-1.7) 10.1.90.20210103-git gdb --version: GNU gdb (Debian...
Thanks for the fast replies. I would really like to use the 'io = pwnlib.gdb.debug([binary], api=True)' version and not attach. I have now built the latest version of gdb/gdbserver from...
Thanks a lot that did the trick! :)
see my answer here, maybe it helps https://github.com/kwhat/jnativehook/issues/442
do it like this ```java public class Main extends Application { @Override public void start(Stage primaryStage) throws Exception{ // ...all your init stuff new Thread(()->{ try { Thread.sleep(1000); } catch...
I ended up simplifying like this: Note that the registration of the listeners should take place in the same thread as hook registration, right after hook registration. ```java public class...