!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\nuevo\FileZillaFTP\source\   drwxrwxrwx
Free 9.42 GB of 239.26 GB (3.94%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     hash_thread.h (930 B)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef __HASHTHREAD_H__
#define __HASHTHREAD_H__

class CServerThread;
class CHashThread
{
public:
    enum _result
    {
        OK = 0,
        PENDING = 1,
        BUSY = 2,
        FAILURE_OPEN = 4,
        FAILURE_READ = 8,
        FAILURE_MASK = 12
    };

    enum _algorithm
    {
        MD5,
        SHA1,
        SHA512
    };

    CHashThread();
    virtual ~CHashThread();

    enum _result Hash(LPCTSTR file, enum _algorithm algorithm, int& id, CServerThread* server_thread);

    enum _result GetResult(int id, CHashThread::_algorithm& alg, CStdString& hash, CStdString& file);

    void Stop(CServerThread* server_thread);

private:
    void DoHash();
    void Loop();

    static DWORD WINAPI ThreadFunc(LPVOID pThis);

    LPTSTR m_filename;
    CServerThread* m_server_thread;

    CCriticalSectionWrapper m_sync;

    bool m_quit;

    int m_id;
    int m_active_id;
    enum _result m_result;
    char* m_hash;
    enum _algorithm m_algorithm;

    HANDLE m_hThread;
};

#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--