Releases: trou/rsbkb
Releases · trou/rsbkb
v1.7.0
v1.6
- new
base
applet for easy radix conversion - crate published for easy install
v1.5.1
Small fix for findso
: --all
and use *.so*
instead of *.so.*
v1.5
slice
now supports specifyingend
relative to end of file (ex:slice /etc/passwd 10 -10
will output/etc/passwd
from offset 10 to size-10 onstdout
)findso
:- add
-a
to look for the given function in all.so
files in specified paths - improve
ld.so.conf
parser to handleinclude
directives
- add
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
...
v1.4
crc
can now compute all known types, alg list updated.- Add
--recursive
option tobgrep
, thanks @marius851000!. urlenc
:- Add
--exclude-chars
- Add
-u
to use RFC3986 - Add
--custom
to specify custom list of chars to encode
- Add
v1.3
slice
now supports non-seekable files.tsdec
: verbose mode, which shows which type of timestamp was identifiedbgrep
: support multiple files to search in.- Tests now cover real CLI invocations thanks to assert_cmd
v1.2.1
- Fix CLI parsing of flags
- Quality of life improvement in
findso
: skip invalid files instead of exiting
v1.2
- inflate/deflate applet
- base64 update: support custom alphabet
- global: check if given value is potentially a file and warn user
v1.1
- Better error reporting
- Better command line usage
v1.0
findso
applet: find which shared libraries implements a give function / name- various code and dependencies updates