!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/src/linux-2.4.18-xfs-1.1/arch/ppc/kernel/   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:     checks.c (1.3 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * BK Id: SCCS/s.checks.c 1.6 05/17/01 18:14:21 cort
 */
#include <linux/errno.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/smp_lock.h>
#include <linux/stddef.h>
#include <linux/unistd.h>
#include <linux/ptrace.h>
#include <linux/slab.h>
#include <linux/user.h>
#include <linux/a.out.h>

#include <asm/pgtable.h>
#include <asm/uaccess.h>
#include <asm/system.h>
#include <asm/io.h>

/*
 * Do various before compile checks of data structures
 * -- Cort
 */
int main(void)
{
    int ret = 0;
#if 0
    if ( sizeof(struct thread_struct) % 16 )
    {
        printf("Thread struct is not modulo 16 bytes: "
            "%d bytes total, %d bytes off\n",
            sizeof(struct thread_struct),
            sizeof(struct thread_struct)%16);
        ret = -1;
    }
#endif    

    if ( sizeof(struct pt_regs) % 16 )
    {
        printf("pt_regs struct is not modulo 16 bytes: "
            "%d bytes total, %d bytes off\n",
            sizeof(struct pt_regs),
            sizeof(struct pt_regs)%16);
        ret = -1;
        
    }

    printf("Task size        : %d bytes\n"
           "Tss size         : %d bytes\n"
           "pt_regs size     : %d bytes\n"
           "Kernel stack size: %d bytes\n",
           sizeof(struct task_struct), sizeof(struct thread_struct),
           sizeof(struct pt_regs),
           sizeof(union task_union) - sizeof(struct task_struct));
    return ret;
}

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