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


Viewing file:     URLBlackBox.py (814 B)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/python
import Alchemist
import time
import urllib
import gzip

def getBox(box_cfg):
    return URLBlackBox(box_cfg)

class URLBlackBox(Alchemist.BlackBox):
    def __init__ (self, box_cfg):
        self.status = 0
        self.me = self.__class__.__module__
        self._errNo = 0
        self._errStr = None
        self.readable = 1
        self.writable = 0
    
        Alchemist.validateBoxCfg(box_cfg)
    
        try:
            self.url = box_cfg.getChildByName("url").getValue()
        except:
            raise ValueError, "URLBlackBox box_cfgs must contain a 'url' element"

    def read (self):
        try:
            ufile = urllib.urlopen(self.url)
            gfile = gzip.GzipFile(fileobj = ufile)
            xml_str = gfile.read()
            gfile.close()
        
            context = Alchemist.Context(xml = xml_str)
            return context
        except:
            return None

    def version(self):
        return time.time() - time.timezone


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