I love the animated GIF you included in the readme that shows two sessions at once. It made it perfectly clear in moments what it does, and how easy it is to use.
Show HN: Credentials dumper for Linux using eBPF
11–20 of 51 posts
Re: Show HN: Credentials dumper for Linux using eBPF
#12Earlier quoted context omitted.
I read this as, due to pamspy setting an eBPF probe, pamspy needs to know where libpam.so lives. Not that the pamspy needs libpam to be built
Exactly, we have to found the address to hook on the system, so we need the path of the currently use of libpam by other process
Re: Show HN: Credentials dumper for Linux using eBPF
#13Re: Show HN: Credentials dumper for Linux using eBPF
#14Latest of libbpf (which seems like you vendored) comes with ability to calculate symbol offset for you. Thoughts on using that instead of your custom logic?
Re: Show HN: Credentials dumper for Linux using eBPF
#15So is this an exploit? Or are root privileges on the local machine needed to run it?
Re: Show HN: Credentials dumper for Linux using eBPF
#16Great clean example of using libbpf. Latest of libbpf (which seems like you vendored) comes with ability to calculate symbol offset for you. Thoughts on using that instead of your custom logic?
Re: Show HN: Credentials dumper for Linux using eBPF
#17So is this an exploit? Or are root privileges on the local machine needed to run it?
[0] https://man7.org/linux/man-pages/man7/capabilities.7.html#:~...
Re: Show HN: Credentials dumper for Linux using eBPF
#18Re: Show HN: Credentials dumper for Linux using eBPF
#19So is this an exploit? Or are root privileges on the local machine needed to run it?
Re: Show HN: Credentials dumper for Linux using eBPF
#20[1]: https://brendangregg.com/blog/2015-06-28/linux-ftrace-uprobe...