Manuel Mausz

Results 6 issues of Manuel Mausz

We need to stop iterating if no key can be found. This bug was introduced in 32e8bd5b5a9d5bc04e5ac6c65ac132ba5c386d64

Hello again, I'm currently adding dual certificate support for all our webservers and noticed that ProFTPD doesn't support multiple chains (per certificate type). So I simply added chain loading from...

While searching the PHP cli path we use the first path which produces a valid result. However some hosters are re-writing exec paths, so the wrong (and possibly non-existent) path...

The current code is using fnmatch(3) which allows a wildcard to match multiple DNS labels. e.g. *.domain.tld matches foo.bar.domain.tld. This is incorrect. According to the RFC a wildcard can at...

This adds support for match patterns in `LocalPort` conditional blocks. e.g. this now works: ``` Match LocalPort 22* SomeKeyword ... Match LocalPort !22,* SomeKeyword ... ```