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 : pmproxy
#!/bin/sh # # Copyright (c) 2023 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. # # Wrapper script to start or Stop the Performance Co-Pilot pmproxy # process. The real work is done in $PCP_SYSCONF_DIR/pmproxy/rc. # # The following is for chkconfig on RedHat based systems # chkconfig: 2345 95 05 # description: pmproxy is the pmcd proxy daemon for the Performance Co-Pilot (PCP) # # The following is for insserv(1) based systems, # e.g. SuSE, where chkconfig is a perl script. ### BEGIN INIT INFO # Provides: pmproxy # Required-Start: $remote_fs # Should-Start: $local_fs $network $syslog $time $pmcd # Required-Stop: $remote_fs # Should-Stop: $local_fs $network $syslog $pmcd # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Control pmproxy (the pmcd proxy daemon for PCP) # Description: Configure and control pmproxy (the pmcd proxy daemon for the Performance Co-Pilot) ### END INIT INFO # # For FreeBSD # PROVIDE: pmproxy # REQUIRE: NETWORKING FILESYSTEMS pmcd # KEYWORD: shutdown # And add the following lines to /etc/rc.conf to run pmproxy: # pmproxy_enable="YES" # . $PCP_DIR/etc/pcp.env if [ `id -u` -ne 0 ] then echo "$0: Error: You must be root (uid 0) to start or stop pmproxy via this script" exit 1 fi # Handle setup for transients that might be lost after reboot, # e.g. $PCP_RUN_DIR # $PCP_BINADM_DIR/pcp-reboot-init # paranoid defaults if something goes wrong ... [ -z "$PCP_USER" ] && PCP_USER=pcp [ -z "$PCP_GROUP" ] && PCP_USER=pcp # if we're called with -v (or any other command line option) this is # an arg for our "rc" script, not setpriv(1) or runuser(1) export POSIXLY_CORRECT=true # do the real startup as user pcp:pcp # if which setpriv >/dev/null 2>&1 then uid=`id -u $PCP_USER` gid=`id -g $PCP_GROUP` setpriv --clear-groups --reuid=$uid --regid=$gid \ $PCP_SYSCONF_DIR/pmproxy/rc "$@" elif which runuser >/dev/null 2>&1 then runuser -s /bin/sh -g $PCP_GROUP $PCP_USER $PCP_SYSCONF_DIR/pmproxy/rc "$@" else $PCP_BINADM_DIR/runaspcp "$PCP_SYSCONF_DIR/pmproxy/rc $*" fi exit $?
Close