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


Viewing file:     bfs_fs.h (1.08 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
*    include/linux/bfs_fs.h - BFS data structures on disk.
*    Copyright (C) 1999 Tigran Aivazian <tigran@veritas.com>
*/

#ifndef _LINUX_BFS_FS_H
#define _LINUX_BFS_FS_H

#define BFS_BSIZE_BITS        9
#define BFS_BSIZE        (1<<BFS_BSIZE_BITS)

#define BFS_MAGIC        0x1BADFACE
#define BFS_ROOT_INO        2
#define BFS_INODES_PER_BLOCK    8

/* SVR4 vnode type values (bfs_inode->i_vtype) */
#define BFS_VDIR        2
#define BFS_VREG        1

/* BFS inode layout on disk */
struct bfs_inode {
    __u16 i_ino;
    __u16 i_unused;
    __u32 i_sblock;
    __u32 i_eblock;
    __u32 i_eoffset;
    __u32 i_vtype;
    __u32 i_mode;
    __s32 i_uid;
    __s32 i_gid;
    __u32 i_nlink;
    __u32 i_atime;
    __u32 i_mtime;
    __u32 i_ctime;
    __u32 i_padding[4];
};

#define BFS_NAMELEN        14    
#define BFS_DIRENT_SIZE        16
#define BFS_DIRS_PER_BLOCK    32

struct bfs_dirent {
    __u16 ino;
    char name[BFS_NAMELEN];
};

/* BFS superblock layout on disk */
struct bfs_super_block {
    __u32 s_magic;
    __u32 s_start;
    __u32 s_end;
    __s32 s_from;
    __s32 s_to;
    __s32 s_bfrom;
    __s32 s_bto;
    char  s_fsname[6];
    char  s_volume[6];
    __u32 s_padding[118];
};


#endif    /* _LINUX_BFS_FS_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 #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0032 ]--