stringsext icon indicating copy to clipboard operation
stringsext copied to clipboard

build(docker): docker support

Open zaventh opened this issue 2 years ago • 0 comments

Here is a Dockerfile to build a docker image for stringsext if you are interested.

$ docker run --rm zaventh/stringsext --help
stringsext 2.3.4
Find multi-byte encoded strings in binary data.

USAGE:
    stringsext [FLAGS] [OPTIONS] [--] [FILE]...

FLAGS:
    -d, --debug-option          show how command-line-options are interpreted
    -h, --help                  Prints help information
    -l, --list-encodings        list predefined encoding and filter names for ENC
    -c, --no-metadata           never print byte-counter, encoding or filter
    -r, --same-unicode-block    require chars in finding to be in the same Unicode-block
    -V, --version               print version and exit

OPTIONS:
    -a, --ascii-filter <ascii-filter>
            filter applied after decoding (see `--list-encodings` for AF examples)

    -n, --chars-min <chars-min>                          minimum characters of printed strings
    -s, --counter-offset <counter-offset>                start counting input bytes with NUM
    -e, --encoding <encoding>...                         set (multiple) encodings to search for
    -g, --grep-char <grep-char>                          grep for characters with ASCII-code in output lines
    -p, --output <output>                                print not to stdout but in file
    -q, --output-line-len <output-line-len>              output line length in Unicode-codepoints
    -t, --radix <radix>                                   [possible values: O, X, D]
    -u, --unicode-block-filter <unicode-block-filter>
            filter applied after decoding (see `--list-encodings` for UBF examples)


ARGS:
    <FILE>...    paths to files to scan (or `-` for stdin)

zaventh avatar Jun 29 '23 20:06 zaventh