From 88ab20d544d2f59de5f33379bd97e3861e90b245 Mon Sep 17 00:00:00 2001 From: Erjan Kalybek <4899432+erjanmx@users.noreply.github.com> Date: Tue, 28 Jun 2022 19:52:15 +0200 Subject: [PATCH 1/2] Fix readme typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42b0861..574712e 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Usage of ./Mangle: -C string Path to the file containing the certificate you want to clone -I string - Path to the orginal file + Path to the original file -M Edit the PE file to strip out Go indicators -O string The new file name From c87464159f44fcb1af28c15ade6811d5ec16e440 Mon Sep 17 00:00:00 2001 From: Erjan Kalybek <4899432+erjanmx@users.noreply.github.com> Date: Tue, 28 Jun 2022 19:53:05 +0200 Subject: [PATCH 2/2] Fix typo --- Mangle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mangle.go b/Mangle.go index f6c424e..4c62e17 100644 --- a/Mangle.go +++ b/Mangle.go @@ -44,7 +44,7 @@ type FlagOptions struct { func options() *FlagOptions { outFile := flag.String("O", "", "The new file name") - inputFile := flag.String("I", "", "Path to the orginal file") + inputFile := flag.String("I", "", "Path to the original file") CertCloner := flag.String("C", "", "Path to the file containing the certificate you want to clone") GoStrip := flag.Bool("M", false, "Edit the PE file to strip out Go indicators") size := flag.Int("S", 0, "How many MBs to increase the file by")