PHP 8.5.2
Preview: login.defs Size: 12.06 KB
//etc/login.defs

#
# /etc/login.defs - Configuration control definitions for the login package.
#
# Three items must be defined:  MAIL_DIR, ENV_SUPATH, and ENV_PATH.
# If unspecified, some arbitrary (and possibly incorrect) value will
# be assumed.  All other items are optional - if not specified then
# the described action or option will be inhibited.
#
# Comment lines (lines beginning with "#") and blank lines are ignored.
#
# Modified for Linux.  --marekm

# REQUIRED for useradd/userdel/usermod
#   Directory where mailboxes reside, _or_ name of file, relative to the
#   home directory.  If you _do_ define MAIL_DIR and MAIL_FILE,
#   MAIL_DIR takes precedence.
#
#   Essentially:
#      - MAIL_DIR defines the location of users mail spool files
#        (for mbox use) by appending the username to MAIL_DIR as defined
#        below.
#      - MAIL_FILE defines the location of the users mail spool files as the
#        fully-qualified filename obtained by prepending the user home
#        directory before $MAIL_FILE
#
# NOTE: This is no more used for setting up users MAIL environment variable
#       which is, starting from shadow 4.0.12-1 in Debian, entirely the
#       job of the pam_mail PAM modules
#       See default PAM configuration files provided for
#       login, su, etc.
#
# This is a temporary situation: setting these variables will soon
# move to /etc/default/useradd and the variables will then be
# no more supported
MAIL_DIR        /var/mail
#MAIL_FILE      .mail

#
# Enable logging and display of /var/log/faillog login failure info.
# This option conflicts with the pam_tally PAM module.
#
FAILLOG_ENAB		yes

#
# Enable display of unknown usernames when login failures are recorded.
#
# WARNING: Unknown usernames may become world readable. 
# See #290803 and #298773 for details about how this could become a security
# concern
LOG_UNKFAIL_ENAB	no

#
# Enable logging of successful logins
#
LOG_OK_LOGINS		no

#
# Enable "syslog" logging of su activity - in addition to sulog file logging.
# SYSLOG_SG_ENAB does the same for newgrp and sg.
#
SYSLOG_SU_ENAB		yes
SYSLOG_SG_ENAB		yes

#
# If defined, all su activity is logged to this file.
#
#SULOG_FILE	/var/log/sulog

#
# If defined, file which maps tty line to TERM environment parameter.
# Each line of the file is in a format something like "vt100  tty01".
#
#TTYTYPE_FILE	/etc/ttytype

#
# If defined, login failures will be logged here in a utmp format
# last, when invoked as lastb, will read /var/log/btmp, so...
#
FTMP_FILE	/var/log/btmp

#
# If defined, the command name to display when running "su -".  For
# example, if this is defined as "su" then a "ps" will display the
# command is "-su".  If not defined, then "ps" would display the
# name of the shell actually being run, e.g. something like "-sh".
#
SU_NAME		su

#
# If defined, file which inhibits all the usual chatter during the login
# sequence.  If a full pathname, then hushed mode will be enabled if the
# user's name or shell are found in the file.  If not a full pathname, then
# hushed mode will be enabled if the file exists in the user's home directory.
#
HUSHLOGIN_FILE	.hushlogin
#HUSHLOGIN_FILE	/etc/hushlogins

#
# *REQUIRED*  The default PATH settings, for superuser and normal users.
#
# (they are minimal, add the rest in the shell startup files)
ENV_SUPATH	PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ENV_PATH	PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games

#
# Terminal permissions
#
#	TTYGROUP	Login tty will be assigned this group ownership.
#	TTYPERM		Login tty will be set to this permission.
#
# If you have a "write" program which is "setgid" to a special group
# which owns the terminals, define TTYGROUP to the group number and
# TTYPERM to 0620.  Otherwise leave TTYGROUP commented out and assign
# TTYPERM to either 622 or 600.
#
# In Debian /usr/bin/bsd-write or similar programs are setgid tty
# However, the default and recommended value for TTYPERM is still 0600
# to not allow anyone to write to anyone else console or terminal

# Users can still allow other people to write them by issuing 
# the "mesg y" command.

TTYGROUP	tty
TTYPERM		0600

#
# Login configuration initializations:
#
#	ERASECHAR	Terminal ERASE character ('\010' = backspace).
#	KILLCHAR	Terminal KILL character ('\025' = CTRL/U).
#	UMASK		Default "umask" value.
#
# The ERASECHAR and KILLCHAR are used only on System V machines.
# 
# UMASK is the default umask value for pam_umask and is used by
# useradd and newusers to set the mode of the new home directories.
# 022 is the "historical" value in Debian for UMASK
# 027, or even 077, could be considered better for privacy
# There is no One True Answer here : each sysadmin must make up his/her
# mind.
#
# If USERGROUPS_ENAB is set to "yes", that will modify this UMASK default value
# for private user groups, i. e. the uid is the same as gid, and username is
# the same as the primary group name: for these, the user permissions will be
# used as group permissions, e. g. 022 will become 002.
#
# Prefix these values with "0" to get octal, "0x" to get hexadecimal.
#
ERASECHAR	0177
KILLCHAR	025
UMASK		022

# HOME_MODE is used by useradd(8) and newusers(8) to set the mode for new
# home directories.
# If HOME_MODE is not set, the value of UMASK is used to create the mode.
HOME_MODE	0750

#
# Password aging controls:
#
#	PASS_MAX_DAYS	Maximum number of days a password may be used.
#	PASS_MIN_DAYS	Minimum number of days allowed between password changes.
#	PASS_WARN_AGE	Number of days warning given before a password expires.
#
PASS_MAX_DAYS	99999
PASS_MIN_DAYS	0
PASS_WARN_AGE	7

#
# Min/max values for automatic uid selection in useradd
#
UID_MIN			 1000
UID_MAX			60000
# System accounts
#SYS_UID_MIN		  100
#SYS_UID_MAX		  999
# Extra per user uids
SUB_UID_MIN		   100000
SUB_UID_MAX		600100000
SUB_UID_COUNT		    65536

#
# Min/max values for automatic gid selection in groupadd
#
GID_MIN			 1000
GID_MAX			60000
# System accounts
#SYS_GID_MIN		  100
#SYS_GID_MAX		  999
# Extra per user group ids
SUB_GID_MIN		   100000
SUB_GID_MAX		600100000
SUB_GID_COUNT		    65536

#
# Max number of login retries if password is bad. This will most likely be
# overriden by PAM, since the default pam_unix module has it's own built
# in of 3 retries. However, this is a safe fallback in case you are using
# an authentication module that does not enforce PAM_MAXTRIES.
#
LOGIN_RETRIES		5

#
# Max time in seconds for login
#
LOGIN_TIMEOUT		60

#
# Which fields may be changed by regular users using chfn - use
# any combination of letters "frwh" (full name, room number, work
# phone, home phone).  If not defined, no changes are allowed.
# For backward compatibility, "yes" = "rwh" and "no" = "frwh".
# 
CHFN_RESTRICT		rwh

#
# Should login be allowed if we can't cd to the home directory?
# Default is no.
#
DEFAULT_HOME	yes

#
# If defined, this command is run when removing a user.
# It should remove any at/cron/print jobs etc. owned by
# the user to be removed (passed as the first argument).
#
#USERDEL_CMD	/usr/sbin/userdel_local

#
# Enable setting of the umask group bits to be the same as owner bits
# (examples: 022 -> 002, 077 -> 007) for non-root users, if the uid is
# the same as gid, and username is the same as the primary group name.
#
# If set to yes, userdel will remove the user's group if it contains no
# more members, and useradd will create by default a group with the name
# of the user.
#
USERGROUPS_ENAB yes

#
# Instead of the real user shell, the program specified by this parameter
# will be launched, although its visible name (argv[0]) will be the shell's.
# The program may do whatever it wants (logging, additional authentification,
# banner, ...) before running the actual shell.
#
# FAKE_SHELL /bin/fakeshell

#
# If defined, either full pathname of a file containing device names or
# a ":" delimited list of device names.  Root logins will be allowed only
# upon these devices.
#
# This variable is used by login and su.
#
#CONSOLE	/etc/consoles
#CONSOLE	console:tty01:tty02:tty03:tty04

#
# List of groups to add to the user's supplementary group set
# when logging in on the console (as determined by the CONSOLE
# setting).  Default is none.
#
# Use with caution - it is possible for users to gain permanent
# access to these groups, even when not logged in on the console.
# How to do it is left as an exercise for the reader...
#
# This variable is used by login and su.
#
#CONSOLE_GROUPS		floppy:audio:cdrom

#
# If set to "yes", new passwords will be encrypted using the MD5-based
# algorithm compatible with the one used by recent releases of FreeBSD.
# It supports passwords of unlimited length and longer salt strings.
# Set to "no" if you need to copy encrypted passwords to other systems
# which don't understand the new algorithm.  Default is "no".
#
# This variable is deprecated. You should use ENCRYPT_METHOD.
#
#MD5_CRYPT_ENAB	no

#
# If set to MD5, MD5-based algorithm will be used for encrypting password
# If set to SHA256, SHA256-based algorithm will be used for encrypting password
# If set to SHA512, SHA512-based algorithm will be used for encrypting password
# If set to BCRYPT, BCRYPT-based algorithm will be used for encrypting password
# If set to YESCRYPT, YESCRYPT-based algorithm will be used for encrypting password
# If set to DES, DES-based algorithm will be used for encrypting password (default)
# MD5 and DES should not be used for new hashes, see crypt(5) for recommendations.
# Overrides the MD5_CRYPT_ENAB option
#
# Note: It is recommended to use a value consistent with
# the PAM modules configuration.
#
ENCRYPT_METHOD SHA512

#
# Only works if ENCRYPT_METHOD is set to SHA256 or SHA512.
#
# Define the number of SHA rounds.
# With a lot of rounds, it is more difficult to brute-force the password.
# However, more CPU resources will be needed to authenticate users if
# this value is increased.
#
# If not specified, the libc will choose the default number of rounds (5000),
# which is orders of magnitude too low for modern hardware.
# The values must be within the 1000-999999999 range.
# If only one of the MIN or MAX values is set, then this value will be used.
# If MIN > MAX, the highest value will be used.
#
#SHA_CRYPT_MIN_ROUNDS 5000
#SHA_CRYPT_MAX_ROUNDS 5000

#
# Only works if ENCRYPT_METHOD is set to YESCRYPT.
#
# Define the YESCRYPT cost factor.
# With a higher cost factor, it is more difficult to brute-force the password.
# However, more CPU time and more memory will be needed to authenticate users
# if this value is increased.
#
# If not specified, a cost factor of 5 will be used.
# The value must be within the 1-11 range.
#
#YESCRYPT_COST_FACTOR 5

#
# The pwck(8) utility emits a warning for any system account with a home
# directory that does not exist.  Some system accounts intentionally do
# not have a home directory.  Such accounts may have this string as
# their home directory in /etc/passwd to avoid a spurious warning.
#
NONEXISTENT	/nonexistent

#
# Allow newuidmap and newgidmap when running under an alternative
# primary group.
#
#GRANT_AUX_GROUP_SUBIDS yes

#
# Select the HMAC cryptography algorithm.
# Used in pam_timestamp module to calculate the keyed-hash message
# authentication code.
#
# Note: It is recommended to check hmac(3) to see the possible algorithms
# that are available in your system.
#
#HMAC_CRYPTO_ALGO SHA512

################# OBSOLETED BY PAM ##############
#						#
# These options are now handled by PAM. Please	#
# edit the appropriate file in /etc/pam.d/ to	#
# enable the equivelants of them.
#
###############

#MOTD_FILE
#DIALUPS_CHECK_ENAB
#LASTLOG_ENAB
#MAIL_CHECK_ENAB
#OBSCURE_CHECKS_ENAB
#PORTTIME_CHECKS_ENAB
#SU_WHEEL_ONLY
#CRACKLIB_DICTPATH
#PASS_CHANGE_TRIES
#PASS_ALWAYS_WARN
#ENVIRON_FILE
#NOLOGINS_FILE
#ISSUE_FILE
#PASS_MIN_LEN
#PASS_MAX_LEN
#ULIMIT
#ENV_HZ
#CHFN_AUTH
#CHSH_AUTH
#FAIL_DELAY

################# OBSOLETED #######################
#						  #
# These options are no more handled by shadow.    #
#                                                 #
# Shadow utilities will display a warning if they #
# still appear.                                   #
#                                                 #
###################################################

# CLOSE_SESSIONS
# LOGIN_STRING
# NO_PASSWORD_CONSOLE
# QMAIL_DIR



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 16:24:13
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).