strings
Extract printable strings from files for malware analysis, with options to set minimum length and specify encoding to uncover hidden data and patterns.
Instructions
Extract printable strings from a file
Example usage:
- Basic strings extraction: { "target": "suspicious.exe" }
- With minimum length: { "target": "suspicious.exe", "minLength": 10 }
- With encoding: { "target": "suspicious.exe", "encoding": "l" }
Input Schema
Name | Required | Description | Default |
---|---|---|---|
encoding | No | String encoding (s=7-bit, S=8-bit, b=16-bit big-endian, l=16-bit little-endian, etc.) | |
minLength | No | Minimum string length to display | |
options | No | Additional command-line options | |
target | Yes | Target file or data to analyze |