-
-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mythic-cli agent install updates and slight ui tweak
- Loading branch information
1 parent
68c2005
commit 1366ebe
Showing
16 changed files
with
185 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ package config | |
|
||
var ( | ||
// Version Mythic CLI version | ||
Version = "v0.3.13" | ||
Version = "v0.3.14" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package cmd | ||
|
||
import ( | ||
"github.com/MythicMeta/Mythic_CLI/cmd/internal" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
// configCmd represents the config command | ||
var rabbitmqResetCmd = &cobra.Command{ | ||
Use: "reset", | ||
Short: "reset the rabbitmq storage", | ||
Long: `Run this command to delete the current rabbitmq storage cache. Rabbitmq will recreate this on startup.`, | ||
Run: rabbitmqReset, | ||
} | ||
|
||
func init() { | ||
rabbitmqCmd.AddCommand(rabbitmqResetCmd) | ||
rabbitmqResetCmd.Flags().BoolVarP( | ||
&force, | ||
"force", | ||
"f", | ||
false, | ||
`Force deleting the rabbitmq storage and don't prompt for confirmation`, | ||
) | ||
} | ||
|
||
func rabbitmqReset(cmd *cobra.Command, args []string) { | ||
internal.RabbitmqReset(force) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"files": { | ||
"main.css": "/new/static/css/main.602591e6.css", | ||
"main.js": "/new/static/js/main.7f18fd93.js", | ||
"main.js": "/new/static/js/main.da33a068.js", | ||
"static/media/mythic-red.png": "/new/static/media/mythic-red.203468a4e5240d239aa0.png", | ||
"static/media/graphql.png": "/new/static/media/graphql.8f15978b39b0870a9f0e.png", | ||
"static/media/Mythic_Logo.svg": "/new/static/media/Mythic_Logo.6842c911bebe36d6f83fc7ced4a2cd99.svg", | ||
"static/media/mythic_red_small.svg": "/new/static/media/mythic_red_small.793b41cc7135cdede246661ec232976b.svg", | ||
"index.html": "/new/index.html", | ||
"main.602591e6.css.map": "/new/static/css/main.602591e6.css.map", | ||
"main.7f18fd93.js.map": "/new/static/js/main.7f18fd93.js.map" | ||
"main.da33a068.js.map": "/new/static/js/main.da33a068.js.map" | ||
}, | ||
"entrypoints": [ | ||
"static/css/main.602591e6.css", | ||
"static/js/main.7f18fd93.js" | ||
"static/js/main.da33a068.js" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/new/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><link rel="apple-touch-icon" href="/new/logo192.png"/><link rel="manifest" href="/new/manifest.json"/><title>Mythic</title><script defer="defer" src="/new/static/js/main.7f18fd93.js"></script><link href="/new/static/css/main.602591e6.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html> | ||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/new/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><link rel="apple-touch-icon" href="/new/logo192.png"/><link rel="manifest" href="/new/manifest.json"/><title>Mythic</title><script defer="defer" src="/new/static/js/main.da33a068.js"></script><link href="/new/static/css/main.602591e6.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html> |
6 changes: 3 additions & 3 deletions
6
.../mythic/public/static/js/main.7f18fd93.js → .../mythic/public/static/js/main.da33a068.js
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...hic/public/static/js/main.7f18fd93.js.map → ...hic/public/static/js/main.da33a068.js.map
Large diffs are not rendered by default.
Oops, something went wrong.