frida_linux_syscall_hook
Hook libc syscall wrappers on Linux to log arguments and capture activity for specified syscalls like open, connect, or execve.
Instructions
[Linux] Hook libc syscall wrappers and log arguments.
Hooks the specified libc wrappers (open, read, write, connect, execve, mmap, socket, etc.) with smart argument extraction for common syscalls.
target: process name or pid (string).
syscall_names: list of function names, e.g. ["open", "connect", "execve"].
duration_seconds: how long to capture (default 10).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | ||
| syscall_names | Yes | ||
| duration_seconds | No |