!c99Shell v. 1.0 pre-release build #16!

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/usr/bin/   drwxr-xr-x
Free 52.27 GB of 127.8 GB (40.9%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     jvmjar (1.72 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/bin/sh
#
# Small script to install a jar in multiple version-specific locations
#
# JPackage project
#
# $Id: jvmjar,v 1.1 2004/12/15 16:23:45 robert Exp $

# System-wide java configuration
JAVA_CONF=/etc/java/java.conf

if [ -z "$JAVA_LIBDIR" ] ; then 
    [ -r "$JAVA_CONF" ] && . "$JAVA_CONF" || JAVA_LIBDIR=/usr/share/java
fi

usage() {
/bin/cat << EOF_USAGE
Usage: $0 <l|u> <jar> <extension> <version> [<versionB> ... <versionZ>]
- l|u: link/unlink jars
- jar: name of the jar present in $JAVA_LIBDIR-ext to install as a jvm extension
       For example: jaf for $JAVA_LIBDIR-ext/jaf.jar
       Only required with -l
- extension: name under which the jar should be known in the jvm dirs
             For example: activation for activation.jar
             This is necessary when the same extension is provided by different
             jars depending on jvm version (i.e. classes.jar, classes12.jar and
             so on).
- versionX: versions of the java standard (1.2, 1.3...) that support this jar as
            an external extension
EOF_USAGE
exit 0
}

[ $# -lt 3 ] && usage

case "$1" in
    -l|--link|-c|--create)
    LINK="true"
    [ $# -lt 4 ] && usage
    shift
    ORIGINAL_JAR_NAME="$1"
    if ! [ -e "$JAVA_LIBDIR-ext/$ORIGINAL_JAR_NAME.jar" ] ; then
        echo "Could not find $JAVA_LIBDIR-ext/$ORIGINAL_JAR_NAME.jar" >&2
        exit 1
    fi
    ;;
    -u|--unlink|-d|--delete)
    LINK="false"
    ;;
    *)
    usage
esac

shift
EXTENSION_NAME="$1"
shift

for version in "$@" ; do
    if [ $LINK = "true" ] ; then
    [ -d $JAVA_LIBDIR-$version ] || /usr/bin/install -d -m 755 $JAVA_LIBDIR-$version
    /bin/ln -fs "../java-ext/$ORIGINAL_JAR_NAME.jar" \
        $JAVA_LIBDIR-$version/$EXTENSION_NAME.jar
    else
    /bin/rm -f "$JAVA_LIBDIR-$version/$EXTENSION_NAME.jar"
    fi
done

:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0062 ]--