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


Viewing file:     CDDialog.py (1.4 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

import gtk
import gtk.glade
import os

from config import *
from rhpl.translate import _, N_
from rhpl.GenericError import *

class CDDialog:
    def __init__ (self, release_name, disk_id, items_installed, parent=None):
        glade_file = "CDDialog.glade"
        if not os.path.isfile(glade_file):
            glade_file = GLADEDIR + glade_file
        self.xml = gtk.glade.XML (glade_file, domain=PROGNAME)

        pixbuf_file = "cd-logo.png"
        if not os.path.isfile(pixbuf_file):
            pixbuf_file = RHCPIXMAPSDIR + pixbuf_file
        self.xml.get_widget ('cd_image').set_from_file (pixbuf_file)
        self.xml.get_widget ('primary_label').set_markup ("<span size=\"larger\" weight=\"bold\">" +_("\"%s\" disk %d needed to install packages") % (release_name, disk_id) + "</span>")
        if items_installed > 0:
            self.xml.get_widget ('secondary_label').set_text (_("Insert the disk and press OK.  If the disk is unavailable this operation can be canceled, but the packages already installed may not function correctly.") )
        else:
            self.xml.get_widget ('secondary_label').set_text (_("Insert the disk and press OK."))
        if parent:
            self.xml.get_widget ('cd_dialog').set_transient_for (parent)


    def display (self):
        dialog = self.xml.get_widget ('cd_dialog')
        dialog.show_all ()
        ret = dialog.run ()
        dialog.destroy ()
        return ret

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