Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
backup-manager /
Delete
Unzip
Name
Size
Permission
Date
Action
contrib
[ DIR ]
drwxrwxrwx
2020-11-17 09:17
actions.sh
5.82
KB
-rwxrwxrwx
2016-08-23 12:51
backup-manager.conf.tpl
19.32
KB
-rwxrwxrwx
2016-08-23 12:51
backup-manager.cron.tpl
111
B
-rwxrwxrwx
2016-08-23 12:51
backup-methods.sh
35.41
KB
-rwxrwxrwx
2016-08-23 12:51
burning-methods.sh
16.14
KB
-rwxrwxrwx
2016-08-23 12:51
dbus.sh
2.81
KB
-rwxrwxrwx
2016-08-23 12:51
dialog.sh
3.07
KB
-rwxrwxrwx
2016-08-23 12:51
externals.sh
1.02
KB
-rwxrwxrwx
2016-08-23 12:51
files.sh
12.82
KB
-rwxrwxrwx
2016-08-23 12:51
gettext-dummy.sh
1.06
KB
-rwxrwxrwx
2016-08-23 12:51
gettext-real.sh
1.15
KB
-rwxrwxrwx
2016-08-23 12:51
gettext.sh
929
B
-rwxrwxrwx
2016-08-23 12:51
logger.sh
4.17
KB
-rwxrwxrwx
2016-08-23 12:51
md5sum.sh
2.24
KB
-rwxrwxrwx
2016-08-23 12:51
sanitize.sh
10.4
KB
-rwxrwxrwx
2016-08-23 12:51
upload-methods.sh
8.79
KB
-rwxrwxrwx
2016-08-23 12:51
Save
Rename
# Copyright © 2005-2016 The Backup Manager Authors # # See the AUTHORS file for details. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # Real gettext library. # Initialize the gettext stuff . /usr/bin/gettext.sh TEXTDOMAIN=backup-manager export TEXTDOMAIN # This is the wrapper to the gettext function # We use eval_gettext in order to substitue every # variable prensent in the string. function translate() { eval_gettext "$1"; echo } # This can do an echo with -n or not, and after # having gettextized the string. function echo_translated() { if [[ "$1" = "-n" ]]; then message=$(translate "$2") echo -n "$message" else message=$(translate "$1") echo "$message" fi }