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

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/lib/python2.4/site-packages/Ft/Server/Server/Http/   drwxr-xr-x
Free 3.99 GB of 27.03 GB (14.74%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     TransferLog.py (1.34 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
import re

COMMON_LOG_FORMAT = '%h %l %u %t "%r" %s %b'
COMBINED_LOG_FORMAT = '%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-agent}i"'

formatPatt = re.compile('%({(?P<field>[^{]+)})?(?P<key>[a-zA-Z%])')
formatReplaces = {'b' : 'bytes-sent',
                  'f' : 'filename',
                  'a' : 'remote-ip',
                  'h' : 'remote-host',
                  'l' : 'remote-user',
                  'P' : 'pid',
                  'p' : 'server-port',
                  'r' : 'request-line',
                  's' : 'status',
                  't' : 'time',
                  'U' : 'url',
                  'u' : 'username',
                  'v' : 'virtual-host',
                  }

def MakeFormatString(logFormat):
    fields = {'e' : [],
              'i' : [],
              'o' : [],
             }

    def repl(match, fields=fields):
        key = match.group('key')
        if key in formatReplaces.keys():
            return '%%(%s)s' % formatReplaces[key]
        if key in fields.keys():
            name = '%s%d' % (key, len(fields[key]))
            fields[key].append(match.group('field'))
            return '%%(%s)s' % name
        raise SystemExit('Unknown format specifier %s in LogFormat' % match.string)

    format = re.sub(formatPatt, repl, logFormat)
    if format[-1] != '\n':
        format = format + '\n'
    return (format, fields)

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0036 ]--