!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.84 GB of 27.03 GB (14.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     shm.h (2.17 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef _LINUX_SHM_H_
#define _LINUX_SHM_H_

#include <linux/ipc.h>
#include <asm/page.h>

/*
* SHMMAX, SHMMNI and SHMALL are upper limits are defaults which can
* be increased by sysctl
*/

#define SHMMAX 0x2000000         /* max shared seg size (bytes) */
#define SHMMIN 1             /* min shared seg size (bytes) */
#define SHMMNI 4096             /* max num of segs system wide */
#define SHMALL (SHMMAX/PAGE_SIZE*(SHMMNI/16)) /* max shm system wide (pages) */
#define SHMSEG SHMMNI             /* max shared segs per process */

#include <asm/shmparam.h>

/* Obsolete, used only for backwards compatibility and libc5 compiles */
struct shmid_ds {
    struct ipc_perm        shm_perm;    /* operation perms */
    int            shm_segsz;    /* size of segment (bytes) */
    __kernel_time_t        shm_atime;    /* last attach time */
    __kernel_time_t        shm_dtime;    /* last detach time */
    __kernel_time_t        shm_ctime;    /* last change time */
    __kernel_ipc_pid_t    shm_cpid;    /* pid of creator */
    __kernel_ipc_pid_t    shm_lpid;    /* pid of last operator */
    unsigned short        shm_nattch;    /* no. of current attaches */
    unsigned short         shm_unused;    /* compatibility */
    void             *shm_unused2;    /* ditto - used by DIPC */
    void            *shm_unused3;    /* unused */
};

/* Include the definition of shmid64_ds and shminfo64 */
#include <asm/shmbuf.h>

/* permission flag for shmget */
#define SHM_R        0400    /* or S_IRUGO from <linux/stat.h> */
#define SHM_W        0200    /* or S_IWUGO from <linux/stat.h> */

/* mode for attach */
#define    SHM_RDONLY    010000    /* read-only access */
#define    SHM_RND        020000    /* round attach address to SHMLBA boundary */
#define    SHM_REMAP    040000    /* take-over region on attach */
#define    SHM_EXEC    0100000    /* execution access */

/* super user shmctl commands */
#define SHM_LOCK     11
#define SHM_UNLOCK     12

/* ipcs ctl commands */
#define SHM_STAT     13
#define SHM_INFO     14

/* Obsolete, used only for backwards compatibility */
struct    shminfo {
    int shmmax;
    int shmmin;
    int shmmni;
    int shmseg;
    int shmall;
};

struct shm_info {
    int used_ids;
    unsigned long shm_tot;    /* total allocated shm */
    unsigned long shm_rss;    /* total resident shm */
    unsigned long shm_swp;    /* total swapped shm */
    unsigned long swap_attempts;
    unsigned long swap_successes;
};


#endif /* _LINUX_SHM_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 ]--