Reverse unidbg various error collection tips (open at 12 o'clock)

Error one:

Exception in thread "main" java.lang.IllegalStateException: Unsupported arg: false

Solution: When passing the parameter false, replace it with 0

insert image description here

Error two:

[main]W/libc: pthread_create failed: clone failed: Out of memory

Solution: add code

emulator.getSyscallHandler().setEnableThreadDispatcher(true);

insert image description here

Guess you like

Origin blog.csdn.net/weixin_51111267/article/details/131332891