file_strings
Extract printable and Unicode strings from binary files with configurable minimum length and encoding. Reports each string with its file offset for analysis.
Instructions
Extract printable and Unicode strings from binary files, similar to the Unix 'strings' command. Scans for runs of printable characters of a configurable minimum length and reports them with their file offsets. Supports ASCII, UTF-8, and UTF-16.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| encoding | No | Encoding to search for (default: ascii) | |
| file_path | Yes | Path to file | |
| min_length | No | Minimum string length (default: 4) |