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

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/include/linux/   drwxr-xr-x
Free 318.37 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     efs_fs_i.h (1.62 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * efs_fs_i.h
 *
 * Copyright (c) 1999 Al Smith
 *
 * Portions derived from IRIX header files (c) 1988 Silicon Graphics
 */

#ifndef    __EFS_FS_I_H__
#define    __EFS_FS_I_H__

typedef    int32_t        efs_block_t;
typedef uint32_t    efs_ino_t;

#define    EFS_DIRECTEXTENTS    12

/*
 * layout of an extent, in memory and on disk. 8 bytes exactly.
 */
typedef union extent_u {
    unsigned char raw[8];
    struct extent_s {
        unsigned int    ex_magic:8;    /* magic # (zero) */
        unsigned int    ex_bn:24;    /* basic block */
        unsigned int    ex_length:8;    /* numblocks in this extent */
        unsigned int    ex_offset:24;    /* logical offset into file */
    } cooked;
} efs_extent;

typedef struct edevs {
    short        odev;
    unsigned int    ndev;
} efs_devs;

/*
 * extent based filesystem inode as it appears on disk.  The efs inode
 * is exactly 128 bytes long.
 */
struct    efs_dinode {
    u_short        di_mode;    /* mode and type of file */
    short        di_nlink;    /* number of links to file */
    u_short        di_uid;        /* owner's user id */
    u_short        di_gid;        /* owner's group id */
    int32_t        di_size;    /* number of bytes in file */
    int32_t        di_atime;    /* time last accessed */
    int32_t        di_mtime;    /* time last modified */
    int32_t        di_ctime;    /* time created */
    uint32_t    di_gen;        /* generation number */
    short        di_numextents;    /* # of extents */
    u_char        di_version;    /* version of inode */
    u_char        di_spare;    /* spare - used by AFS */
    union di_addr {
        efs_extent    di_extents[EFS_DIRECTEXTENTS];
        efs_devs    di_dev;    /* device for IFCHR/IFBLK */
    } di_u;
};

/* efs inode storage in memory */
struct efs_inode_info {
    int        numextents;
    int        lastextent;

    efs_extent    extents[EFS_DIRECTEXTENTS];
};

#endif    /* __EFS_FS_I_H__ */


:: 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 #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.004 ]--