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
/
usr /
lib /
pcp /
pmdas /
txmon /
[ HOME SHELL ]
Name
Size
Permission
Action
Install
1.32
KB
-rwxr-xr-x
Makefile
1.79
KB
-rw-r--r--
README
2.19
KB
-rw-r--r--
Remove
1
KB
-rwxr-xr-x
domain.h
58
B
-rw-r--r--
genload
2.8
KB
-rwxr-xr-x
help
2.1
KB
-rw-r--r--
pmns
1004
B
-rw-r--r--
root
114
B
-rw-r--r--
txmon.c
8.86
KB
-rw-r--r--
txmon.h
1.77
KB
-rw-r--r--
txrecord.c
2.96
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
# # Copyright (c) 2012 Red Hat. # Copyright (c) 2000,2003 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. # SHELL = sh ifdef PCP_CONF include $(PCP_CONF) else PCP_DIR = $(shell echo $$PCP_DIR) include $(PCP_DIR)/etc/pcp.conf endif include $(PCP_INC_DIR)/builddefs # strip -I and -L options # TMP := $(CFLAGS:-I%=) CFLAGS = $(TMP) PCP_LIBS = ifneq "$(PCP_INC_DIR)" "/usr/include/pcp" # for cc add -I<run-time-include-dir> (need /.. at the end so # #include <pcp/foo.h> works) when $(PCP_INC_DIR) may not be on # the default cpp include search path. CFLAGS += -I$(PCP_INC_DIR)/.. endif ifneq "$(PCP_LIB_DIR)" "/usr/lib" # for ld add -L<run-time-lib-dir> and include -rpath when # $(PCP_LIB_DIR) may not be on the default ld search path. # ifeq "$(PCP_PLATFORM)" "darwin" PCP_LIBS += -L$(PCP_LIB_DIR) -Wl,-rpath $(PCP_LIB_DIR) else PCP_LIBS += -L$(PCP_LIB_DIR) -Wl,-rpath=$(PCP_LIB_DIR) endif endif IAM = txmon CFILES = $(IAM).c CMDTARGET = pmda$(IAM) TARGETS = txrecord $(CMDTARGET) LLDLIBS = -lpcp_pmda -lpcp $(LIB_FOR_MATH) $(LIB_FOR_PTHREADS) LDIRT = *.log help.dir help.pag txrecord default: $(TARGETS) install: default pmda$(IAM): txmon.h domain.h $(CFILES) txrecord.o: txmon.h txrecord.c txrecord: txrecord.o $(CC) $(CFLAGS) -o $@ txrecord.o $(LDFLAGS) $(LDLIBS) include $(PCP_INC_DIR)/buildrules
Close