From ecf121476585a0c456689987c14d89ecc6364625 Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 17 Nov 2016 04:47:33 -0500 Subject: driver: added --strings support (list strings found in the coff string table). --- src/driver/pe_driver_ctx.c | 4 ++++ src/internal/perk_driver_impl.h | 1 + src/skin/pe_skin_default.c | 3 +++ 3 files changed, 8 insertions(+) (limited to 'src') diff --git a/src/driver/pe_driver_ctx.c b/src/driver/pe_driver_ctx.c index accb9c1..b0135e9 100644 --- a/src/driver/pe_driver_ctx.c +++ b/src/driver/pe_driver_ctx.c @@ -166,6 +166,10 @@ int pe_get_driver_ctx( cctx.fmtflags |= PERK_OUTPUT_IMAGE_SYMBOLS; break; + case TAG_STRINGS: + cctx.fmtflags |= PERK_OUTPUT_IMAGE_STRINGS; + break; + case TAG_EXPSYMS: cctx.fmtflags |= PERK_OUTPUT_EXPORT_SYMS; break; diff --git a/src/internal/perk_driver_impl.h b/src/internal/perk_driver_impl.h index 4229977..a42f89d 100644 --- a/src/internal/perk_driver_impl.h +++ b/src/internal/perk_driver_impl.h @@ -18,6 +18,7 @@ enum app_tags { TAG_CATEGORY, TAG_SECTIONS, TAG_SYMBOLS, + TAG_STRINGS, TAG_EXPSYMS, TAG_IMPLIBS, TAG_IMPSYMS, diff --git a/src/skin/pe_skin_default.c b/src/skin/pe_skin_default.c index 9c376e0..5c21363 100644 --- a/src/skin/pe_skin_default.c +++ b/src/skin/pe_skin_default.c @@ -20,6 +20,9 @@ const struct argv_option pe_default_options[] = { {"symbols", 'm',TAG_SYMBOLS,ARGV_OPTARG_NONE,0,0,0, "list symbols found in the coff symbol table"}, + {"strings", 's',TAG_STRINGS,ARGV_OPTARG_NONE,0,0,0, + "list strings found in the coff string table"}, + {"expsyms", 'e',TAG_EXPSYMS,ARGV_OPTARG_NONE,0,0,0, "list exported symbols" }, -- cgit v1.2.3