Skip to content
Snippets Groups Projects
Commit a097e510 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Also ignore, for example, spurious "fwGCC: (Debian ... )" lines in output from strings(1).

parent 9e410d6f
No related branches found
Tags 215
No related merge requests found
Pipeline #279493 failed
......@@ -641,7 +641,7 @@ class ElfContainer(DecompilableContainer):
class Strings(Command):
re_debug_line = re.compile(r"^\s?\w{38,40}\.debug\n$")
re_gcc_line = re.compile(r"^.?GCC: \([^\)]+\)")
re_gcc_line = re.compile(r"^.{1,4}GCC: \([^\)]+\)")
@tool_required("strings")
def cmdline(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment