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 © 2007 Rached Ben Mustapha # # 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. # # # The backup-manager's dbus.sh library. # # If the dbus utilities are installed, these functions send # signals on the bus, (system or session one, as appropriate) # so that other processes on the system can react to backup # events, and thus increase the hype-level of backup-manager. # # These interfaces are still experimental and are subject to # change. # # Message contents: # * int32 percentage # * string label (human-readable string describing what is # currently being done) PROGRESS_INTERFACE="org.backupmanager.BackupManager.ProgressNotify" # Message contents: # * string event_name (one of "startup", "shutdown") # * string argument (details of the event) EVENT_INTERFACE="org.backupmanager.BackupManager.EventNotify" # Message contents: # * string level (one of debug, info, warning, error) # * string message (possibly truncated to fit in a dbus message) LOG_MESSAGE_INTERFACE="org.backupmanager.BackupManager.LogMessageNotify" SYSTEM_BUS_OBJECT="/org/backupmanager/instance/SystemInstance" USER_BUS_OBJECT="/org/backupmanager/instance/UserInstance/${USERNAME}" function bm_dbus_init() { debug "bm_dbus_init()" dbus_send=$(which dbus-send 2>/dev/null) || true if [ -x "${dbus_send}" ]; then if [ "${UID}" = "0" ]; then bus_type="system" bus_object=${SYSTEM_BUS_OBJECT} else bus_type="session" bus_object=${USER_BUS_OBJECT} fi dbus_send_cmd="${dbus_send} --${bus_type} --type=signal ${bus_object}" else dbus_send_cmd="" fi } function bm_dbus_send_progress() { local percentage label percentage=${1} label=${2} if [ -n "${dbus_send_cmd}" ]; then ${dbus_send_cmd} ${PROGRESS_INTERFACE} int32:"${percentage}" string:"${label}" || true fi } function bm_dbus_send_log_message() { local level message level=${1} message=${2} if [ -n "${dbus_send_cmd}" ]; then ${dbus_send_cmd} ${LOG_MESSAGE_INTERFACE} string:"${level}" string:"${message}" || true fi } function bm_dbus_send_event() { local event_name details event_name=${1} details=${2} if [ -n "${dbus_send_cmd}" ]; then ${dbus_send_cmd} ${EVENT_INTERFACE} string:"${event_name}" string:"${details}" || true fi }