!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/arm/lib/   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:     io-shark.c (1.73 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 *  linux/arch/arm/lib/io-shark.c
 *
 *  by Alexander Schulz <aschulz@netwinder.org>
 *
 * derived from:
 * linux/arch/arm/lib/io-ebsa.S
 * Copyright (C) 1995, 1996 Russell King
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/kernel.h>

#include <asm/io.h>

void print_warning(void)
{
    printk(KERN_WARNING "ins?/outs? not implemented on this architecture\n");
}

void insl(unsigned int port, void *to, int len)
{
    print_warning();
}

void insb(unsigned int port, void *to, int len)
{
    print_warning();
}

void outsl(unsigned int port, const void *from, int len)
{
    print_warning();
}

void outsb(unsigned int port, const void *from, int len)
{
    print_warning();
}

/* these should be in assembler again */

/*
 * Purpose: read a block of data from a hardware register to memory.
 * Proto  : insw(int from_port, void *to, int len_in_words);
 * Proto  : inswb(int from_port, void *to, int len_in_bytes);
 * Notes  : increment to
 */

void insw(unsigned int port, void *to, int len)
{
    int i;

    for (i = 0; i < len; i++)
        ((unsigned short *) to)[i] = inw(port);
}

void inswb(unsigned int port, void *to, int len)
{
    insw(port, to, len >> 2);
}

/*
 * Purpose: write a block of data from memory to a hardware register.
 * Proto  : outsw(int to_reg, void *from, int len_in_words);
 * Proto  : outswb(int to_reg, void *from, int len_in_bytes);
 * Notes  : increments from
 */

void outsw(unsigned int port, const void *from, int len)
{
    int i;

    for (i = 0; i < len; i++)
        outw(((unsigned short *) from)[i], port);
}

void outswb(unsigned int port, const void *from, int len)
{
    outsw(port, from, len >> 2);
}

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