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


Viewing file:     notebook.py (1.24 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/env python

import pygtk
pygtk.require('2.0')
import gtk

def destroy(args):
    window.destroy()
    gtk.main_quit()

window = gtk.Window()
window.connect("destroy", destroy)
window.set_title('Notebook')
window.set_border_width(0)
window.set_size_request(400, 400)

box1 = gtk.VBox()
window.add(box1)
box1.show()

box2 = gtk.VBox(spacing=10)
box2.set_border_width(10)
box1.pack_start(box2)
box2.show()

notebook = gtk.Notebook()
notebook.set_tab_pos(gtk.POS_TOP)
box2.pack_start(notebook)
notebook.show()

names = ['Background', 'Colors', 'System', 'Setup', 'Samba']

for i in range(len(names)):
    buffer = names[i]
    frame = gtk.Frame(buffer)
    frame.set_border_width(10)
    frame.set_size_request(200, 300)
    frame.set_shadow_type(gtk.SHADOW_ETCHED_OUT)
    frame.show()

    label = gtk.Label(buffer)
    frame.add(label)
    label.show()

    label = gtk.Label(buffer)
    label.set_padding(2, 2)
    notebook.append_page(frame, label)

separator = gtk.HSeparator()
box1.pack_start(separator)
separator.show()

box3 = gtk.VBox(spacing=10)
box3.set_border_width(10)
box1.pack_start(box3)
box3.show()

button = gtk.Button(stock=gtk.STOCK_CLOSE)
box3.pack_start(button)
button.connect('clicked', destroy)
button.show()

window.show()
gtk.main()

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