* enable errcheck and staticcheck for golangci-lint v2 and resolve all issues * skip lint on intentional reference of deprecated DetectorType values
165 lines
4.4 KiB
Go
165 lines
4.4 KiB
Go
package ftp
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net"
|
|
"net/textproto"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/jlaffaye/ftp"
|
|
regexp "github.com/wasilibs/go-re2"
|
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/detectors"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/detector_typepb"
|
|
)
|
|
|
|
const (
|
|
// https://datatracker.ietf.org/doc/html/rfc959
|
|
ftpNotLoggedIn = 530
|
|
|
|
defaultVerificationTimeout = 5 * time.Second
|
|
)
|
|
|
|
type Scanner struct {
|
|
// Verification timeout. Defaults to 5 seconds if unset.
|
|
verificationTimeout time.Duration
|
|
}
|
|
|
|
// Ensure the Scanner satisfies the interface at compile time.
|
|
var _ detectors.Detector = (*Scanner)(nil)
|
|
var _ detectors.CustomFalsePositiveChecker = (*Scanner)(nil)
|
|
|
|
var (
|
|
keyPat = regexp.MustCompile(`\bftp://[\S]{3,50}:([\S]{3,50})@[-.%\w\/:]+\b`)
|
|
)
|
|
|
|
// Keywords are used for efficiently pre-filtering chunks.
|
|
// Use identifiers in the secret preferably, or the provider name.
|
|
func (s Scanner) Keywords() []string {
|
|
return []string{"ftp://"}
|
|
}
|
|
|
|
// FromData will find and optionally verify URI secrets in a given set of bytes.
|
|
func (s Scanner) FromData(ctx context.Context, verify bool, data []byte) (results []detectors.Result, err error) {
|
|
dataStr := string(data)
|
|
|
|
matches := keyPat.FindAllStringSubmatch(dataStr, -1)
|
|
|
|
for _, match := range matches {
|
|
urlMatch := match[0]
|
|
password := match[1]
|
|
|
|
// Skip findings where the password only has "*" characters, this is a redacted password
|
|
if strings.Trim(password, "*") == "" {
|
|
continue
|
|
}
|
|
|
|
parsedURL, err := url.Parse(urlMatch)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
if _, ok := parsedURL.User.Password(); !ok {
|
|
continue
|
|
}
|
|
if parsedURL.User.Username() == "anonymous" {
|
|
continue
|
|
}
|
|
|
|
rawURL, _ := url.Parse(urlMatch)
|
|
rawURL.Path = ""
|
|
redact := strings.TrimSpace(strings.ReplaceAll(rawURL.String(), password, "********"))
|
|
|
|
s1 := detectors.Result{
|
|
DetectorType: detector_typepb.DetectorType_FTP,
|
|
Raw: []byte(rawURL.String()),
|
|
SecretParts: map[string]string{"key": rawURL.String()},
|
|
Redacted: redact,
|
|
}
|
|
|
|
if verify {
|
|
var timeout time.Duration
|
|
if s.verificationTimeout > 0 {
|
|
// Use to configure a simulate timeout for interation tests
|
|
timeout = s.verificationTimeout
|
|
} else if dl, ok := ctx.Deadline(); ok {
|
|
// Here we assign the remaining time before our context expires
|
|
// This help us cater the timelimit set through --detector-timeout flag
|
|
timeout = time.Until(dl)
|
|
} else {
|
|
timeout = defaultVerificationTimeout
|
|
}
|
|
verificationErr := verifyFTP(timeout, parsedURL)
|
|
s1.Verified = verificationErr == nil
|
|
if !isErrDeterminate(verificationErr) {
|
|
s1.SetVerificationError(verificationErr, password)
|
|
}
|
|
}
|
|
|
|
if !s1.Verified {
|
|
// Skip unverified findings where the password starts with a `$` - it's almost certainly a variable.
|
|
if strings.HasPrefix(password, "$") {
|
|
continue
|
|
}
|
|
}
|
|
|
|
results = append(results, s1)
|
|
}
|
|
|
|
return results, nil
|
|
}
|
|
|
|
var ftpFalsePositives = map[detectors.FalsePositive]struct{}{
|
|
detectors.FalsePositive("@ftp.freebsd.org"): {},
|
|
}
|
|
|
|
func (s Scanner) IsFalsePositive(result detectors.Result) (bool, string) {
|
|
return detectors.IsKnownFalsePositive(string(result.Raw), ftpFalsePositives, false)
|
|
}
|
|
|
|
func isErrDeterminate(e error) bool {
|
|
ftpErr := &textproto.Error{}
|
|
return errors.As(e, &ftpErr) && ftpErr.Code == ftpNotLoggedIn
|
|
}
|
|
|
|
func verifyFTP(timeout time.Duration, u *url.URL) error {
|
|
host := u.Host
|
|
if !strings.Contains(host, ":") {
|
|
host = host + ":21"
|
|
}
|
|
|
|
// Use a custom dial function that sets a deadline on the connection so that
|
|
// the FTP banner read and login are also bounded by the timeout. Without this,
|
|
// a server that accepts TCP but never sends a banner will block indefinitely.
|
|
c, err := ftp.Dial(host, ftp.DialWithDialFunc(func(network, address string) (net.Conn, error) {
|
|
conn, err := net.DialTimeout(network, address, timeout)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := conn.SetDeadline(time.Now().Add(timeout)); err != nil {
|
|
_ = conn.Close()
|
|
return nil, err
|
|
}
|
|
return conn, nil
|
|
}))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defer func() {
|
|
_ = c.Quit()
|
|
}()
|
|
password, _ := u.User.Password()
|
|
return c.Login(u.User.Username(), password)
|
|
}
|
|
|
|
func (s Scanner) Type() detector_typepb.DetectorType {
|
|
return detector_typepb.DetectorType_FTP
|
|
}
|
|
|
|
func (s Scanner) Description() string {
|
|
return "FTP is a protocol for reading and writing files. An FTP password can be used to read and sometimes write files."
|
|
}
|