|
if err != nil { |
|
logger.Debug(logSender, "", "unable to stat basic auth users file: %v", err) |
|
return err |
|
} |
|
if p.isReloadNeeded(info) { |
|
r, err := os.Open(p.Path) |
|
if err != nil { |
|
logger.Debug(logSender, "", "unable to open basic auth users file: %v", err) |
|
return err |
|
} |
|
defer r.Close() |
Filename: auth.go
Line: 70
CWE: 73 (External Control of File Name or Path ('Directory Traversal'))
This call to os::Open() contains a path manipulation flaw. The argument to the function is a filename constructed using untrusted input. If an attacker is allowed to specify all or part of the filename, it may be possible to gain unauthorized access to files on the server, including those outside the webroot, that would be normally be inaccessible to end users. The level of exposure depends on the effectiveness of input validation routines, if any. The first argument to Open() contains tainted data from the variable Path. The tainted data originated from an earlier call to github.com.spf13.pflag.FlagSet.StringVarP. Validate all untrusted input to ensure that it conforms to the expected format, using centralized data validation routines when possible. When using blocklists, be sure that the sanitizing routine performs a sufficient number of iterations to remove all instances of disallowed characters. References: CWE OWASP/nDon't know how to fix this? Don't know why this was reported?
Get Assistance from Veracode
sftpgo//examples/ldapauthserver/httpd/auth.go
Lines 65 to 75 in c710321
Filename: auth.go
Line: 70
CWE: 73 (External Control of File Name or Path ('Directory Traversal'))
This call to os::Open() contains a path manipulation flaw. The argument to the function is a filename constructed using untrusted input. If an attacker is allowed to specify all or part of the filename, it may be possible to gain unauthorized access to files on the server, including those outside the webroot, that would be normally be inaccessible to end users. The level of exposure depends on the effectiveness of input validation routines, if any. The first argument to Open() contains tainted data from the variable Path. The tainted data originated from an earlier call to github.com.spf13.pflag.FlagSet.StringVarP. Validate all untrusted input to ensure that it conforms to the expected format, using centralized data validation routines when possible. When using blocklists, be sure that the sanitizing routine performs a sufficient number of iterations to remove all instances of disallowed characters. References: CWE OWASP/nDon't know how to fix this? Don't know why this was reported?
Get Assistance from Veracode