!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/parisc/kernel/   drwxr-xr-x
Free 318.33 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:     keyboard.c (1.47 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 *  linux/arch/parisc/kernel/keyboard.c
 *
 *  Alex deVries <adevries@thepuffingroup.com>
 *  Copyright (1999) The Puffin Group
 *  Mostly rewritten by Philipp Rumpf <prumpf@tux.org>
 *  Copyright 2000 Philipp Rumpf
 */

#include <linux/keyboard.h>
#include <asm/keyboard.h>

static int def_setkeycode(unsigned int x, unsigned int y)
{
    return 0;
}

static int def_getkeycode(unsigned int x)
{
    return 0;
}

static int def_translate(unsigned char scancode, unsigned char *keycode,
    char raw)
{
    *keycode = scancode;

    return 1;
}

static char def_unexpected_up(unsigned char c)
{
    return 128;
}

static void def_leds(unsigned char leds)
{
}

static void def_init_hw(void)
{
}

static char def_sysrq_xlate[NR_KEYS];

static struct kbd_ops def_kbd_ops = {
    setkeycode:    def_setkeycode,
    getkeycode:    def_getkeycode,
    translate:    def_translate,
    unexpected_up:    def_unexpected_up,
    leds:        def_leds,
    init_hw:    def_init_hw,

    sysrq_key:    0xff,
    sysrq_xlate:    def_sysrq_xlate,
};

struct kbd_ops *kbd_ops = &def_kbd_ops;

void register_kbd_ops(struct kbd_ops *ops)
{
    if(ops->setkeycode)
        kbd_ops->setkeycode = ops->setkeycode;
    
    if(ops->getkeycode)
        kbd_ops->getkeycode = ops->getkeycode;
    
    if(ops->translate)
        kbd_ops->translate = ops->translate;
    
    if(ops->unexpected_up)
        kbd_ops->unexpected_up = ops->unexpected_up;
    
    if(ops->leds)
        kbd_ops->leds = ops->leds;
    
    if(ops->init_hw)
        kbd_ops->init_hw = ops->init_hw;
    
    kbd_ops->sysrq_key = ops->sysrq_key;
    kbd_ops->sysrq_xlate = ops->sysrq_xlate;
}

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