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


Viewing file:     system-config-mouse.py (1.54 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/python

import signal
import sys
import getopt

##
## I18N
##
from rhpl.translate import _, N_
import rhpl.translate as translate
translate.textdomain ("system-config-mouse")

TRUE = 1
FALSE = 0

if __name__ == "__main__":
    signal.signal (signal.SIGINT, signal.SIG_DFL)


def useTextMode():
    import mouse_tui
    app = mouse_tui.childWindow()

def useGuiMode():
    import mouse_gui
    app = mouse_gui.childWindow()
    app.stand_alone()

def useCliMode(mousetype, device, emulthree, help):
    import mouse_cli
    app = mouse_cli.childWindow(mousetype, device, emulthree, help)

mousetype = None

opts, mousetype = getopt.getopt(sys.argv[1:],
                           "d:h",
                           ["noui", "text", "kickstart", "modifyx", "help", "device=", "emulthree"])

if mousetype:
    mousetype = mousetype[0]
emulthree = None
device = None
help = None

for (opt, value) in opts:
    if opt == "--help":
        help = TRUE
        useCliMode(mousetype, device, emulthree, help)
    if opt == "--device":
        device = value
    if opt == "--emulthree":
        emulthree = TRUE

if "--noui" in sys.argv or "--kickstart" in sys.argv or mousetype or emulthree:
    useCliMode(mousetype, device, emulthree, help)

elif "--text" in sys.argv or "-t" in sys.argv:
    useTextMode()

else:
    try:
        useGuiMode()
    except:
        #Gui can't be started for some reason, so use text mode
        print (_("Starting graphical mode failed.  Starting text mode instead."))
        import time
        time.sleep(2)
        useTextMode()
        

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