binwalk命令参数中文说明

binwalk参数英文说明:

Usage: binwalk [OPTIONS] [FILE1] [FILE2] [FILE3] ...

Signature Scan Options:
    -B, --signature              Scan target file(s) for common file signatures
    -R, --raw=              Scan target file(s) for the specified sequence of bytes
    -A, --opcodes                Scan target file(s) for common executable opcode signatures
    -m, --magic=           Specify a custom magic file to use
    -b, --dumb                   Disable smart signature keywords
    -I, --invalid                Show results marked as invalid
    -x, --exclude=          Exclude results that match
    -y, --include=          Only show results that match

Extraction Options:
    -e, --extract                Automatically extract known file types
    -D, --dd=      Extract signatures, give the files an extension of , and execute
    -M, --matryoshka             Recursively scan extracted files
    -d, --depth=            Limit matryoshka recursion depth (default: 8 levels deep)
    -C, --directory=        Extract files/folders to a custom directory (default: current working directory)
    -j, --size=             Limit the size of each extracted file
    -n, --count=            Limit the number of extracted files
    -r, --rm                     Delete carved files after extraction
    -z, --carve                  Carve data from files, but don't execute extraction utilities

Entropy Analysis Options:
    -E, --entropy                Calculate file entropy
    -F, --fast                   Use faster, but less detailed, entropy analysis
    -J, --save                   Save plot as a PNG
    -Q, --nlegend                Omit the legend from the entropy plot graph
    -N, --nplot                  Do not generate an entropy plot graph
    -H, --high=           Set the rising edge entropy trigger threshold (default: 0.95)
    -L, --low=            Set the falling edge entropy trigger threshold (default: 0.85)

Binary Diffing Options:
    -W, --hexdump                Perform a hexdump / diff of a file or files
    -G, --green                  Only show lines containing bytes that are the same among all files
    -i, --red                    Only show lines containing bytes that are different among all files
    -U, --blue                   Only show lines containing bytes that are different among some files
    -w, --terse                  Diff all files, but only display a hex dump of the first file

Raw Compression Options:
    -X, --deflate                Scan for raw deflate compression streams
    -Z, --lzma                   Scan for raw LZMA compression streams
    -P, --partial                Perform a superficial, but faster, scan
    -S, --stop                   Stop after the first result

General Options:
    -l, --length=           Number of bytes to scan
    -o, --offset=           Start scan at this file offset
    -O, --base=             Add a base address to all printed offsets
    -K, --block=            Set file block size
    -g, --swap=             Reverse every n bytes before scanning
    -f, --log=             Log results to file
    -c, --csv                    Log results to file in CSV format
    -t, --term                   Format output to fit the terminal window
    -q, --quiet                  Suppress output to stdout
    -v, --verbose                Enable verbose output
    -h, --help                   Show help output
    -a, --finclude=         Only scan files whose names match this regex
    -p, --fexclude=         Do not scan files whose names match this regex

    -s, --status=           Enable the status server on the specified port

binwalk参数中文说明:

用法: binwalk [选项] [文件1] [文件2] [文件3] ...

文件签名扫描选项:

    -B, --signature              使用常见的文件签名扫描目标文件
    -R, --raw=              使用指定字节序列扫描目标文件
    -A, --opcodes                使用普通可执行操作码签名扫描目标文件
    -m, --magic=          使用指定的特殊格式文件
    -b, --dumb                   禁用智能签名关键字
    -I, --invalid                显示标记为无效的结果
    -x, --exclude=          排除与str相匹配的结果
    -y, --include=          只显示与str相匹配的结果

提取选项:
    -e, --extract                自动提取已知的文件类型
    -D, --dd=      提取类型的签名, 文件扩展名为 , 执行的命令
    -M, --matryoshka             递归扫描提取文件
    -d, --depth=            限制-M递归的范围 (默认值: 8次)
    -C, --directory=       提取文件或文件夹至指定文件夹 (默认值: 当前工作文件夹)
    -j, --size=            限制每个提取文件的大小
    -n, --count=            限制提取文件的数量
    -r, --rm                     清除在提取过程中提取工具无法处理的零大小文件。
    -z, --carve                  从文件中切割数据,但是不执行提取程序

熵分析选项:
    -E, --entropy                计算文件熵
    -F, --fast                   使用快速但是不详细的熵分析
    -J, --save                   自动将由-E生成的的熵图保存为PNG文件而不是直接显示。
    -Q, --nlegend                将熵图的说明省略
    -N, --nplot                  不生成熵图
    -H, --high=           设置上升边缘熵触发阈值 (默认值: 0.95)
    -L, --low=           设置下降边缘熵触发阈值 (默认值: 0.85)

二进制比较选项:
    -W, --hexdump                执行输入文件的十六进制转储(s)和颜色编码区分:绿色—这些字节在所有文件中都是相同的。红色-这些字节在所有文件中都是不同的。蓝色—这些字节在某些文件中是不同的。
    -G, --green                  只显示在所有文件中都相同的字节所在的行
    -i, --red                    只显示在所有文件中都不相同的字节所在的行
    -U, --blue                  只显示在某些文件中都不相同的字节所在的行
    -w, --terse                  比较所有文件,但是只显示第一个文件的16进制转储

原始压缩选项:
    -X, --deflate                用蛮力识别可能的原始压缩数据流
    -Z, --lzma                   扫描原始LZMA压缩流
    -P, --partial                只使用常用的压缩选项搜索压缩流,速度快。
    -S, --stop                   在获得第一个结果后停止

通用选项:
    -l, --length=           需扫描的字节数
    -o, --offset=          跳过文件偏移量开始扫描
    -O, --base=             为所有的打印结果偏移量增加一个基址
    -K, --block=            设置文件块大小
    -g, --swap=             在扫描前每n字节反转一次
    -f, --log=             把结果记录到文件
    -c, --csv                    把结果记录到CSV文件中
    -t, --term                   格式化输出,已使用终端窗口
    -q, --quiet                  禁用输出到标准输出
    -v, --verbose                启用详细输出,包括目标文件MD5和扫描时间戳。
    -h, --help                   显示帮助信息
    -a, --finclude=         只扫描文件名匹配正则表达式的文件
    -p, --fexclude=         不扫描文件名匹配正则表达式的文件
    -s, --status=           在指定端口启动状态服务器

你可能感兴趣的:(linux,学习)