!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/   drwxr-xr-x
Free 3.38 GB of 27.03 GB (12.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     __init__.py (1.59 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
########################################################################
# $Header: /var/local/cvsroot/4Suite/Ft/Server/Server/__init__.py,v 1.6 2005/04/07 20:05:54 jkloth Exp $
"""
Repository server (direct access) base module

Copyright 2005 Fourthought, Inc. (USA).
Detailed license and copyright information: http://4suite.org/COPYRIGHT
Project home, documentation, distributions: http://4suite.org/
"""

from Ft.Server import FtServerBaseException, FTSERVER_NAMESPACE

#FTSERVER_SERVER_NS = FTSERVER_NAMESPACE + '/server'
FTSERVER_SERVER_NS = FTSERVER_NAMESPACE

import MessageSource

class FtServerServerException(FtServerBaseException):
    """
    Exception class for errors incurred while using the
    server core APIs
    """
    MessageSource = MessageSource

Error = MessageSource.Error

# Base class for modules used in servers
class Module:

    commands = {}

    handlers = {}

    def initialize(self, parser, config):
        """
        Hook to allow all modules to perform whatever is needed before
        beginning to process configuration entries.
        """
        pass

    def loadObject(self, path):
        print 'FIXME - load in restricted execution,', path
        try:
            parts = path.split('.')
            module = __import__('.'.join(parts[:-1]), {}, {}, parts[-1:])
            return getattr(module, parts[-1])
        except:
            exception, value = sys.exc_info()[:2]
            if type(exception) is types.ClassType:
                exception = exception.__name__
            msg = 'problem with %s - %s: %s' % (path, exception, value)
            raise Exception(msg)

:: 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.0037 ]--