diff --git a/README.md b/README.md index da64ec0..ad11d92 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ 内网综合扫描工具,一键自动化漏扫。 -**版本**: 2.1.3 +**版本**: 2.1.4 ## 功能特性 diff --git a/README_EN.md b/README_EN.md index 1166a6c..d91849c 100644 --- a/README_EN.md +++ b/README_EN.md @@ -4,7 +4,7 @@ Comprehensive intranet scanning tool for automated vulnerability assessment. -**Version**: 2.1.3 +**Version**: 2.1.4 ## Features diff --git a/common/globals.go b/common/globals.go index f749ad2..b201478 100644 --- a/common/globals.go +++ b/common/globals.go @@ -62,7 +62,7 @@ const ( // 版本信息,通过 ldflags 注入 var ( - version = "2.1.3" + version = "2.1.4" commit = "unknown" date = "unknown" ) diff --git a/web/api/router.go b/web/api/router.go index b2cc0d5..91bd08c 100644 --- a/web/api/router.go +++ b/web/api/router.go @@ -49,5 +49,5 @@ func healthCheck(w http.ResponseWriter, r *http.Request) { // systemInfo 系统信息 func systemInfo(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "application/json") - w.Write([]byte(`{"version":"2.1.1","build":"web"}`)) + w.Write([]byte(`{"version":"2.1.4","build":"web"}`)) }