From e1ef4e0e1193d48010a74862e2cae789e7de69e1 Mon Sep 17 00:00:00 2001 From: wjlin0 Date: Sun, 28 Jan 2024 23:00:55 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=89=20CVE-2024-23897=20v1.0.1=20fix=20?= =?UTF-8?q?errors=20describe?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/runner/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/runner/options.go b/pkg/runner/options.go index f38e9b0..bdfeefd 100644 --- a/pkg/runner/options.go +++ b/pkg/runner/options.go @@ -21,7 +21,7 @@ func ParseOptions() *types.Options { ) flagSet.CreateGroup("config", "Config", flagSet.StringSliceVarP(&options.Command, "command", "c", nil, "JinKens Command to run. (e.g. -c 'who-am-i')", goflags.FileCommaSeparatedStringSliceOptions), - flagSet.StringSliceVarP(&options.Args, "args", "a", nil, "The file path that needs to be read. (e.g. -f /etc/passwd)", goflags.CommaSeparatedStringSliceOptions), + flagSet.StringSliceVarP(&options.Args, "args", "a", nil, "JinKens Command args.", goflags.CommaSeparatedStringSliceOptions), flagSet.BoolVarP(&options.Exec, "exec", "e", false, "JinKens Execute command."), flagSet.BoolVarP(&options.ListAvailableCommands, "list-available-commands", "lac", false, "List available commands."), )