Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
systemtap /
runtime /
linux /
uprobes /
[ HOME SHELL ]
Name
Size
Permission
Action
Makefile
2.17
KB
-rw-r--r--
uprobes.c
78.56
KB
-rw-r--r--
uprobes.h
12.05
KB
-rw-r--r--
uprobes_arch.c
278
B
-rw-r--r--
uprobes_arch.h
278
B
-rw-r--r--
uprobes_i386.c
12.57
KB
-rw-r--r--
uprobes_i386.h
2.47
KB
-rw-r--r--
uprobes_ppc.c
8.55
KB
-rw-r--r--
uprobes_ppc.h
2.28
KB
-rw-r--r--
uprobes_s390.c
5.62
KB
-rw-r--r--
uprobes_s390.h
2.77
KB
-rw-r--r--
uprobes_x86.c
24.55
KB
-rw-r--r--
uprobes_x86.h
3.3
KB
-rw-r--r--
uprobes_x86_64.c
23.86
KB
-rw-r--r--
uprobes_x86_64.h
2.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Makefile
obj-m := uprobes.o KDIR := /lib/modules/$(shell uname -r)/build PWD := $(shell pwd) DEPENDENCIES := $(shell echo uprobes.[ch] uprobes_*.[ch]) DEPENDENCIES += $(shell echo ../uprobes2/uprobes.[ch] ../uprobes2/uprobes_*.[ch]) DEPENDENCIES += Makefile CLEAN_FILES := $(shell echo *.mod.c *.ko *.o .*.cmd *~ *.sgn) CLEAN_FILES += Module.markers modules.order Module.symvers CLEAN_DIRS := .tmp_versions LIBEXECDIR = ../../../../libexec/systemtap CERTDB = ../../../../etc/systemtap/staprun # Build the module and, if we are root or stap-server, sign it. # Make sure that all the required tools and resources are available # before attempting to sign the module. # Ensure that the generated files are writable by the group which # owns this build directory. This is so that the stap-server service # can rebuild the module, if necessary. default: $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules if test `id -u` = 0 -o `id -un` = stap-server; then \ if test -x $(LIBEXECDIR)/stap-sign-module; then \ stap_dir=${SYSTEMTAP_DIR}; \ if test -z "$$stap_dir"; then \ stap_dir=~/.systemtap; \ fi; \ certfile=$$stap_dir/ssl/server/stap.cert; \ if test ! -f $$certfile -o -f $$stap_dir/ssl/server/pw; then \ $(LIBEXECDIR)/stap-gen-cert > /dev/null; \ fi; \ if test `id -u` = 0; then \ $(LIBEXECDIR)/stap-authorize-cert $$certfile $(CERTDB) > /dev/null; \ fi; \ for f in *.ko; do \ if test ! -e $$f.sgn -o $$f.sgn -ot $$f; then \ $(LIBEXECDIR)/stap-sign-module $$f > /dev/null; \ fi \ done \ fi \ fi group=`stat -c %G $(PWD)`; \ for f in $(CLEAN_FILES); do \ test ! -f $$f && continue; \ chgrp -f $$group $$f; \ chmod -f 664 $$f; \ done; \ for d in $(CLEAN_DIRS); do \ test ! -d $$d && continue; \ chgrp -f $$group $$d; \ chmod -f 775 $$d; \ for dd in `find $$d -type d`; do \ chgrp -f $$group $$dd; \ chmod -f 775 $$dd; \ done; \ for f in `find $$d -type f`; do \ chgrp -f $$group $$f; \ chmod -f 664 $$f; \ done; \ done # This target is used with "make -q" to see whether a "real" build is needed. uprobes.ko: $(DEPENDENCIES) @echo uprobes.ko is not a valid target. See Makefile. clean: rm -f $(CLEAN_FILES) rm -rf $(CLEAN_DIRS)
Close