From 118f84751610e6e854fa5db8281eeda22047d662 Mon Sep 17 00:00:00 2001 From: bwatters-r7 Date: Mon, 12 Aug 2024 09:49:43 -0500 Subject: [PATCH] Add the debug files to the copy commands for "make-windows" --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index c3d669458..258596a6d 100644 --- a/Makefile +++ b/Makefile @@ -13,11 +13,13 @@ install-windows: @echo "Installing Windows payloads" ifneq ("$(wildcard c/meterpreter/output/*.x86.dll)","") @cp c/meterpreter/output/*.x86.dll $(METERPDIR) + @cp c/meterpreter/output/*.x86.debug.dll $(METERPDIR) else @echo "Note: Windows 32-bit not built, skipping" endif ifneq ("$(wildcard c/meterpreter/output/*.x64.dll)","") @cp c/meterpreter/output/*.x64.dll $(METERPDIR) + @cp c/meterpreter/output/*.x64.debug.dll $(METERPDIR) else @echo "Note: Windows 64-bit not built, skipping" endif