Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
share /
xampp /
[ HOME SHELL ]
Name
Size
Permission
Action
activatephp
1.55
KB
-rwxrwxr-x
addons
1.34
KB
-rwxr-xr-x
alladdons
1.06
KB
-rwxr-xr-x
backup
2.43
KB
-rwxr-xr-x
backup.head
3.36
KB
-rwxr-xr-x
checkall
468
B
-rwxr-xr-x
checkftppassword
1.28
KB
-rwxr-xr-x
checkmysql
2.38
KB
-rwxr-xr-x
checkmysqlport
1.48
KB
-rwxr-xr-x
checkpmamysqluser
1.73
KB
-rwxr-xr-x
crypt
417
B
-rwxr-xr-x
daemon
1.35
KB
-rwxr-xr-x
diagnose
1.77
KB
-rwxr-xr-x
nogroupcheck
972
B
-rwxr-xr-x
oci8install
2.3
KB
-rwxr-xr-x
selinux
896
B
-rwxr-xr-x
status
870
B
-rwxr-xr-x
statusraw
775
B
-rwxr-xr-x
xampplib
1.95
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : checkftppassword
#!/bin/bash # Copyright 2002-2003 by Kai 'Oswald' Seidler, oswald@apachefriends.org, GPL-licensed if test "x$XAMPP_ROOT" = "x" then echo "Dont call this script directly!" exit 1 fi . $XAMPP_ROOT/share/xampp/xampplib if test "$1" = "check" then check="true" else check="false" fi lc="$XAMPP_ROOT/etc/xampp" f="$XAMPP_ROOT/etc/proftpd.conf" bon="[1m" boff="[m" if egrep "^UserPassword daemon 2TgxE8g184G9c" $f > /dev/null 2>&1 then $check && exit 1 echo "XAMPP: ${bon}" $($GETTEXT "The FTP password for user 'daemon' is still set to 'xampp'.") "${boff}" if test ! -f $lc/startftp then echo "XAMPP: " $($GETTEXT "(But you didn't use ProFTPD so this is not critical.)") fi q=$($GETTEXT 'Do you want to change the password?') ask="asky"; else $check && exit 0 echo "XAMPP: " $($GETTEXT 'ProFTPD has a new FTP password. Great!') q=$($GETTEXT 'Do you want to change the password anyway?') ask="askn"; fi if $ask "$q" then word=$(askp "$($GETTEXT 'Password:')" "$($GETTEXT 'Password (again):')") $awk -v pw="$word" ' /^UserPassword daemon 2TgxE8g184G9c/ { print "# commented out by xampp security" print "#"$0 print "UserPassword daemon "pw next } { print } ' $f > /tmp/lampp$$ cp /tmp/lampp$$ $f rm /tmp/lampp$$ $XAMPP_ROOT/xampp reloadftp fi
Close