Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 5d9d8f4

Browse files
authored
fix: check whether the dst port is within the specified range (#1706)
1 parent f3a43fe commit 5d9d8f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

component/sniffer/dispatcher.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func (sd *Dispatcher) Enable() bool {
146146

147147
func (sd *Dispatcher) sniffDomain(conn *N.BufferedConn, metadata *C.Metadata) (string, error) {
148148
for s := range sd.sniffers {
149-
if s.SupportNetwork() == C.TCP {
149+
if s.SupportNetwork() == C.TCP && s.SupportPort(metadata.DstPort) {
150150
_ = conn.SetReadDeadline(time.Now().Add(1 * time.Second))
151151
_, err := conn.Peek(1)
152152
_ = conn.SetReadDeadline(time.Time{})

0 commit comments

Comments
 (0)