TJ Saunders
TJ Saunders
Currently HiddenStores cannot be enabled/disabled based on SFTPClientMatch, correct. Another possibility might be to use [mod_ifsession's](http://www.proftpd.org/docs/contrib/mod_ifsession.html) ``, ``, `` sections to enable/disable HiddenStores based on the user/group used by the...
You may need to check the systemd unit file for ProFTPD; I've seen some systemd unit files that tell ProFTPD to use the `-n` or `-q` command-line options, which will...
OK, that rules out one possibility. Next thing to check is that `/var/log/` directory; what does the following command show? ```sh ls -ald /var/ /var/log/ ```
Reading through https://github.com/phpseclib/phpseclib/issues/1199#issuecomment-340961555 as well as this issue, I would like to point out that https://datatracker.ietf.org/doc/html/rfc4254#section-5.2 _does_ mention the use of `SSH_MSG_CHANNEL_EXTENDED_DATA` for stderr for "interactive sessions": ``` Additionally, some...
I'm not sure I understand the issue here. The `configure` script will run probes/tests, yes, intended for multiple platforms and Unix versions; is the issue that those tests' compilation shows...
For historical context about the MySQL `make_scrambled_password` functions, see [Bug#3669](http://bugs.proftpd.org/show_bug.cgi?id=3669). It's a mess.
FYI, I've opened Issue #1881 for updating the version of Autoconf used to generate the `configure` script; hopefully this will address some of the issues mentioned here.
For server hostkey algorithms, the `mod_sftp` module offers `ecdsa-sha2-nistp256` (and `ecdsa-sha2-nistp384`) only if there are ECDSA keys, of the respective sizes (256, 384) configured via `SFTPHostKey` directives. These algorithms _are_...
> Are there some more possible? Like also providing multiple RSA-Bit-legths? > > * rsa_3072? > * rsa_4096? > * rsa_6144? > * rsa_8192? No. Host key algorithms in SSH...
> Besides that, are there any plan to support the new [`FIPS 204`](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.204.pdf) Digital Signature Schemes? I think these would be: > > * ML-DSA_44 > * ML-DSA_65 > *...