Gustavo Moreira
Gustavo Moreira
**Netfilter plugin improvements**: - Added support for every single Netfilter implementation in every single kernel version so far: - Supported _Netfilter hooks_ implementations: - v2.6ish to v4.2.8 - v4.3 to...
# Prerequisites Please answer the following questions for yourself before submitting an issue. - [X] I am running the latest version - [X] I checked the documentation and found no...
Added Sockstat linux plugin to enumerate every single process socket. The output format is based on the `ss` tools. It supports: * Unix socket * Inet/Inet6 sockets (Based on Vol2...
Fix issue #599: * Delete all the cache files * Make volshell reuses this functionality instead of re-implementing it.
Unless I'm missing something, it seems like pahole `--btf_encode_detached` doesn't export all the global variables ```shell $ ../pahole_git/build/pglobal -v vmlinux-5.8.0-53-generic | sed '/^$/d' | wc -l 26843 $ ../pahole_git/build/pahole --btf_encode_detached...
```shell $ cat struct_foo.c struct foo { int array[10][20]; }; int main() { struct foo bar; } EOF $ gcc -ggdb struct_foo.c -o struct_foo $ ../pahole_git/build/pahole struct_foo struct foo {...
This PR adds the `linux.ip.Addr` and `linux.ip.Link` plugins. ### linux.ip.Addr: - It displays information about all network interfaces including network namespace, interface index, interface name, mac address, promiscuous status, IPv4/IPv6...
It supports the following protocols: INET, IPv4, IPv6, ARP, NETDEV (ingress and egress hooks), BRIDGE and DECNET. Supported Netfilter hooks implementations: - kernels < 4.3 (Tested on kernel 3.11.0-26) -...
## `maximum_address` fixes in several layers I think there are still other places to fix but I haven't fixed everything as testing it will be massive. I think we should...
IMO the current implementation of an `optional` argument requirement with no `default` value is not working as expected. For instance, if I use the following and no `--output` is used,...