1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
Source: libnet-sftp-sftpserver-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders:
Mike Gabriel <sunweaver@debian.org>,
Build-Depends:
debhelper (>= 10),
cdbs,
libstat-lsmode-perl,
perl,
Standards-Version: 4.2.1
Homepage: https://metacpan.org/release/Net-SFTP-SftpServer
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libnet-sftp-sftpserver-perl.git
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libnet-sftp-sftpserver-perl
Testsuite: autopkgtest-pkg-perl
Package: libnet-sftp-sftpserver-perl
Architecture: all
Depends:
${misc:Depends},
${perl:Depends},
libstat-lsmode-perl,
perl,
Suggests:
libbsd-resource-perl,
Description: Secure File Transfer Protocol Server
Net::SFTP::SftpServer is a Perl port of sftp-server from OpenSSH
providing access control on a per user and per command basis with
improved logging via syslog.
.
This version of the Net::SFTP::SftpServer Perl module currently
implements SSH File Transfer Protocol version 3.
.
The limitations compared with the OpenSSH implementation are as follows:
.
- Only files and directories are dealt with - other inode types are not
returned on readdir.
- A virtual chroot is performed - / (rootfs) is treated as the users home
directory from the client perspective and all file access to / will
be in /<home_path>/<username>. The <home_path> is defined on object
initialisation, it is not obtained from /etc/passwd.
- All symlinked files or directories can be hidden and made inaccessible on
request. Symlink returns "permission denied" then, readlink returns "file
does not exist".
- Setting of stats (set_stat or set_fstat) is disabled - the client will
receive permission denied.
- Permissions for files and dirs are defaulted - the defaults are set on
object initialisation.
|