Skip to content

Commit

Permalink
🧹 Fix Mondoo Platform branding issues (#643)
Browse files Browse the repository at this point in the history
Signed-off-by: misterpantz <letha@mondoo.com>
  • Loading branch information
misterpantz authored Jul 3, 2023
1 parent 881d7fe commit 5df98e4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ To clear the terminal, type `clear`.

To exit, either hit CTRL + D or type `exit`.

## Scale cnspec across your fleet with the Mondoo Platform
## Scale cnspec across your fleet with Mondoo Platform

The easiest way to scale cnspec across your fleet is to sign up for a free Mondoo Platform account. With the Mondoo Platform, you can:
The easiest way to scale cnspec across your fleet is to sign up for a free Mondoo Platform account. With Mondoo Platform, you can:

- Aggregate and share reports
- Perform vulnerability scans
Expand All @@ -172,9 +172,9 @@ Go to [console.mondoo.com](https://console.mondoo.com/space/integrations/add/mon

To learn about Mondoo Platform, read the [Mondoo Platform docs](https://mondoo.com/docs/platform/home) or visit [mondoo.com](https://www.mondoo.com).

### Register cnspec with the Mondoo Platform
### Register cnspec with Mondoo Platform

To use cnspec with the Mondoo Platform, generate a token with the Mondoo platform, then run:
To use cnspec with Mondoo Platform, [generate a token in the Mondoo Console](https://mondoo.com/docs/cnspec/cnspec-platform/), then run:

```bash
cnspec login --token TOKEN
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ This example connects to Microsoft 365 using the PKCS #12 formatted certificate:
cmd.Flags().Bool("inventory-domainlist", false, "Set the inventory format to domain list.")

// policies & incognito mode
cmd.Flags().Bool("incognito", false, "Run in incognito mode. Do not report scan results to the Mondoo platform.")
cmd.Flags().Bool("incognito", false, "Run in incognito mode. Do not report scan results to Mondoo Platform.")
cmd.Flags().StringSlice("policy", nil, "Lists policies to execute. This requires incognito mode. You can pass multiple policies using --policy POLICY")
cmd.Flags().StringSliceP("policy-bundle", "f", nil, "Path to local policy bundle file.")
// flag completion command
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func (s Status) RenderCliStatus() {
log.Info().Msg(theme.DefaultTheme.Success("client authenticated successfully"))
} else {
log.Error().Err(s.Client.PingPongError).
Msgf("The Mondoo Platform credentials provided at %s didn't successfully authenticate with Mondoo Platform. Please re-authenticate with the Mondoo Platform. To learn how, read: https://mondoo.com/docs/cnspec/cnspec-adv-install/registration",
Msgf("The Mondoo Platform credentials provided at %s didn't successfully authenticate with Mondoo Platform. Please re-authenticate with Mondoo Platform. To learn how, read: https://mondoo.com/docs/cnspec/cnspec-adv-install/registration",
viper.ConfigFileUsed())
}

Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/vuln.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var vulnCmd = builder.NewProviderCommand(builder.CommandOpts{
cmd.Flags().Bool("inventory-domainlist", false, "Set inventory format to domain list.")

// policies & incognito mode
cmd.Flags().Bool("incognito", false, "Incognito mode. Do not report scan results to the Mondoo platform.")
cmd.Flags().Bool("incognito", false, "Incognito mode. Do not report scan results to Mondoo Platform.")
cmd.Flags().StringSlice("policy", nil, "List policies to execute. This requires incognito mode. To scan multiple policies, pass `--policy POLICY`")
cmd.Flags().StringSliceP("policy-bundle", "f", nil, "Path to local policy bundle file.")
// flag completion command
Expand Down

0 comments on commit 5df98e4

Please sign in to comment.