Skip to content

Releases: trou/rsbkb

v1.7.0

11 Nov 13:26
Compare
Choose a tag to compare
  • new escape and unescape applets for easy string (un)escaping
  • base: default to hex output for decimal input
  • improve code documentation

v1.6

14 Sep 12:32
Compare
Choose a tag to compare
  • new base applet for easy radix conversion
  • crate published for easy install

v1.5.1

15 Aug 07:41
Compare
Choose a tag to compare

Small fix for findso: --all and use *.so* instead of *.so.*

v1.5

14 Aug 13:52
Compare
Choose a tag to compare
  • 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
...

v1.4

20 May 19:11
Compare
Choose a tag to compare
  • crc can now compute all known types, alg list updated.
  • Add --recursive option to bgrep, thanks @marius851000!.
  • urlenc:
    • Add --exclude-chars
    • Add -u to use RFC3986
    • Add --custom to specify custom list of chars to encode

v1.3

24 Jan 12:47
Compare
Choose a tag to compare
  • slice now supports non-seekable files.
  • tsdec: verbose mode, which shows which type of timestamp was identified
  • bgrep: support multiple files to search in.
  • Tests now cover real CLI invocations thanks to assert_cmd

v1.2.1

26 Sep 12:37
Compare
Choose a tag to compare
  • Fix CLI parsing of flags
  • Quality of life improvement in findso: skip invalid files instead of exiting

v1.2

13 Aug 12:47
Compare
Choose a tag to compare
  • inflate/deflate applet
  • base64 update: support custom alphabet
  • global: check if given value is potentially a file and warn user

v1.1

08 Jan 13:30
Compare
Choose a tag to compare
  • Better error reporting
  • Better command line usage

v1.0

20 Aug 20:12
Compare
Choose a tag to compare
  • findso applet: find which shared libraries implements a give function / name
  • various code and dependencies updates