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


Viewing file:     profile_util.py (2.58 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
import profile, pstats, os, sha



def run(cmd,g,l):
    tempFileName = 'out.profile'
    prof = profile.Profile()
    prof.runctx(cmd,g,l)

    prof.dump_stats(tempFileName)

    pstat = pstats.Stats(tempFileName)

    print "Sorted by total cumulative time"
    pstat.strip_dirs().sort_stats('time').print_stats(100)
    print "Sorted by number calls time"
    pstat.strip_dirs().sort_stats('calls').print_stats(100)
    print "Sorted by number calls time"
    pstat.strip_dirs().sort_stats('cumulative').print_stats(100)
    print "A Listing of who called who"
    pstat.print_callers()
    print "A Listing of who was called by who"
    pstat.print_callees()
    del pstat
    os.unlink(tempFileName)
    

from Ft.Server.Common import ClAuthenticate
from Ft.Server.Server import SCore
from Ft.Server.Server.Lib import LogUtil
def GetRepo():
    properties = GetProperties()
    return SCore.GetRepository(userName,sha.new(password).hexdigest(),LogUtil.NullLogger(),properties)


userName = 'root'
password = 'root'
from Ft.Server.Server.Commands import Init

from Ft.Rdf import Model

def InitRepo():
    global properties
    properties = GetProperties()
    Init.DoInit(properties, userName, sha.new(password).hexdigest(),
                ['Core'], 1, 0, [(userName, password)], 1)

properties = None
def InitModel():
    global properties
    driver = GetRdfDriverModule()
    if driver.ExistsDb('testModel'):
        driver.DestroyDb('testModel')
    db = driver.CreateDb('testModel')
    db.begin()
    return Model.Model(db)



def GetProperties():
    import sys
    properties = {}
    if "--postgres" in sys.argv:
        print "Using Postgress Driver"
        properties['Driver'] = PostgresDriverProperties()
    else:
        print "Using Flat File Driver"
        properties['Driver'] = FlatFileDriverProperties()

    properties['CoreId'] = 'Core'
    return properties


def GetRdfDriverModule():
    import sys
    properties = {}
    if "--postgres" in sys.argv:
        print "Using Postgres Driver"
        from Ft.Rdf.Drivers import Postgres
        return Postgres
    if "--dbm" in sys.argv:
        print "Using Dbm Driver"
        from Ft.Rdf.Drivers import Dbm
        return Dbm

    print "Memory Driver"
    from Ft.Rdf.Drivers import Memory
    return Memory


def GetRdfDriver():
    mod = GetRdfDriverModule()
    db = mod.GetDb('testModel')
    db.begin()
    return db

def FlatFileDriverProperties():
    return {'TYPE': 'FlatFile', 'Root': 'profileServer'}


def PostgresDriverProperties():
    return {'TYPE': 'Postgres', 'DbName': 'profileserver','Host':None, 'Port':-1,'User':None, 'Passwd':None}

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