!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/bin/X11/./../../lib/evolution-openldap/../python2.4/site-packages/Ft/Lib/TestSuite/   drwxr-xr-x
Free 5.02 GB of 27.03 GB (18.56%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     TestMode.py (1.76 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
########################################################################
# $Header: /var/local/cvsroot/4Suite/Ft/Lib/TestSuite/TestMode.py,v 1.2 2002/07/18 18:15:58 molson Exp $
"""
Provides the TestMode base class for testing modes.

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

__revision__ = "$Id: TestMode.py,v 1.2 2002/07/18 18:15:58 molson Exp $"

class TestMode:
    def __init__(self, name, default):
        self.name = name
        self.default = default
        self.initialized = None
        return
    
    def initialize(self, tester):
        """
        Called the first time this mode is used. A return value of false
        signals that this mode is not to be used.
        """
        if self.initialized is None:
            # First time through
            self.initialized = self._init(tester)
        return self.initialized

    def start(self, tester):
        """
        Called before beginning any tests.
        """
        tester.startGroup(self.name)
        self._pre(tester)
        return

    def finish(self, tester):
        """
        Called when all tests have run to completion (or exception).
        """
        self._post(tester)
        tester.groupDone()
        return

    # -- hooks for subclasses ----------------------------------------

    def _init(self, tester):
        return 1

    def _pre(self, tester):
        pass

    def _post(self, tester):
        pass

class DefaultMode(TestMode):
    def __init__(self):
        TestMode.__init__(self, '', 1)
        return
    def initialize(self, tester):
        return 1
    def start(self, tester):
        return
    def finish(self, tester):
        return


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