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


Viewing file:     Constants.py (3.23 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
########################################################################
# $Header: /var/local/cvsroot/4Suite/Ft/Server/Server/Drivers/Constants.py,v 1.3 2004/12/16 07:02:29 uogbuji Exp $
"""
Constants used in the driver

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

from Ft.Xml.XLink import XLINK_NAMESPACE
from Ft.Server import FTSERVER_NAMESPACE, RESERVED_NAMESPACE
from Ft.Xml import Domlette, InputSource, XPath, XLink, XUpdate

xu_reader = XUpdate.Reader()
NEW_CONTAINER_CHILD_XUPDATE_STRING = """<?xml version="1.0"?>
<xupdate:modifications
  version="1.0"
  xmlns:xupdate="http://www.xmldb.org/xupdate"
  xmlns:ftss="%s"
  xmlns:xlink="%s"
>
  <xupdate:append select="(ftss:Repository | ftss:Container)/ftss:Children" child="last()">
    <ftss:ChildReference xlink:type="simple" xlink:actuate="onLoad" xlink:show="embed">
      <xupdate:attribute name='xlink:href'><xupdate:value-of select='concat($child-name,";metadata")'/></xupdate:attribute>
    </ftss:ChildReference>
  </xupdate:append>
</xupdate:modifications>"""%(str(FTSERVER_NAMESPACE), str(XLINK_NAMESPACE))

DUMMY_URI = "urn:bogus:4suite-%s"
isrc = InputSource.DefaultFactory.fromString(NEW_CONTAINER_CHILD_XUPDATE_STRING, DUMMY_URI % 'xupdate-new-container-child')
NEW_CONTAINER_CHILD_XUPDATE = xu_reader.fromSrc(isrc)


DELETE_CONTAINER_CHILD_XUPDATE = """<xupdate:modifications
  version="1.0"
  xmlns:xupdate="http://www.xmldb.org/xupdate"
  xmlns:ftss="%s"
  xmlns:xlink="%s"
>
  <xupdate:remove select="/ftss:*/ftss:Children/ftss:ChildReference[@xlink:href=concat($child-name, ';metadata')]"/>
</xupdate:modifications>
""" % (str(FTSERVER_NAMESPACE), str(XLINK_NAMESPACE))
isrc = InputSource.DefaultFactory.fromString(DELETE_CONTAINER_CHILD_XUPDATE, DUMMY_URI % 'xupdate-del-container-child')
DELETE_CONTAINER_CHILD_XUPDATE = xu_reader.fromSrc(isrc)


UPDATE_LAST_MODIFIED_AND_SIZE_STRING = """<xupdate:modifications
  version="1.0"
  xmlns:xupdate="http://www.xmldb.org/xupdate"
  xmlns:ftss="%s"
>
  <xupdate:update select="/ftss:MetaData/ftss:LastModifiedDate"><xupdate:value-of select='$lmd'/></xupdate:update>
  <xupdate:update select="/ftss:MetaData/ftss:Size"><xupdate:value-of select='$size'/></xupdate:update>
</xupdate:modifications>
""" % str(FTSERVER_NAMESPACE)

isrc = InputSource.DefaultFactory.fromString(UPDATE_LAST_MODIFIED_AND_SIZE_STRING, DUMMY_URI % 'xupdate-lastmod-and-size')
UPDATE_LAST_MODIFIED_AND_SIZE = xu_reader.fromSrc(isrc)


UPDATE_LAST_MODIFIED = """<xupdate:modifications
  version="1.0"
  xmlns:xupdate="http://www.xmldb.org/xupdate"
  xmlns:ftss="%s"
>
  <xupdate:update select="/ftss:MetaData/ftss:LastModifiedDate">%s</xupdate:update>
</xupdate:modifications>
"""

UPDATE_SIZE = """<xupdate:modifications
  version="1.0"
  xmlns:xupdate="http://www.xmldb.org/xupdate"
  xmlns:ftss="%s"
>
  <xupdate:update select="/ftss:MetaData/ftss:Size">%s</xupdate:update>
</xupdate:modifications>
"""

UPDATE_ACL = """<xupdate:modifications
  version="1.0"
  xmlns:xupdate="http://www.xmldb.org/xupdate"
  xmlns:ftss="%s"
>
  <xupdate:remove select="/ftss:MetaData/ftss:Acl"/>
  <xupdate:append select="/ftss:MetaData">%s</xupdate:append>
</xupdate:modifications>
"""



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