Skip to content

v1.5

Compare
Choose a tag to compare
@trou trou released this 14 Aug 13:52
· 45 commits to master since this release
  • slice now supports specifying end relative to end of file (ex: slice /etc/passwd 10 -10 will output /etc/passwdfrom offset 10 to size-10 on stdout)
  • findso:
    • add -a to look for the given function in all .so files in specified paths
    • improve ld.so.conf parser to handle include directives

Example for findso:

$ findso -l -a strdup
/lib/i386-linux-gnu/libc.so.6
/usr/lib/i386-linux-gnu/libc.so.6
/lib/x86_64-linux-gnu/libasan.so.6
/lib/x86_64-linux-gnu/libasan.so.6.0.0
/lib/x86_64-linux-gnu/libasan.so.8
/lib/x86_64-linux-gnu/libasan.so.8.0.0
...