!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/mips64/sgi-ip32/   drwxr-xr-x
Free 318.32 GB of 458.09 GB (69.49%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     crime.c (1.37 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2001 Keith M Wesolowski
 */
#include <linux/types.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <asm/ip32/crime.h>
#include <asm/ptrace.h>
#include <asm/promlib.h>

void __init crime_init (void)
{
    u64 id = crime_read_64 (CRIME_ID);
    u64 rev = id & CRIME_ID_REV;

    id = (id & CRIME_ID_IDBITS) >> 4;

    printk ("CRIME id %1lx rev %ld detected at %016lx\n", id, rev,
        (unsigned long) CRIME_BASE);
}

/* XXX Like on Sun, these give us various useful information to printk. */
void crime_memerr_intr (unsigned int irq, void *dev_id, struct pt_regs *regs)
{
    u64 memerr = crime_read_64 (CRIME_MEM_ERROR_STAT);
    u64 addr = crime_read_64 (CRIME_MEM_ERROR_ADDR);
    memerr &= CRIME_MEM_ERROR_STAT_MASK;
    
    printk ("CRIME memory error at physaddr 0x%08lx status %08lx\n",
        addr << 2, memerr);

    crime_write_64 (CRIME_MEM_ERROR_STAT, 0);
}

void crime_cpuerr_intr (unsigned int irq, void *dev_id, struct pt_regs *regs)
{
    u64 cpuerr = crime_read_64 (CRIME_CPU_ERROR_STAT);
    u64 addr = crime_read_64 (CRIME_CPU_ERROR_ADDR);
    cpuerr &= CRIME_CPU_ERROR_MASK;
    addr <<= 2UL;

    printk ("CRIME CPU interface error detected at %09lx status %08lx\n",
        addr, cpuerr);

    crime_write_64 (CRIME_CPU_ERROR_STAT, 0);
}

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