| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: proftpd-debuginfo | Distribution: Fedora Project |
| Version: 1.3.9d | Vendor: Fedora Project |
| Release: 2.fc44 | Build date: Mon Aug 24 19:10:10 2026 |
| Group: Development/Debug | Build host: buildvm-ppc64le-21.rdu3.fedoraproject.org |
| Size: 8785728 | Source RPM: proftpd-1.3.9d-2.fc44.src.rpm |
| Packager: Fedora Project | |
| Url: http://www.proftpd.org/ | |
| Summary: Debug information for package proftpd | |
This package provides debug information for package proftpd. Debug information is useful when developing applications that use this package or when debugging this package.
GPL-2.0-or-later
* Mon Aug 24 2026 Paul Howarth <paul@city-fan.org> - 1.3.9d-2
- Fix regression in mod_sql's SQLNamedQuery (upstream bug 4515, GH#2293)
* Tue Aug 18 2026 Paul Howarth <paul@city-fan.org> - 1.3.9d-1
- Update to 1.3.9d
- SSH channel open request from authenticated client with max packet size of
zero lead to infinite loop (GH#2242)
- Aborted/failed data transfers incorrectly clear any "EPSV ALL" state
(GH#2255)
- Possible use-after-free issue via FTP STAT command using -C option; note
that the -C option is now silently ignored for FTP STAT commands (GH#2265)
- Passive FTP data transfers do not honor AllowForeignAddress policy properly
(GH#2272)
- Empty password fields should be rejected by the mod_sql_passwd module
(GH#2275)
- Empty password fields should be rejected by the mod_auth_file module
(GH#2279)
- .ftpaccess file policy bypass possible in certain configurations (GH#2282)
* Tue Aug 04 2026 Paul Howarth <paul@city-fan.org> - 1.3.9c-4
- Update mod_procfs to 0.3
- Also block access to sysfs filesystems
* Tue Jul 21 2026 Paul Howarth <paul@city-fan.org> - 1.3.9c-3
- Add mod_procfs, enabled by default, to address CVE-2026-35025 (ACL bypass via
/proc/self/root path prefix); this module disallows file accesses via procfs
filesystems
* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.9c-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
* Wed Jul 08 2026 Paul Howarth <paul@city-fan.org> - 1.3.9c-1
- Update to 1.3.9c
- ExecEnviron values not passed due to regression since 1.3.8.d (GH#2135)
- Stack buffer overflow in MLSD/MLST handling for long path names (GH#2146)
- MaxTransfersPerUser no longer enforces configured limits (GH#2158)
- AdminControlsACLs for config, get actions not honored as they should be
(GH#2163)
- Memcached/Redis-cached JSON TLS session/OCSP entries decoded into fixed
buffers without bounds checking (GH#2166)
- RewriteMap unescape builtin use causes one-byte out-of-bounds write, fails
to reject illegal characters (GH#2173)
- SQL group name lookup concatenates client-provided group names without
escaping (GH#2188)
- Authenticated SFTP sessions can overflow the SFTP packet buffer
(GH#2190, CVE-2026-63090)
- Default Controls socket ACLs unintentionally allow all users access for
sending Controls requests (GH#2210)
- Exercise caution when reading the client-provided file size for SCP
uploads, as it could possibly overflow our size type (CVE-2026-63091)
* Fri Jun 12 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 1.3.9b-2
- Rebuilt for openssl 4.0
* Mon Jun 08 2026 Paul Howarth <paul@city-fan.org> - 1.3.9b-1
- Update to 1.3.9b
- Fix SQL Injection in mod_wrap2_sql via reverse DNS hostname (GH#2057,
CVE-2026-44331)
- Additional fix for session management with OpenSSL 3.2.x or later, when
using TLSv1.2 or earlier; this complements the fix for GH#1963 (GH#2096)
- Hard quota limits on uploads do not cause SFTP WRITE requests to fail as
expected (GH#2098)
- Fix SSH payload length underflow calculation for ETM/ChaChaPoly algorithms
in mod_sftp (GH#2102)
- SSH packet with empty payload triggered null pointer dereference in
mod_sftp (GH#2104)
- Bad DSA signatures could lead to out-of-bounds read of heap memory in
mod_sftp (GH#2106)
- Mismatched RSA/DSA algorithm signatures could lead to null dereference in
mod_sftp (GH#2108)
- SFTP request payload length underflow calculation in mod_sftp
(GH#2115, CVE-2026-53994)
- Several modules failed to build using OpenSSL 4.0 (GH#2120)
- Update mod_proxy to 0.9.7
- Add a check on the maximum allowed SSH payload (vs. packet) length (GH#291)
- Set the payload_len field before checking its value (GH#292)
- Keep the SSH packet reading code in mod_proxy more in line with what is
done in mod_sftp, for legibility (GH#294)
- Implement support for the OpenSSH-specific ChaChaPoly SSH algorithm
(GH#295, GH#296)
- Correct misspellings noted by codespell (GH#297)
- Use clang-tidy to start polishing the codebase (GH#298)
- Disable the Nagle algorithm by default on our TCP connections to back-end
servers (GH#299)
- Require OpenSSL for building (GH#249, GH#300)
- Documentation fixes
- Implement a limit on the number of EXT_INFO extensions we'll be willing to
accept (GH#303)
- Comparison of expected/provided MAC data should be done in a constant-time
manner
- Support PKCS11-stored private keys
- Implement the "mlkem768x25519-sha256" and "sntrup761x25519-sha512"
post-quantum SSH key exchange mechanisms (GH#306)
- Add sanity check for SRV record lengths
- Ensure that the SSH payload length computation, for ETM/ChaChaPoly packets,
does not underflow
- If we detect a bad DSA signature length, properly error out
- Ensure that RSA/DSA signatures match their expected algorithm types, and
avoid null pointer dereferences
- Update to build against OpenSSL 4.x (GH#313)
* Tue May 19 2026 Paul Howarth <paul@city-fan.org> - 1.3.9a-3
- Address another avenue for SQL injection, via custom SQLUserInfo queries
* Mon May 11 2026 Paul Howarth <paul@city-fan.org> - 1.3.9a-2
- Additional escaping for avoidance of SQL injection issues with %{note:...}
and %{env:...}; these are on top of the existing fix for CVE-2026-42167 in
1.3.9a
- Fix for SQL Injection in mod_wrap2_sql via reverse DNS hostname
(CVE-2026-44331, rhbz#2466899, https://github.com/proftpd/proftpd/issues/2057)
* Thu Apr 30 2026 Paul Howarth <paul@city-fan.org> - 1.3.9a-1
- Update to 1.3.9a
- SCP transfers failed for files with spaces in their names (GH#1886)
- LDAPDefaultGID ignored since 1.3.9 (GH#1898)
- Compilation of mod_wrap2 failed when the --enable-wrapper-options configure
option was used (Bug #4512)
- mod_sftp failed to parse authorized user/host public keys with CRLF line
endings (GH#1904)
- Uploads using MODE Z sometimes resulted in corrupted files or broken
transfers (GH#1896)
- Remove usage of the deprecated MySQL_OPT_RECONNECT option for newer MySQL
versions (GH#1911)
- Update usage of MySQL API for SSL/TLS connections to server (GH#340)
- mod_sftp leaked file descriptor when reading SFTPHostKey file (GH#1959)
- Large/slow SCP downloads could be unnecessarily truncated by TimeoutStalled
(GH#1964)
- Handling of CRLs in mod_tls was incorrect, leading to confusing errors
(GH#1960)
- Resumed SSL_SESSION management in mod_tls lead to memory growth, infinite
loop using newer OpenSSL versions (GH#1963)
- mod_quotatab_ldap interactions could lead to segfault due to stale pointer
(GH#1984)
- RNTO before authentication lead to out-of-order response codes (GH#2003)
- MaxLoginAttemptsFromUser event never triggered in mod_ban for SFTP sessions
(GH#2009)
- Using toupper(3) on non-ASCII FTP command bytes might cause remote DoS
(GH#2019)
- Out-of-bounds single byte read when FTP command input buffer starts with LF
(GH#2020)
- FTP command LIST/NLST -B could cause buffer overflow when listing certain
crafted filenames (GH#2030)
- Memory exhaustion with mod_log_forensic when downloading very large files
via SFTP (GH#2043)
- Setting process groups during authentication crashed when using mod_radius
and <IfGroup> (GH#2046)
- SQL injection possible via mod_sql because of is_escaped_text() logic error
(GH#2052, CVE-2026-42167)
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.9-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.9-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Thu Mar 20 2025 Paul Howarth <paul@city-fan.org> - 1.3.9-1
- Update to 1.3.9 (see RELEASE_NOTES for details)
- Update mod_proxy to 0.9.5
- Implemented new IgnoreForeignAddress ProxyOption
- Fixed passive data transfers to backend IPv4 address when IPv6 support is
enabled
* Tue Mar 18 2025 Paul Howarth <paul@city-fan.org> - 1.3.8d-1
- Update to 1.3.8d
- Use of HideNoAccess for SFTP sessions can lead to segfault and/or
unexpected behaviour (GH#1855)
- SFTP channel allocations can lead to high memory utilization over time
(GH#1876)
- Avoid NULL pointer dereferences in mod_ls (GH#1866, CVE-2024-57392)
* Thu Feb 13 2025 Paul Howarth <paul@city-fan.org> - 1.3.8c-3
- Avoid NULL pointer dereferences in mod_ls (CVE-2024-57392)
- https://github.com/proftpd/proftpd/issues/1866
- Add explicit BR: libxcrypt-devel
* Fri Jan 17 2025 Paul Howarth <paul@city-fan.org> - 1.3.8c-2
- Fixes for C23 compatibility
- Update mod_vroot to 0.9.12
- Implement a realpath(3) callback for the FSIO API, for better
interoperability of other modules when mod_vroot is in effect
* Thu Dec 12 2024 Paul Howarth <paul@city-fan.org> - 1.3.8c-1
- Update to 1.3.8c
- Using FTPS after upgrading from 1.3.8a to 1.3.8b lead to crash (GH#1770)
- Bad handling of lack of extended attributes lead to SFTP out of memory
error (GH#1785)
- mod_sftp_sql logged "header value too long" due to unexpected key header
text (GH#1529)
- SSH ECDSA host key algorithms were not used as expected despite configuring
appropriate key (GH#1839)
- RADIUS Message-Authenticator verification failed with ProFTPD mod_radius
(GH#1840)
- Supplemental group inheritance granted unintended access to GID 0 due to
lack of supplemental groups from mod_sql (GH#1830)
* Tue Nov 19 2024 Paul Howarth <paul@city-fan.org> - 1.3.8b-9
- Fix RADIUS Message-Authenticator verification in mod_radius
- https://github.com/proftpd/proftpd/issues/1840
- https://bugzilla.redhat.com/show_bug.cgi?id=2325448
* Fri Oct 11 2024 Paul Howarth <paul@city-fan.org> - 1.3.8b-8
- Drop EL-7 support
- Drop mod_geoip support
- Drop mod_wrap support
- Always build mod_proxy
- Always use libpcre2
- Always use maridb client library in preference to mysql
- Always use libpq client library in preference to postgresql
- Always use OpenSSL Cipher Profiles
- Explicitly switch from libmemcached to libmemcached-awesome from Fedora 35
onwards
/usr/lib/debug /usr/lib/debug/.build-id /usr/lib/debug/.build-id/00 /usr/lib/debug/.build-id/00/8278163bd96dd74bdff9fe193cf1a768d96590 /usr/lib/debug/.build-id/00/8278163bd96dd74bdff9fe193cf1a768d96590.debug /usr/lib/debug/.build-id/00/8a277c65181ddaa3b6700939ff18a2b4f005c7 /usr/lib/debug/.build-id/00/8a277c65181ddaa3b6700939ff18a2b4f005c7.debug /usr/lib/debug/.build-id/0c /usr/lib/debug/.build-id/0c/5e9a43b5b3d89499428d05cefecd03e48a2ac4 /usr/lib/debug/.build-id/0c/5e9a43b5b3d89499428d05cefecd03e48a2ac4.debug /usr/lib/debug/.build-id/10 /usr/lib/debug/.build-id/10/ebb24b9cdb9dc6124a72c6b2b64a203aab7c77 /usr/lib/debug/.build-id/10/ebb24b9cdb9dc6124a72c6b2b64a203aab7c77.debug /usr/lib/debug/.build-id/1c /usr/lib/debug/.build-id/1c/14805d7f221de4b0541157fda5558deed861f0 /usr/lib/debug/.build-id/1c/14805d7f221de4b0541157fda5558deed861f0.debug /usr/lib/debug/.build-id/2b /usr/lib/debug/.build-id/2b/a72f095b434251dba666549e3458fe250eeafd /usr/lib/debug/.build-id/2b/a72f095b434251dba666549e3458fe250eeafd.debug /usr/lib/debug/.build-id/2d /usr/lib/debug/.build-id/2d/374067204190a9169f43a8d84d4d6eb644b956 /usr/lib/debug/.build-id/2d/374067204190a9169f43a8d84d4d6eb644b956.debug /usr/lib/debug/.build-id/30 /usr/lib/debug/.build-id/30/baba180ba46f2c03fe9844044ec60ee8addcbf /usr/lib/debug/.build-id/30/baba180ba46f2c03fe9844044ec60ee8addcbf.debug /usr/lib/debug/.build-id/30/f031899b23c66b41ff3cb99a4e98576a48c723 /usr/lib/debug/.build-id/30/f031899b23c66b41ff3cb99a4e98576a48c723.debug /usr/lib/debug/.build-id/37 /usr/lib/debug/.build-id/37/23c60d088be0d04ad06dcee3533b287c59fe75 /usr/lib/debug/.build-id/37/23c60d088be0d04ad06dcee3533b287c59fe75.debug /usr/lib/debug/.build-id/3b /usr/lib/debug/.build-id/3b/b774e5e2f5bc77c5544dca5effc1386aa17993 /usr/lib/debug/.build-id/3b/b774e5e2f5bc77c5544dca5effc1386aa17993.debug /usr/lib/debug/.build-id/51 /usr/lib/debug/.build-id/51/5e9f7b3deef511e1890eefaef767663834d217 /usr/lib/debug/.build-id/51/5e9f7b3deef511e1890eefaef767663834d217.debug /usr/lib/debug/.build-id/57 /usr/lib/debug/.build-id/57/ed0a0dc78f5386e8ee42f567eb9c37b3873e8e /usr/lib/debug/.build-id/57/ed0a0dc78f5386e8ee42f567eb9c37b3873e8e.debug /usr/lib/debug/.build-id/5b /usr/lib/debug/.build-id/5b/5e2e5a0d0f1f0aa71fe828fa9c3fea610b548f /usr/lib/debug/.build-id/5b/5e2e5a0d0f1f0aa71fe828fa9c3fea610b548f.debug /usr/lib/debug/.build-id/61 /usr/lib/debug/.build-id/61/a5a43dd7647fa45d25c82fc9b1bd6b20ce2486 /usr/lib/debug/.build-id/61/a5a43dd7647fa45d25c82fc9b1bd6b20ce2486.debug /usr/lib/debug/.build-id/66 /usr/lib/debug/.build-id/66/d3c2eebfc4ede830ce0afefbe70fd3f07dcad7 /usr/lib/debug/.build-id/66/d3c2eebfc4ede830ce0afefbe70fd3f07dcad7.debug /usr/lib/debug/.build-id/6c /usr/lib/debug/.build-id/6c/076a38cee7906363aa5c9cf9fe4f3966089eba /usr/lib/debug/.build-id/6c/076a38cee7906363aa5c9cf9fe4f3966089eba.debug /usr/lib/debug/.build-id/76 /usr/lib/debug/.build-id/76/6084369604caecfd8bb8d31c286fd4a1daf6ba /usr/lib/debug/.build-id/76/6084369604caecfd8bb8d31c286fd4a1daf6ba.debug /usr/lib/debug/.build-id/76/8bd6606eca54917166b314f81b9ca133ebdb32 /usr/lib/debug/.build-id/76/8bd6606eca54917166b314f81b9ca133ebdb32.debug /usr/lib/debug/.build-id/84 /usr/lib/debug/.build-id/84/e70863009a695d186c879912713eacfe907094 /usr/lib/debug/.build-id/84/e70863009a695d186c879912713eacfe907094.debug /usr/lib/debug/.build-id/87 /usr/lib/debug/.build-id/87/b7d84a94bfb9336c62a4bae67068b1e475767f /usr/lib/debug/.build-id/87/b7d84a94bfb9336c62a4bae67068b1e475767f.debug /usr/lib/debug/.build-id/8c /usr/lib/debug/.build-id/8c/ba88c275068a2f63edc14796c7ce63939dd48b /usr/lib/debug/.build-id/8c/ba88c275068a2f63edc14796c7ce63939dd48b.debug /usr/lib/debug/.build-id/a9 /usr/lib/debug/.build-id/a9/ce99a554d882a3045ae49ea099dd41f6f9ea80 /usr/lib/debug/.build-id/a9/ce99a554d882a3045ae49ea099dd41f6f9ea80.debug /usr/lib/debug/.build-id/b6 /usr/lib/debug/.build-id/b6/3aaa03fa362be78c8f26b874815cf26eb89585 /usr/lib/debug/.build-id/b6/3aaa03fa362be78c8f26b874815cf26eb89585.debug /usr/lib/debug/.build-id/bd /usr/lib/debug/.build-id/bd/abc7a0679d22d88d1bed986f503cf2b4e5c978 /usr/lib/debug/.build-id/bd/abc7a0679d22d88d1bed986f503cf2b4e5c978.debug /usr/lib/debug/.build-id/be /usr/lib/debug/.build-id/be/91e98e93548eef17432ba733bc463cfc04298f /usr/lib/debug/.build-id/be/91e98e93548eef17432ba733bc463cfc04298f.debug /usr/lib/debug/.build-id/c2 /usr/lib/debug/.build-id/c2/f143b48f0ef88b28812c4621abe710afe0b635 /usr/lib/debug/.build-id/c2/f143b48f0ef88b28812c4621abe710afe0b635.debug /usr/lib/debug/.build-id/cc /usr/lib/debug/.build-id/cc/ac60a3652480be218d56705c15f068cc1914de /usr/lib/debug/.build-id/cc/ac60a3652480be218d56705c15f068cc1914de.debug /usr/lib/debug/.build-id/d0 /usr/lib/debug/.build-id/d0/20ac7640cb26db40b9d0c7fa85dc025ef1216a /usr/lib/debug/.build-id/d0/20ac7640cb26db40b9d0c7fa85dc025ef1216a.debug /usr/lib/debug/.build-id/d8 /usr/lib/debug/.build-id/d8/d83442ff8a1f848d662ce123de562edb126cb6 /usr/lib/debug/.build-id/d8/d83442ff8a1f848d662ce123de562edb126cb6.debug /usr/lib/debug/.build-id/db /usr/lib/debug/.build-id/db/37b1d7823edb4546eeb2e4f979687c9c0c1900 /usr/lib/debug/.build-id/db/37b1d7823edb4546eeb2e4f979687c9c0c1900.debug /usr/lib/debug/.build-id/e3 /usr/lib/debug/.build-id/e3/36a93fcaa67388729487b3c20b16505371a05b /usr/lib/debug/.build-id/e3/36a93fcaa67388729487b3c20b16505371a05b.debug /usr/lib/debug/.build-id/e6 /usr/lib/debug/.build-id/e6/0de5b84dc39536d412055e22271270f7889598 /usr/lib/debug/.build-id/e6/0de5b84dc39536d412055e22271270f7889598.debug /usr/lib/debug/.build-id/e7 /usr/lib/debug/.build-id/e7/aaf50a6870f014cf129da98aba0d1a3e069f84 /usr/lib/debug/.build-id/e7/aaf50a6870f014cf129da98aba0d1a3e069f84.debug /usr/lib/debug/.build-id/ed /usr/lib/debug/.build-id/ed/05b791824ddd99c167c65d8fe5a9815ccaf68d /usr/lib/debug/.build-id/ed/05b791824ddd99c167c65d8fe5a9815ccaf68d.debug /usr/lib/debug/.build-id/ff /usr/lib/debug/.build-id/ff/eea93b62ce7ca1bdb96a4c49aeef2259329375 /usr/lib/debug/.build-id/ff/eea93b62ce7ca1bdb96a4c49aeef2259329375.debug /usr/lib/debug/.dwz /usr/lib/debug/.dwz/proftpd-1.3.9d-2.fc44.ppc64le /usr/lib/debug/usr /usr/lib/debug/usr/bin /usr/lib/debug/usr/bin/ftpdctl-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/bin/ftpscrub-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/bin/ftpshut-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/bin/proftpd-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec /usr/lib/debug/usr/libexec/proftpd /usr/lib/debug/usr/libexec/proftpd/mod_ban.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_copy.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_ctrls_admin.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_deflate.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_exec.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_facl.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_ifsession.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_ifversion.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_load.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_procfs.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_qos.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_quotatab.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_quotatab_file.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_quotatab_radius.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_quotatab_sql.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_radius.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_ratio.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_rewrite.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_sftp.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_sftp_pam.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_sftp_sql.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_shaper.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_site_misc.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_sql.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_sql_passwd.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_tls_memcache.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_tls_shmcache.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_unique_id.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_vroot.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_wrap2.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_wrap2_file.so-1.3.9d-2.fc44.ppc64le.debug /usr/lib/debug/usr/libexec/proftpd/mod_wrap2_sql.so-1.3.9d-2.fc44.ppc64le.debug
Generated by rpm2html 1.8.1
Fabrice Bellet, Thu Aug 27 01:45:42 2026