PHP 8.5.2
Preview: sudo_logsrvd.conf Size: 9.57 KB
/proc/self/root/etc/sudo_logsrvd.conf

#
# sudo logsrv daemon configuration
#

[server]
# The host name or IP address and port to listen on with an optional TLS
# flag.  If no port is specified, port 30343 will be used for plaintext
# connections and port 30344 will be used to TLS connections.
# The following forms are accepted:
#   listen_address = hostname(tls)
#   listen_address = hostname:port(tls)
#   listen_address = IPv4_address(tls)
#   listen_address = IPv4_address:port(tls)
#   listen_address = [IPv6_address](tls)
#   listen_address = [IPv6_address]:port(tls)
#
# The (tls) suffix should be omitted for plaintext connections.
#
# Multiple listen_address settings may be specified.
# The default is to listen on all addresses.
#listen_address = *:30343
#listen_address = *:30344(tls)

# The file containing the ID of the running sudo_logsrvd process.
#pid_file = /run/sudo/sudo_logsrvd.pid

# Where to log server warnings: none, stderr, syslog, or a path name.
#server_log = syslog

# If true, enable the SO_KEEPALIVE socket option on client connections.
# Defaults to true.
#tcp_keepalive = true

# The amount of time, in seconds, the server will wait for the client to
# respond.  A value of 0 will disable the timeout.  The default value is 30.
#timeout = 30

# If true, the server will validate its own certificate at startup.
# Defaults to true.
#tls_verify = true

# If true, client certificates will be validated by the server;
# clients without a valid certificate will be unable to connect.
# By default, client certs are not checked.
#tls_checkpeer = false

# Path to a certificate authority bundle file in PEM format to use
# instead of the system's default certificate authority database.
#tls_cacert = /etc/ssl/sudo/cacert.pem

# Path to the server's certificate file in PEM format.
# Required for TLS connections.
#tls_cert = /etc/ssl/sudo/certs/logsrvd_cert.pem

# Path to the server's private key file in PEM format.
# Required for TLS connections.
#tls_key = /etc/ssl/sudo/private/logsrvd_key.pem

# TLS cipher list (see "CIPHER LIST FORMAT" in the openssl-ciphers manual).
# This setting is only effective if the negotiated protocol is TLS version
# 1.2.  The default cipher list is HIGH:!aNULL.
#tls_ciphers_v12 = HIGH:!aNULL

# TLS cipher list if the negotiated protocol is TLS version 1.3.
# The default cipher list is TLS_AES_256_GCM_SHA384.
#tls_ciphers_v13 = TLS_AES_256_GCM_SHA384

# Path to the Diffie-Hellman parameter file in PEM format.
# If not set, the server will use the OpenSSL defaults.
#tls_dhparams = /etc/ssl/sudo/logsrvd_dhparams.pem

[relay]
# The host name or IP address and port to send logs to in relay mode.
# The syntax is identical to listen_address with the exception of
# the wild card ('*') syntax.  When this setting is enabled, logs will
# be relayed to the specified host instead of being stored locally.
# This setting is not enabled by default.
#relay_host = relayhost.dom.ain
#relay_host = relayhost.dom.ain(tls)

# The amount of time, in seconds, the server will wait for a connection
# to the relay server to complete.  A value of 0 will disable the timeout.
# The default value is 30.
#connect_timeout = 30

# The directory to store messages in before they are sent to the relay.
# Messages are stored in wire format.
# The default value is /var/log/sudo_logsrvd.
#relay_dir = /var/log/sudo_logsrvd

# The number of seconds to wait after a connection error before
# making a new attempt to forward a message to a relay host.
# The default value is 30.
#retry_interval = 30

# Whether to store the log before relaying it.  If true, enable store
# and forward mode.  If false, the client connection is immediately
# relayed.  Defaults to false.
#store_first = true

# If true, enable the SO_KEEPALIVE socket option on relay connections.
# Defaults to true.
#tcp_keepalive = true

# The amount of time, in seconds, the server will wait for the relay to
# respond.  A value of 0 will disable the timeout.  The default value is 30.
#timeout = 30

# If true, the server's relay certificate will be verified at startup.
# The default is to use the value in the [server] section.
#tls_verify = true

# Whether to verify the relay's certificate for TLS connections.
# The default is to use the value in the [server] section.
#tls_checkpeer = false

# Path to a certificate authority bundle file in PEM format to use
# instead of the system's default certificate authority database.
# The default is to use the value in the [server] section.
#tls_cacert = /etc/ssl/sudo/cacert.pem

# Path to the server's certificate file in PEM format.
# The default is to use the certificate in the [server] section.
#tls_cert = /etc/ssl/sudo/certs/logsrvd_cert.pem

# Path to the server's private key file in PEM format.
# The default is to use the key in the [server] section.
#tls_key = /etc/ssl/sudo/private/logsrvd_key.pem

# TLS cipher list (see "CIPHER LIST FORMAT" in the openssl-ciphers manual).
# this setting is only effective if the negotiated protocol is TLS version
# 1.2.  The default is to use the value in the [server] section.
#tls_ciphers_v12 = HIGH:!aNULL

# TLS cipher list if the negotiated protocol is TLS version 1.3.
# The default is to use the value in the [server] section.
#tls_ciphers_v13 = TLS_AES_256_GCM_SHA384

# Path to the Diffie-Hellman parameter file in PEM format.
# The default is to use the value in the [server] section.
#tls_dhparams = /etc/ssl/sudo/logsrvd_dhparams.pem

[iolog]
# The top-level directory to use when constructing the path name for the
# I/O log directory.  The session sequence number, if any, is stored here.
#iolog_dir = /var/log/sudo-io

# The path name, relative to iolog_dir, in which to store I/O logs.
# It is possible for iolog_file to contain directory components.
#iolog_file = %{seq}

# If set, I/O logs will be compressed using zlib.  Enabling compression can
# make it harder to view the logs in real-time as the program is executing.
#iolog_compress = false

# If set, I/O log data is flushed to disk after each write instead of
# buffering it.  This makes it possible to view the logs in real-time
# as the program is executing but reduces the effectiveness of compression.
#iolog_flush = true

# The group to use when creating new I/O log files and directories.
# If iolog_group is not set, the primary group-ID of the user specified
# by iolog_user is used.  If neither iolog_group nor iolog_user
# are set, I/O log files and directories are created with group-ID 0.
#iolog_group = wheel

# The user to use when setting the user-ID and group-ID of new I/O
# log files and directories.  If iolog_group is set, it will be used
# instead of the user's primary group-ID.  By default, I/O log files
# and directories are created with user and group-ID 0.
#iolog_user = root

# The file mode to use when creating I/O log files.  The file permissions
# will always include the owner read and write bits, even if they are
# not present in the specified mode.  When creating I/O log directories,
# search (execute) bits are added to match the read and write bits
# specified by iolog_mode.
#iolog_mode = 0600

# If disabled, sudo_logsrvd will attempt to avoid logging plaintext
# password in the terminal input using passprompt_regex.
#log_passwords = true

# The maximum sequence number that will be substituted for the "%{seq}"
# escape in the I/O log file.  While the value substituted for "%{seq}"
# is in base 36, maxseq itself should be expressed in decimal.  Values
# larger than 2176782336 (which corresponds to the base 36 sequence
# number "ZZZZZZ") will be silently truncated to 2176782336.
#maxseq = 2176782336

# One or more POSIX extended regular expressions used to match
# password prompts in the terminal output when log_passwords is
# disabled.  Multiple passprompt_regex settings may be specified.
#passprompt_regex = [Pp]assword[: ]*
#passprompt_regex = [Pp]assword for [a-z0-9]+: *

[eventlog]
# Where to log accept, reject, exit, and alert events.
# Accepted values are syslog, logfile, or none.
# Defaults to syslog
#log_type = syslog

# Whether to log an event when a command exits or is terminated by a signal.
# Defaults to false
#log_exit = true

# Event log format.
# Supported log formats are "sudo" and "json"
# Defaults to sudo
#log_format = sudo

[syslog]
# The maximum length of a syslog payload.
# On many systems, syslog(3) has a relatively small log buffer.
# IETF RFC 5424 states that syslog servers must support messages
# of at least 480 bytes and should support messages up to 2048 bytes.
# Messages larger than this value will be split into multiple messages.
#maxlen = 960

# The syslog facility to use for event log messages.
# The following syslog facilities are supported: authpriv (if your OS
# supports it), auth, daemon, user, local0, local1, local2, local3,
# local4, local5, local6, and local7.
#facility = authpriv

# Syslog priority to use for event log accept messages, when the command
# is allowed by the security policy.  The following syslog priorities are
# supported: alert, crit, debug, emerg, err, info, notice, warning, none.
#accept_priority = notice

# Syslog priority to use for event log reject messages, when the command
# is not allowed by the security policy.
#reject_priority = alert

# Syslog priority to use for event log alert messages reported by the
# client.
#alert_priority = alert

# The syslog facility to use for server warning messages.
# Defaults to daemon.
#server_facility = daemon

[logfile]
# The path to the file-based event log.
# This path must be fully-qualified and start with a '/' character.
#path = /var/log/sudo.log

# The format string used when formatting the date and time for
# file-based event logs.  Formatting is performed via strftime(3) so
# any format string supported by that function is allowed.
#time_format = %h %e %T

Directory Contents

Dirs: 124 × Files: 111

Name Size Perms Modified Actions
- drwxr-xr-x 2026-01-23 09:07:36
Edit Download
apache2 DIR
- drwxr-xr-x 2026-01-23 09:03:15
Edit Download
apparmor DIR
- drwxr-xr-x 2026-01-08 12:56:01
Edit Download
- drwxr-xr-x 2026-01-23 09:02:27
Edit Download
apport DIR
- drwxr-xr-x 2026-01-08 12:56:27
Edit Download
apt DIR
- drwxr-xr-x 2026-01-08 13:01:16
Edit Download
bashrc DIR
- drwxr-xr-x 2026-01-23 09:07:33
Edit Download
- drwxr-xr-x 2026-01-08 12:56:25
Edit Download
binfmt.d DIR
- drwxr-xr-x 2024-04-19 14:24:36
Edit Download
byobu DIR
- drwxr-xr-x 2026-01-08 12:56:08
Edit Download
- drwxr-xr-x 2026-01-08 12:54:27
Edit Download
chrony DIR
- drwxr-xr-x 2026-01-23 09:00:35
Edit Download
cloud DIR
- drwxr-xr-x 2026-01-23 08:58:12
Edit Download
- drwxr-xr-x 2026-01-08 12:56:35
Edit Download
credstore DIR
- drwx------ 2024-04-19 14:24:36
Edit Download
- drwx------ 2024-04-19 14:24:36
Edit Download
cron.d DIR
- drwxr-xr-x 2026-06-19 12:09:44
Edit Download
- drwxr-xr-x 2026-01-23 09:08:04
Edit Download
- drwxr-xr-x 2026-01-08 12:54:25
Edit Download
- drwxr-xr-x 2026-01-23 09:00:34
Edit Download
- drwxr-xr-x 2026-01-23 09:00:34
Edit Download
- drwxr-xr-x 2026-01-08 12:54:25
Edit Download
- drwxr-xr-x 2026-01-08 12:56:25
Edit Download
dbus-1 DIR
- drwxr-xr-x 2026-01-08 12:54:28
Edit Download
default DIR
- drwxr-xr-x 2026-02-07 06:05:41
Edit Download
depmod.d DIR
- drwxr-xr-x 2026-01-08 12:55:15
Edit Download
dhcp DIR
- drwxr-xr-x 2026-01-08 12:54:32
Edit Download
dpkg DIR
- drwxr-xr-x 2026-01-23 09:07:16
Edit Download
fail2ban DIR
- drwxr-xr-x 2026-01-23 09:06:22
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-08 12:56:09
Edit Download
fwupd DIR
- drwxr-xr-x 2026-02-07 06:05:51
Edit Download
- drwxr-xr-x 2026-01-23 09:03:39
Edit Download
gnutls DIR
- drwxr-xr-x 2026-01-08 12:55:06
Edit Download
groff DIR
- drwxr-xr-x 2026-01-08 12:56:14
Edit Download
grub.d DIR
- drwxr-xr-x 2026-02-07 06:05:51
Edit Download
gss DIR
- drwxr-xr-x 2026-01-08 12:54:29
Edit Download
- drwxr-xr-x 2026-01-23 09:03:50
Edit Download
init.d DIR
- drwxr-xr-x 2026-02-07 06:05:44
Edit Download
- drwxr-xr-x 2026-01-08 12:56:18
Edit Download
- drwxr-xr-x 2026-01-23 09:00:48
Edit Download
iproute2 DIR
- drwxr-xr-x 2026-01-08 12:55:14
Edit Download
iscsi DIR
- drwxr-xr-x 2026-01-08 12:56:10
Edit Download
kernel DIR
- drwxr-xr-x 2026-01-08 12:55:37
Edit Download
landscape DIR
- drwxrwxr-x 2025-08-21 01:44:44
Edit Download
- drwxr-xr-x 2026-02-07 06:05:10
Edit Download
ldap DIR
- drwxr-xr-x 2026-02-07 06:05:41
Edit Download
- drwxr-xr-x 2026-01-08 12:55:42
Edit Download
- drwxr-xr-x 2026-01-08 12:56:18
Edit Download
libnl-3 DIR
- drwxr-xr-x 2026-01-08 12:56:05
Edit Download
- drwxr-xr-x 2024-04-08 16:06:21
Edit Download
logcheck DIR
- drwxr-xr-x 2026-01-08 12:55:50
Edit Download
- drwxr-xr-x 2026-06-18 17:14:25
Edit Download
lvm DIR
- drwxr-xr-x 2026-01-08 12:56:29
Edit Download
mdadm DIR
- drwxr-xr-x 2026-01-08 12:56:07
Edit Download
- drwxr-xr-x 2026-01-08 12:55:50
Edit Download
- drwxr-xr-x 2026-06-19 12:13:39
Edit Download
- drwxr-xr-x 2026-01-08 12:55:03
Edit Download
monit DIR
- drwxr-xr-x 2026-01-23 09:03:12
Edit Download
multipath DIR
- drwx------ 2026-01-23 08:58:53
Edit Download
mysql DIR
- drwxr-xr-x 2026-01-23 09:02:27
Edit Download
- drwxr-xr-x 2026-01-08 12:56:16
Edit Download
netplan DIR
- drwxr-xr-x 2026-02-04 07:09:14
Edit Download
network DIR
- drwxr-xr-x 2026-01-23 09:00:46
Edit Download
- drwxr-xr-x 2026-01-08 12:54:31
Edit Download
newt DIR
- drwxr-xr-x 2026-01-08 12:54:36
Edit Download
nginx DIR
- drwx------ 2026-01-23 09:04:25
Edit Download
opt DIR
- drwxr-xr-x 2026-01-08 12:54:15
Edit Download
- drwxr-xr-x 2026-01-08 12:56:30
Edit Download
pam.d DIR
- drwxr-xr-x 2026-06-19 13:01:14
Edit Download
perl DIR
- drwxr-xr-x 2026-01-08 12:55:29
Edit Download
php DIR
- drwxr-xr-x 2026-01-23 09:03:26
Edit Download
pki DIR
- drwxr-xr-x 2026-01-08 12:55:39
Edit Download
plymouth DIR
- drwxr-xr-x 2025-02-25 05:47:08
Edit Download
pm DIR
- drwxr-xr-x 2026-01-08 12:55:40
Edit Download
polkit-1 DIR
- drwxr-xr-x 2026-01-08 12:55:50
Edit Download
pollinate DIR
- drwxr-xr-x 2026-01-08 12:56:22
Edit Download
postfix DIR
- drwxr-xr-x 2026-02-04 07:10:02
Edit Download
ppp DIR
- drwxr-xr-x 2026-01-23 09:00:34
Edit Download
profile.d DIR
- drwxr-xr-x 2026-01-23 08:58:12
Edit Download
proftpd DIR
- drwxr-xr-x 2026-01-23 09:08:00
Edit Download
python3 DIR
- drwxr-xr-x 2026-01-08 12:54:41
Edit Download
- drwxr-xr-x 2026-02-07 06:05:38
Edit Download
qemu DIR
- drwxr-xr-x 2026-02-07 06:05:44
Edit Download
rc0.d DIR
- drwxr-xr-x 2026-01-23 09:07:30
Edit Download
rc1.d DIR
- drwxr-xr-x 2026-01-23 09:07:30
Edit Download
rc2.d DIR
- drwxr-xr-x 2026-01-23 09:07:30
Edit Download
rc3.d DIR
- drwxr-xr-x 2026-01-23 09:07:30
Edit Download
rc4.d DIR
- drwxr-xr-x 2026-01-23 09:07:30
Edit Download
rc5.d DIR
- drwxr-xr-x 2026-01-23 09:07:30
Edit Download
rc6.d DIR
- drwxr-xr-x 2026-01-23 09:07:30
Edit Download
rcS.d DIR
- drwxr-xr-x 2026-01-23 09:04:18
Edit Download
redis DIR
- drwxrwx--- 2026-01-23 09:00:37
Edit Download
- drwxr-xr-x 2026-01-23 09:00:46
Edit Download
rsyslog.d DIR
- drwxr-xr-x 2026-01-23 09:00:48
Edit Download
security DIR
- drwxr-xr-x 2026-01-08 12:55:13
Edit Download
selinux DIR
- drwxr-xr-x 2026-01-08 12:54:20
Edit Download
sensors.d DIR
- drwxr-xr-x 2026-01-08 12:55:59
Edit Download
sgml DIR
- drwxr-xr-x 2026-01-08 12:56:14
Edit Download
skel DIR
- drwxr-xr-x 2026-01-08 12:54:21
Edit Download
sos DIR
- drwxr-xr-x 2026-01-08 12:56:13
Edit Download
ssh DIR
- drwxr-xr-x 2026-06-22 11:31:40
Edit Download
ssl DIR
- drwxr-xr-x 2026-02-07 06:05:42
Edit Download
sudoers.d DIR
- drwxr-x--- 2026-06-19 12:29:22
Edit Download
supercat DIR
- drwxr-xr-x 2026-01-08 12:54:33
Edit Download
sysctl.d DIR
- drwxr-xr-x 2026-06-19 12:13:39
Edit Download
sysstat DIR
- drwxr-xr-x 2026-01-08 12:56:06
Edit Download
systemd DIR
- drwxr-xr-x 2026-01-08 12:53:31
Edit Download
terminfo DIR
- drwxr-xr-x 2026-01-08 12:54:20
Edit Download
- drwxr-xr-x 2026-01-08 12:56:10
Edit Download
- drwxr-xr-x 2026-01-08 12:55:17
Edit Download
udev DIR
- drwxr-xr-x 2026-01-08 12:55:16
Edit Download
udisks2 DIR
- drwxr-xr-x 2026-01-08 12:56:25
Edit Download
ufw DIR
- drwxr-xr-x 2026-01-23 09:08:01
Edit Download
- drwxr-xr-x 2026-02-07 06:05:51
Edit Download
- drwxr-xr-x 2026-02-07 06:05:51
Edit Download
- drwxr-xr-x 2025-04-02 09:15:39
Edit Download
- drwxr-xr-x 2023-12-16 21:51:02
Edit Download
uwsgi DIR
- drwxr-xr-x 2026-01-23 09:03:13
Edit Download
varnish DIR
- drwxr-xr-x 2026-01-23 09:07:30
Edit Download
vim DIR
- drwxr-xr-x 2026-01-08 12:55:15
Edit Download
- drwxr-xr-x 2026-01-08 12:56:14
Edit Download
X11 DIR
- drwxr-xr-x 2026-01-23 09:04:18
Edit Download
xdg DIR
- drwxr-xr-x 2026-01-08 12:54:33
Edit Download
xml DIR
- drwxr-xr-x 2026-01-08 12:56:30
Edit Download
162 B lrw-r--r-- 2026-01-23 09:01:24
Edit Download
0 B lrw------- 2026-01-08 12:54:22
Edit Download
862 B lrw-r--r-- 2026-01-08 12:54:15
Edit Download
208 B lrw-r--r-- 2026-01-08 12:54:15
Edit Download
3.36 KB lrw-r--r-- 2023-07-05 17:42:39
Edit Download
51 B lrw-r--r-- 2026-01-23 09:00:53
Edit Download
12.00 KB lrw-r--r-- 2026-01-23 09:00:55
Edit Download
4 B lrw-rw-r-- 2026-06-19 12:29:22
Edit Download
2.26 KB lrw-r--r-- 2024-03-31 08:41:03
Edit Download
45 B lrw-r--r-- 2020-01-24 22:23:54
Edit Download
367 B lrw-r--r-- 2022-08-02 15:34:43
Edit Download
6.14 KB lrw-r--r-- 2026-01-08 12:54:37
Edit Download
1.11 KB lrw-r--r-- 2024-03-31 00:06:27
Edit Download
54 B lrw-r--r-- 2026-01-08 12:55:37
Edit Download
2.90 KB lrw-r--r-- 2024-04-12 12:40:53
Edit Download
11 B lrw-r--r-- 2024-04-22 13:04:27
Edit Download
1.67 KB lrw-r--r-- 2023-07-05 17:42:39
Edit Download
1.40 KB lrw-r--r-- 2024-03-31 08:48:02
Edit Download
63 B lrw-r--r-- 2026-01-23 09:01:00
Edit Download
1.07 KB lrw-r--r-- 2010-05-06 18:27:14
Edit Download
685 B lrw-r--r-- 2024-04-08 14:38:40
Edit Download
34 B lrw-r--r-- 2026-01-08 12:56:35
Edit Download
19 B lrw-r--r-- 2026-01-23 09:07:33
Edit Download
1.81 KB lrw-r--r-- 2022-10-17 22:36:59
Edit Download
314 B lrw-r--r-- 2026-06-19 12:13:40
Edit Download
132 B lrw-r--r-- 2024-05-09 07:08:08
Edit Download
694 B lrw-r--r-- 2024-04-08 15:57:57
Edit Download
2.52 KB lrw-r--r-- 2024-01-31 00:34:58
Edit Download
3.89 KB lrw-r--r-- 2025-12-03 15:01:20
Edit Download
8.17 KB lrw-r--r-- 2026-06-19 13:25:38
Edit Download
8.20 KB lrw-r--r-- 2026-06-19 12:38:58
Edit Download
6.96 KB lrw-r----- 2026-06-19 13:25:38
Edit Download
6.99 KB lrw-r----- 2026-06-19 12:38:58
Edit Download
4.33 KB lrw-r--r-- 2022-10-06 12:47:47
Edit Download
92 B lrw-r--r-- 2024-04-22 13:04:27
Edit Download
11 B lrw-r--r-- 2026-02-04 07:09:19
Edit Download
616 B lrw-r--r-- 2026-02-04 07:09:19
Edit Download
411 B lrw-r--r-- 2026-01-08 12:56:03
Edit Download
711 B lrw-r--r-- 2026-01-08 12:56:03
Edit Download
1.83 KB lrw-r--r-- 2024-03-31 08:21:18
Edit Download
26 B lrw-r--r-- 2025-08-01 14:21:11
Edit Download
19 B lrw-r--r-- 2025-08-01 14:21:11
Edit Download
26.16 KB lrw-r--r-- 2026-02-07 06:05:53
Edit Download
34 B lrw-r--r-- 2022-08-02 15:34:43
Edit Download
0 B lrw-rw-r-- 2026-06-19 12:29:22
Edit Download
267 B lrw-r--r-- 2024-04-22 13:04:27
Edit Download
191 B lrw-r--r-- 2024-03-31 00:20:01
Edit Download
2.93 KB lrw-r--r-- 2024-03-30 07:42:05
Edit Download
13 B lrw-r--r-- 2026-01-08 12:56:38
Edit Download
9.34 KB lrw-r--r-- 2026-02-07 06:05:41
Edit Download
114 B lrw-r--r-- 2025-04-22 10:11:08
Edit Download
12.06 KB lrw-r--r-- 2024-02-22 12:30:23
Edit Download
586 B lrw-r--r-- 2024-04-08 16:11:30
Edit Download
104 B lrw-r--r-- 2025-08-01 14:21:11
Edit Download
33 B lr--r--r-- 2026-02-04 07:09:13
Edit Download
111 B lrw-r--r-- 2024-03-31 07:35:22
Edit Download
111 B lrw-r--r-- 2024-03-31 07:35:22
Edit Download
125 B lrw-r--r-- 2024-04-08 15:54:57
Edit Download
28 B lrw-r--r-- 2026-01-23 09:00:49
Edit Download
5.11 KB lrw-r--r-- 2024-04-08 14:45:49
Edit Download
288 B lrw-r--r-- 2024-03-31 02:33:30
Edit Download
1.45 KB lrw-r--r-- 2026-01-23 09:04:36
Edit Download
73.35 KB lrw-r--r-- 2023-07-12 13:08:08
Edit Download
744 B lrw-r--r-- 2024-04-08 14:38:40
Edit Download
212 B lrw-r--r-- 2026-01-08 12:54:34
Edit Download
1.04 KB lrw-rw-rw- 2026-04-24 06:03:38
Edit Download
0 B lr--r--r-- 2026-06-22 21:54:05
Edit Download
41 B lrw-r--r-- 2024-04-07 00:31:07
Edit Download
11.16 KB lrw-r--r-- 2023-05-23 12:56:42
Edit Download
767 B lrw-r--r-- 2024-03-31 02:18:35
Edit Download
91 B lrw-r--r-- 2024-04-22 13:04:27
Edit Download
243 B lrwxr-xr-x 2023-10-19 14:02:56
Edit Download
526 B lrw-r--r-- 2026-01-08 12:54:33
Edit Download
400 B lrw-r--r-- 2025-08-01 14:21:11
Edit Download
6.76 KB lrw-r--r-- 2024-07-03 16:00:19
Edit Download
112 B lrw-r--r-- 2026-01-08 12:56:39
Edit Download
552 B lrw-r--r-- 2022-10-13 17:41:58
Edit Download
3 B lrw-r--r-- 2026-01-23 09:03:41
Edit Download
20.09 KB lrw-r--r-- 2026-06-19 13:25:38
Edit Download
20.13 KB lrw-r--r-- 2026-06-19 10:29:38
Edit Download
5 B lrw------- 2026-06-22 06:41:07
Edit Download
6 B lrw------- 2026-06-22 11:31:08
Edit Download
8 B lrw------- 2026-06-22 06:38:54
Edit Download
582 B lrw-r--r-- 2024-04-22 13:04:27
Edit Download
3.07 KB lrw-r--r-- 2022-10-17 22:19:05
Edit Download
920 B lrw-r--r-- 2026-06-22 11:31:27
Edit Download
54.71 KB lrwxr-xr-x 2024-04-08 16:20:47
Edit Download
911 B lrw-r--r-- 2022-10-17 22:24:22
Edit Download
1.18 KB lrw-r--r-- 2024-03-22 02:28:54
Edit Download
3.58 KB lrw-r--r-- 2016-06-20 00:31:45
Edit Download
10.34 KB lrw-r--r-- 2024-03-31 02:31:19
Edit Download
12.51 KB lrw-r--r-- 2021-03-27 22:32:57
Edit Download
39.37 KB lrw-r----- 2026-06-19 13:25:38
Edit Download
39.40 KB lrw-r----- 2026-06-19 10:29:38
Edit Download
148 B lrw-r--r-- 2026-02-07 06:05:52
Edit Download
8.92 KB lrw-r--r-- 2026-06-19 13:25:38
Edit Download
8.94 KB lrw-r--r-- 2026-06-19 10:29:38
Edit Download
8.92 KB lrw-r--r-- 2026-06-19 13:25:38
Edit Download
8.94 KB lrw-r--r-- 2026-06-19 10:29:38
Edit Download
4.24 KB lrw-r--r-- 2024-04-08 14:50:39
Edit Download
1.76 KB lr--r----- 2024-01-29 17:09:56
Edit Download
9.57 KB lrw-r--r-- 2024-04-08 14:50:39
Edit Download
2.18 KB lrw-r--r-- 2026-01-23 09:07:36
Edit Download
8 B lrw-r--r-- 2026-01-08 12:55:13
Edit Download
1.23 KB lrw-r--r-- 2023-01-27 13:29:51
Edit Download
1.49 KB lrw-r--r-- 2024-04-08 16:21:24
Edit Download
150 B lrw-r--r-- 2026-01-08 12:54:38
Edit Download
158 B lrw-r--r-- 2024-02-26 12:58:31
Edit Download
4.83 KB lrw-r--r-- 2024-06-19 12:14:03
Edit Download
681 B lrw-r--r-- 2024-04-08 15:54:10
Edit Download
460 B lrw-r--r-- 2023-01-20 13:39:07
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).