We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I can only get “event” and “name” now,How can we get hook ? This is my
Here is your
The text was updated successfully, but these errors were encountered:
Did you modified the syscall.hook dict while in the callback ? Look at the example.
syscall.hook
Sorry, something went wrong.
Use define_hook: https://github.com/KVM-VMI/nitro/blob/master/nitro/backends/backend.py#L80
define_hook
define a callback and pass it to this method.
def callback(syscall, backend): ... self.nitro.backend.define_hook('NtOpenFile', callback)
You can try to remove the definition of the hook, this will intercept all syscalls. Check if you have NtOpenFile in one of them.
Otherwise you need to investigate by yourself.
No branches or pull requests
Hi, I can only get “event” and “name” now,How can we get hook ?
This is my
Here is your
The text was updated successfully, but these errors were encountered: