!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:\copia nuevo\FileZillaFTP\source\   drwxrwxrwx
Free 9.41 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:     platform.h (1.43 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
// üPlatform.h
//
//////////////////////////////////////////////////////////////////////

#if !defined(_PLATFORM_INCLUDED_)
#define _PLATFORM_INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifdef _X86_
// X86 allows unaligned accesses, so we can just dereference any pointer
// after a cast
#define GET16(pc)    (*(WORD *)(pc))
#define GET32(pc)    (*(DWORD *)(pc))
#define GET64(pc)    (*(DWORD64 *)(pc))
#else // not _X86_
// Other platforms (IPF and AMD64) either have a have a significant penalty
// for unaligned accesses or they may trap to the OS).
// For these platformsm we put the bytes together to make 16, 32 and 64 bit
// objects.  We assume little-endian data.
#define GET16(pc)    ((WORD)(*(unsigned char *)(pc)) |    \
        ((*(unsigned char *)((pc) + 1)) << 8))
#define GET32(pc)    ((DWORD)(*(unsigned char *)(pc)) |    \
        ((*(unsigned char *)((pc) + 1)) << 8) |        \
        ((*(unsigned char *)((pc) + 2)) << 16) |    \
        ((*(unsigned char *)((pc) + 3)) << 24))
#define GET64(pc)    ((DWORD64)(*(unsigned char *)(pc)) |    \
        ((*(unsigned char *)((pc) + 1)) << 8) |        \
        ((*(unsigned char *)((pc) + 2)) << 16) |    \
        ((*(unsigned char *)((pc) + 3)) << 24) |    \
        ((*(unsigned char *)((pc) + 4)) << 32) |    \
        ((*(unsigned char *)((pc) + 5)) << 40) |    \
        ((*(unsigned char *)((pc) + 6)) << 48) |    \
        ((*(unsigned char *)((pc) + 7)) << 56))
#endif // if _X86_ ... else not _X86_ ...

#endif // !defined(_PLATFORM_INCLUDED_)

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