From 5ba8b087ff8e4c5b4ec080b5d0458383c6d5a0a2 Mon Sep 17 00:00:00 2001 From: Seth Art Date: Tue, 2 Jul 2024 11:45:44 -0400 Subject: [PATCH 1/3] Update Makefile to include 386 linux binary for release action --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e96cf9e..d4b2639 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ all: windows linux macos .PHONY: release release: clean mkdir -p ./cloudfox - mkdir -p ./cloudfox + GOOS=windows GOARCH=amd64 go build -o ./cloudfox/cloudfox.exe . zip ./cloudfox/cloudfox-windows-amd64.zip ./cloudfox/cloudfox.exe rm -rf ./cloudfox/cloudfox.exe @@ -33,6 +33,10 @@ release: clean zip ./cloudfox/cloudfox-linux-amd64.zip ./cloudfox/cloudfox . rm -rf ./cloudfox/cloudfox + GOOS=linux GOARCH=386 go build -o ./cloudfox/cloudfox . + zip ./cloudfox/cloudfox-linux-386.zip ./cloudfox/cloudfox . + rm -rf ./cloudfox/cloudfox + GOOS=darwin GOARCH=amd64 go build -o ./cloudfox/cloudfox . zip ./cloudfox/cloudfox-macos-amd64.zip ./cloudfox/cloudfox rm -rf ./cloudfox/cloudfox @@ -42,4 +46,4 @@ release: clean rm -rf ./cloudfox/cloudfox clean: - rm -rf ./cloudfox \ No newline at end of file + rm -rf ./cloudfox From 0ac24e3aa1600b8dd7d7da9ad14614e9ebace1a0 Mon Sep 17 00:00:00 2001 From: Seth Art Date: Tue, 2 Jul 2024 11:48:36 -0400 Subject: [PATCH 2/3] Update utils.go bumping the version so that once this is merged and we can create a new tag and release on the new version --- globals/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/globals/utils.go b/globals/utils.go index 1fba2fe..8c45df7 100644 --- a/globals/utils.go +++ b/globals/utils.go @@ -4,4 +4,4 @@ const CLOUDFOX_USER_AGENT = "cloudfox" const CLOUDFOX_LOG_FILE_DIR_NAME = ".cloudfox" const CLOUDFOX_BASE_DIRECTORY = "cloudfox-output" const LOOT_DIRECTORY_NAME = "loot" -const CLOUDFOX_VERSION = "1.14.0" +const CLOUDFOX_VERSION = "1.14.1" From 738085dc780717aa6eba6e9011136f69afc6075d Mon Sep 17 00:00:00 2001 From: David Date: Wed, 3 Jul 2024 17:59:19 -0400 Subject: [PATCH 3/3] fix typo from codespell --- gcp/services/iamService/access-tokens.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcp/services/iamService/access-tokens.go b/gcp/services/iamService/access-tokens.go index 5e8c19b..834ad40 100644 --- a/gcp/services/iamService/access-tokens.go +++ b/gcp/services/iamService/access-tokens.go @@ -17,7 +17,7 @@ package iamservice // Projects []string // } -// // Be incorportated in iam.go +// // Be incorporated in iam.go // func (m *AccessTokensModule) PrintAccessTokens(outputFormat string, outputDirectory string, verbosity int) error { // GCPLogger.InfoM(fmt.Sprintf("Enumerating GCP local access tokens (%s, %s)...", color.CyanString("default user token"), color.RedString("application-default token")), globals.GCP_ACCESSTOKENS_MODULE_NAME) // tokens := gcp.ReadRefreshTokens()