mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-26 05:01:53 +08:00
fix: 修复6个运行时问题
1. 抑制 gmtls 库的 handshake error stdout 噪声 gmtls/conn.go:1304 硬编码了 fmt.Println,在调用时临时重定向 os.Stdout 2. MySQL 3306 服务名误识别为 genetec-5400 nmap 指纹库将 MySQL 握手包的随机 salt 误匹配,通过 banner 特征校正 3. 管道输出时自动禁用 ANSI 控制码 检测 stdout 是否为终端,非终端时自动启用 NoColor 4. 进度条完成消息措辞精确化 去掉冗余冒号,保持信息简洁一致 5. URL 模式跳过不必要的 TLS 探测 用户已通过 -u 显式指定 http:// 协议时直接使用,不再做 TLS 握手 6. 无网络探测数据时降低默认重试次数 -np 跳过存活探测后,将默认重试从 3 降到 2,加速不可达主机的超时
This commit is contained in:
+32
-8
@@ -7,6 +7,7 @@ import (
|
||||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"os"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
@@ -57,14 +58,17 @@ func DetectHTTPSchemeContext(ctx context.Context, host string, port int, config
|
||||
}
|
||||
|
||||
// 第二步:尝试国密TLS握手(GM TLS fallback)
|
||||
gmConn, gmErr := gmtls.DialWithDialer(
|
||||
tlsDialer,
|
||||
"tcp", addr,
|
||||
&gmtls.Config{
|
||||
GMSupport: gmtls.NewGMSupport(),
|
||||
InsecureSkipVerify: true,
|
||||
},
|
||||
)
|
||||
// 抑制 gmtls 库的 fmt.Println("handshake error") 噪声输出
|
||||
gmConn, gmErr := suppressGMTLSStdout(func() (net.Conn, error) {
|
||||
return gmtls.DialWithDialer(
|
||||
tlsDialer,
|
||||
"tcp", addr,
|
||||
&gmtls.Config{
|
||||
GMSupport: gmtls.NewGMSupport(),
|
||||
InsecureSkipVerify: true,
|
||||
},
|
||||
)
|
||||
})
|
||||
|
||||
if gmErr == nil {
|
||||
_ = gmConn.Close()
|
||||
@@ -498,3 +502,23 @@ func hasMalformedURLPort(host string) bool {
|
||||
}
|
||||
return strings.Contains(host, ":")
|
||||
}
|
||||
|
||||
// suppressGMTLSStdout 抑制 gmtls 库硬编码的 fmt.Println("handshake error") 输出
|
||||
// gmtls/conn.go:1304 在握手失败时直接 Println 到 os.Stdout,无法通过 API 关闭
|
||||
var gmtlsStdoutMu sync.Mutex
|
||||
|
||||
func suppressGMTLSStdout(fn func() (net.Conn, error)) (net.Conn, error) {
|
||||
gmtlsStdoutMu.Lock()
|
||||
orig := os.Stdout
|
||||
devNull, err := os.OpenFile(os.DevNull, os.O_WRONLY, 0)
|
||||
if err == nil {
|
||||
os.Stdout = devNull
|
||||
}
|
||||
conn, dialErr := fn()
|
||||
os.Stdout = orig
|
||||
if devNull != nil {
|
||||
_ = devNull.Close()
|
||||
}
|
||||
gmtlsStdoutMu.Unlock()
|
||||
return conn, dialErr
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user