mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 14:06:44 +08:00

主要优化: • 创建字符串构建器池,字符串连接性能提升18倍,内存减少99.8% • 实施切片和Map对象池复用机制,减少频繁内存分配 • 优化SSH凭证生成,预分配切片容量减少58.6%内存使用 • 改进端口扫描和ICMP模块的Map容量预估机制 • 保持100%向后API兼容性 性能改进: - 字符串操作: 8154ns→447ns (18x提升) - 内存分配减少: 99.8% (8.3GB→16MB) - SSH凭证生成: 内存减少58.6% - 对象池复用率: 100% 新增文件: + common/utils/stringbuilder.go - 字符串构建器池 + common/utils/slicepool.go - 切片对象池 + common/utils/mappool.go - Map对象池 + common/utils/benchmark_test.go - 性能基准测试 + Common/utils/ - 大写版本兼容目录 修改文件: * Common/Parse.go - 使用优化的字符串连接和去重函数 * Plugins/SSH.go - 凭证生成预分配优化 * Core/ICMP.go - 网段统计Map容量预估 * Core/PortScan.go - 端口排除Map预分配 通过专业基准测试验证,显著改善大规模扫描场景的内存效率和性能表现。
182 lines
4.3 KiB
Go
182 lines
4.3 KiB
Go
package core
|
||
|
||
import (
|
||
"context"
|
||
"fmt"
|
||
"github.com/shadow1ng/fscan/common"
|
||
"github.com/shadow1ng/fscan/common/i18n"
|
||
"github.com/shadow1ng/fscan/common/output"
|
||
"github.com/shadow1ng/fscan/common/parsers"
|
||
"golang.org/x/sync/errgroup"
|
||
"golang.org/x/sync/semaphore"
|
||
"strings"
|
||
"sync"
|
||
"sync/atomic"
|
||
"time"
|
||
)
|
||
|
||
// EnhancedPortScan 高性能端口扫描函数
|
||
func EnhancedPortScan(hosts []string, ports string, timeout int64) []string {
|
||
// 解析端口和排除端口
|
||
portList := parsers.ParsePort(ports)
|
||
if len(portList) == 0 {
|
||
common.LogError("无效端口: " + ports)
|
||
return nil
|
||
}
|
||
|
||
// 预估排除端口数量,通常不会超过100个
|
||
excludePorts := parsers.ParsePort(common.ExcludePorts)
|
||
exclude := make(map[int]struct{}, len(excludePorts))
|
||
for _, p := range excludePorts {
|
||
exclude[p] = struct{}{}
|
||
}
|
||
|
||
// 计算总扫描数量
|
||
totalTasks := 0
|
||
for range hosts {
|
||
for _, port := range portList {
|
||
if _, excluded := exclude[port]; !excluded {
|
||
totalTasks++
|
||
}
|
||
}
|
||
}
|
||
|
||
// 初始化端口扫描进度条
|
||
if totalTasks > 0 && common.ShowProgress {
|
||
description := i18n.GetText("progress_port_scanning")
|
||
common.InitProgressBar(int64(totalTasks), description)
|
||
}
|
||
|
||
// 初始化并发控制
|
||
ctx, cancel := context.WithCancel(context.Background())
|
||
defer cancel()
|
||
to := time.Duration(timeout) * time.Second
|
||
sem := semaphore.NewWeighted(int64(common.ThreadNum))
|
||
var count int64
|
||
var aliveMap sync.Map
|
||
g, ctx := errgroup.WithContext(ctx)
|
||
|
||
// 并发扫描所有目标
|
||
for _, host := range hosts {
|
||
for _, port := range portList {
|
||
if _, excluded := exclude[port]; excluded {
|
||
continue
|
||
}
|
||
|
||
host, port := host, port // 捕获循环变量
|
||
addr := fmt.Sprintf("%s:%d", host, port)
|
||
|
||
if err := sem.Acquire(ctx, 1); err != nil {
|
||
break
|
||
}
|
||
|
||
g.Go(func() error {
|
||
defer func() {
|
||
sem.Release(1)
|
||
// 更新端口扫描进度
|
||
common.UpdateProgressBar(1)
|
||
}()
|
||
|
||
// 连接测试 - 支持SOCKS5代理
|
||
conn, err := common.WrapperTcpWithTimeout("tcp", addr, to)
|
||
if err != nil {
|
||
return nil
|
||
}
|
||
defer conn.Close()
|
||
|
||
// 记录开放端口
|
||
atomic.AddInt64(&count, 1)
|
||
aliveMap.Store(addr, struct{}{})
|
||
common.LogInfo("端口开放 " + addr)
|
||
common.SaveResult(&output.ScanResult{
|
||
Time: time.Now(), Type: output.TypePort, Target: host,
|
||
Status: "open", Details: map[string]interface{}{"port": port},
|
||
})
|
||
|
||
// 服务识别
|
||
if common.EnableFingerprint {
|
||
if info, err := NewPortInfoScanner(host, port, conn, to).Identify(); err == nil {
|
||
// 构建结果详情
|
||
details := map[string]interface{}{"port": port, "service": info.Name}
|
||
if info.Version != "" {
|
||
details["version"] = info.Version
|
||
}
|
||
|
||
// 处理额外信息
|
||
for k, v := range info.Extras {
|
||
if v == "" {
|
||
continue
|
||
}
|
||
switch k {
|
||
case "vendor_product":
|
||
details["product"] = v
|
||
case "os", "info":
|
||
details[k] = v
|
||
}
|
||
}
|
||
if len(info.Banner) > 0 {
|
||
details["banner"] = strings.TrimSpace(info.Banner)
|
||
}
|
||
|
||
// 保存服务结果
|
||
common.SaveResult(&output.ScanResult{
|
||
Time: time.Now(), Type: output.TypeService, Target: host,
|
||
Status: "identified", Details: details,
|
||
})
|
||
|
||
// 记录服务信息
|
||
var sb strings.Builder
|
||
sb.WriteString("服务识别 " + addr + " => ")
|
||
if info.Name != "unknown" {
|
||
sb.WriteString("[" + info.Name + "]")
|
||
}
|
||
if info.Version != "" {
|
||
sb.WriteString(" 版本:" + info.Version)
|
||
}
|
||
|
||
for k, v := range info.Extras {
|
||
if v == "" {
|
||
continue
|
||
}
|
||
switch k {
|
||
case "vendor_product":
|
||
sb.WriteString(" 产品:" + v)
|
||
case "os":
|
||
sb.WriteString(" 系统:" + v)
|
||
case "info":
|
||
sb.WriteString(" 信息:" + v)
|
||
}
|
||
}
|
||
|
||
if len(info.Banner) > 0 && len(info.Banner) < 100 {
|
||
sb.WriteString(" Banner:[" + strings.TrimSpace(info.Banner) + "]")
|
||
}
|
||
|
||
common.LogInfo(sb.String())
|
||
}
|
||
}
|
||
|
||
return nil
|
||
})
|
||
}
|
||
}
|
||
|
||
_ = g.Wait()
|
||
|
||
// 收集结果
|
||
var aliveAddrs []string
|
||
aliveMap.Range(func(key, _ interface{}) bool {
|
||
aliveAddrs = append(aliveAddrs, key.(string))
|
||
return true
|
||
})
|
||
|
||
// 完成端口扫描进度条
|
||
if common.IsProgressActive() {
|
||
common.FinishProgressBar()
|
||
}
|
||
|
||
common.LogBase(i18n.GetText("scan_complete_ports_found", count))
|
||
return aliveAddrs
|
||
}
|
||
|