mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 02:55:27 +00:00
31 lines
753 B
Go
31 lines
753 B
Go
|
|
package smb
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"fmt"
|
||
|
|
"net"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"github.com/praetorian-inc/fingerprintx/pkg/plugins"
|
||
|
|
"github.com/praetorian-inc/fingerprintx/pkg/plugins/services/smb"
|
||
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/protocolstate"
|
||
|
|
)
|
||
|
|
|
||
|
|
// collectSMBv2Metadata collects metadata for SMBv2 services.
|
||
|
|
func collectSMBv2Metadata(host string, port int, timeout time.Duration) (*plugins.ServiceSMB, error) {
|
||
|
|
if timeout == 0 {
|
||
|
|
timeout = 5 * time.Second
|
||
|
|
}
|
||
|
|
conn, err := protocolstate.Dialer.Dial(context.TODO(), "tcp", net.JoinHostPort(host, fmt.Sprintf("%d", port)))
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
defer conn.Close()
|
||
|
|
|
||
|
|
metadata, err := smb.DetectSMBv2(conn, timeout)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
return metadata, nil
|
||
|
|
}
|