Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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 /
lib /
rpm /
redhat /
[ HOME SHELL ]
Name
Size
Permission
Action
find-provides.d
[ DIR ]
drwxr-xr-x
brp-compress
1.42
KB
-rwxr-xr-x
brp-implant-ident-static
970
B
-rwxr-xr-x
brp-java-repack-jars
2.6
KB
-rwxr-xr-x
brp-python-hardlink
682
B
-rwxr-xr-x
brp-redhat
405
B
-rwxr-xr-x
brp-sparc64-linux
1.05
KB
-rwxr-xr-x
brp-strip
509
B
-rwxr-xr-x
brp-strip-comment-note
803
B
-rwxr-xr-x
brp-strip-shared
707
B
-rwxr-xr-x
brp-strip-static-archive
416
B
-rwxr-xr-x
config.guess
43.55
KB
-rwxr-xr-x
config.sub
31.96
KB
-rwxr-xr-x
dist.sh
1.92
KB
-rwxr-xr-x
find-provides
2.79
KB
-rwxr-xr-x
find-provides.ksyms
241
B
-rwxr-xr-x
find-provides.libtool
187
B
-rwxr-xr-x
find-provides.pkgconfig
603
B
-rwxr-xr-x
find-requires
4.05
KB
-rwxr-xr-x
find-requires.ksyms
4.44
KB
-rwxr-xr-x
find-requires.libtool
271
B
-rwxr-xr-x
find-requires.pkgconfig
257
B
-rwxr-xr-x
kmodtool
7.5
KB
-rwxr-xr-x
macros
8.66
KB
-rw-r--r--
perl.prov
4.73
KB
-rwxr-xr-x
perl.req
6.22
KB
-rwxr-xr-x
rpmrc
3.25
KB
-rw-r--r--
rpmsort
2.11
KB
-rwxr-xr-x
symset-table
903
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : brp-implant-ident-static
#!/bin/bash # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi tempdir=`mktemp -d /tmp/implant-ident-XXXXXX` if test -z "$tempdir" ; then exit 1 fi cleanup() { rm -f $tempdir/* rmdir $tempdir } trap cleanup 0 1 2 3 4 5 6 7 8 9 11 13 14 15 for library in `find $RPM_BUILD_ROOT -type f -exec file \{\} \; | grep 'current ar archive' | sed 's,:.*,,g' ` ; do pushd $tempdir > /dev/null if test -n "$RPM_BUILD_ROOT" ; then cleanedlibrary=`echo "$library" | sed s,"$RPM_BUILD_ROOT",,g` else cleanedlibrary="$library" fi ar x "$library" for object in *.o ; do echo '$RPM: '${RPM_PACKAGE_NAME:-UNKNOWN_NAME}-${RPM_PACKAGE_VERSION:-UNKNOWN_VERSION}-${RPM_PACKAGE_RELEASE:-UNKNOWN_RELEASE}:"$cleanedlibrary":"$object"' $' > __x_rpm_ident_string.txt objcopy --add-section .rodata=__x_rpm_ident_string.txt "$object" ar r "$library" "$object" done rm -f *.o popd > /dev/null done
Close