diff --git a/README.md b/README.md index 7ac8181..d5a5897 100644 --- a/README.md +++ b/README.md @@ -101,9 +101,9 @@ Flags: --logLevel string 设置日志等级 (Set log level) [trace|debug|info|warn|error|fatal|panic] (default "info") -o, --output string 输入结果文件输出的位置 (Enter the location of the scan result output) (default "./result.txt") -p, --port string 输入需要被扫描的端口,逗号分割 (Enter the port to be scanned, separated by commas (,)) - --prefix string 输入需要被枚举的服务名称 (Input Service Name) + --prefix string 输入枚举云服务的前缀 (Enter the prefix for enumerating the cloud service) -s, --service string 输入需要被枚举的服务名称 (Input Service Name) - --suffix string 输入需要被枚举的服务名称 (Input Service Name) + --suffix string 输入枚举云服务的后缀 (Enter a suffix for enumerating cloud services) -t, --timeout int 输入每个 http 请求的超时时间 (Enter the timeout period for every http request) (default 2) -u, --url string 输入目标地址 (Input [domain|url]) ``` diff --git a/README_CN.md b/README_CN.md index 4e2fcd3..097b005 100644 --- a/README_CN.md +++ b/README_CN.md @@ -81,21 +81,21 @@ oss.example.com ``` Usage: - EndpointSearch [flags] +EndpointSearch [flags] Flags: - -f, --file string 从文件中读取目标地址 (Input filename) - -h, --help help for EndpointSearch - --logLevel string 设置日志等级 (Set log level) [trace|debug|info|warn|error|fatal|panic] (default "info") - -o, --output string 输入结果文件输出的位置 (Enter the location of the scan result output) (default "./result.txt") - -p, --port string 输入需要被扫描的端口,逗号分割 (Enter the port to be scanned, separated by commas (,)) - --prefix string 输入需要被枚举的服务名称 (Input Service Name) - -s, --service string 输入需要被枚举的服务名称 (Input Service Name) - --suffix string 输入需要被枚举的服务名称 (Input Service Name) - -t, --timeout int 输入每个 http 请求的超时时间 (Enter the timeout period for every http request) (default 2) - -u, --url string 输入目标地址 (Input [domain|url]) +-f, --file string 从文件中读取目标地址 (Input filename) +-h, --help help for EndpointSearch +--logLevel string 设置日志等级 (Set log level) [trace|debug|info|warn|error|fatal|panic] (default "info") +-o, --output string 输入结果文件输出的位置 (Enter the location of the scan result output) (default "./result.txt") +-p, --port string 输入需要被扫描的端口,逗号分割 (Enter the port to be scanned, separated by commas (,)) +--prefix string 输入枚举云服务的前缀 (Enter the prefix for enumerating the cloud service) +-s, --service string 输入需要被枚举的服务名称 (Input Service Name) +--suffix string 输入枚举云服务的后缀 (Enter a suffix for enumerating cloud services) +-t, --timeout int 输入每个 http 请求的超时时间 (Enter the timeout period for every http request) (default 2) +-u, --url string 输入目标地址 (Input [domain|url]) ``` EndpointSearch 同样支持手动覆盖配置参数,-e 参数默认为配置中的 CloudEndpoint,-p 参数为配置中的 PortList diff --git a/cmd/rootCmd.go b/cmd/rootCmd.go index 8fd7196..cf129dd 100644 --- a/cmd/rootCmd.go +++ b/cmd/rootCmd.go @@ -91,8 +91,8 @@ func init() { RootCmd.Flags().StringVarP(&define.File, "file", "f", "", "从文件中读取目标地址 (Input filename)") RootCmd.Flags().StringVarP(&define.Url, "url", "u", "", "输入目标地址 (Input [domain|url])") RootCmd.Flags().StringVarP(&define.Service, "service", "s", "", "输入需要被枚举的服务名称 (Input Service Name)") - RootCmd.Flags().StringVarP(&define.Prefix, "prefix", "", "", "输入需要被枚举的服务名称 (Input Service Name)") - RootCmd.Flags().StringVarP(&define.Suffix, "suffix", "", "", "输入需要被枚举的服务名称 (Input Service Name)") + RootCmd.Flags().StringVarP(&define.Prefix, "prefix", "", "", "输入枚举云服务的前缀 (Enter the prefix for enumerating the cloud service)") + RootCmd.Flags().StringVarP(&define.Suffix, "suffix", "", "", "输入枚举云服务的后缀 (Enter a suffix for enumerating cloud services)") RootCmd.Flags().IntVarP(&define.TimeOut, "timeout", "t", 2, "输入每个 http 请求的超时时间 (Enter the timeout period for every http request)") RootCmd.Flags().StringVarP(&define.OutPut, "output", "o", "./result.txt", "输入结果文件输出的位置 (Enter the location of the scan result output)") RootCmd.Flags().StringVarP(&define.Port, "port", "p", "", "输入需要被扫描的端口,逗号分割 (Enter the port to be scanned, separated by commas (,))")