fix: bound extended-count pre-allocation in unmarshalFileStat The SSH_FILEXFER_ATTRS decoder allocated the extended-attribute slice directly from the wire-supplied extended_count. This is reachable server-side post-authentication via Request.Attributes() and the SETSTAT/FSETSTAT/OPEN paths, and client-side from a malicious server via Stat/Lstat/Fstat/Open/ReadDir attribute parsing. Bound the pre-allocation to the number of entries that can fit in the remaining bytes (each entry is two length-prefixed strings, i.e. at least 8 bytes) and grow the slice with append. Co-authored-by: Michael Bommarito <michael.bommarito@gmail.com>
The sftp package provides support for file system operations on remote ssh servers using the SFTP subsystem. It also implements an SFTP server for serving files from the filesystem.
See https://pkg.go.dev/github.com/pkg/sftp for examples and usage.
The basic operation of the package mirrors the facilities of the os package.
The Walker interface for directory traversal is heavily inspired by Keith Rarick's fs package.
We welcome pull requests, bug fixes and issue reports.
Before proposing a large change, first please discuss your change by raising an issue.
For API/code bugs, please include a small, self contained code example to reproduce the issue. For pull requests, remember test coverage.
We try to handle issues and pull requests with a 0 open philosophy. That means we will try to address the submission as soon as possible and will work toward a resolution. If progress can no longer be made (eg. unreproducible bug) or stops (eg. unresponsive submitter), we will close the bug.
Thanks.