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 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() 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"