Ivan Fratric
Ivan Fratric
Hi! For 1) see the answers in https://github.com/googleprojectzero/Jackalope/issues/26 For 2), this is where https://github.com/googleprojectzero/Jackalope/blob/73ebb84aaa5926f6b1e3c81dbe48e93f14259c88/main.cpp#L159 comes in :-) Your target function can return 0 if the target is parsed correctly, and...
Hi Symeon, Having some kind of a repo would definitely help. I guess you are using file sample delivery (as opposed to shared memory sample delivery which is faster and...
For the git error: Right, that only works if you have ssh key configured in github. I'll make a note of that in the readme. First time I see the...
Does running `sudo xcode-select --reset` help?
Cool! Glad to hear that updating cmake resolves the issue. @agroce Does this resolve the issue for you as well?
ah, right, task_for_pid, that means the fuzzer doesn't have the rights to attach to the target process. This can be resolved in one of two ways: - Running the fuzzer...
Likely related to the 2nd point about Xcode: https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_debugger `Xcode automatically adds the Get Task Allow entitlement to apps that you build for debugging, while removing the entitlement before App...
Hmm, that's a strange error to get, my test app works normally with sudo, but I can reproduce with your target. Not sure if sudo is to blame here or...
So, it's not about sudo or build, I verified that the same error still occurs for Runlen even if it's built with Xcode and ran without sudo. The error in...
Right, fork() seems to be the problem here. If you add `--fork=false` to the Runlen command line arguments, it seems to work.