!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/drivers/block/paride/   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:     setup.h (1.29 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
    setup.h       (c) 1997-8   Grant R. Guenther <grant@torque.net>
                        Under the terms of the GNU General Public License.

        This is a table driven setup function for kernel modules
        using the module.variable=val,... command line notation.

*/

/* Changes:

    1.01    GRG 1998.05.05    Allow negative and defaulted values

*/

#include <linux/ctype.h>
#include <linux/string.h>

struct setup_tab_t {

    char    *tag;    /* variable name */
    int    size;    /* number of elements in array */
    int    *iv;    /* pointer to variable */
};

typedef struct setup_tab_t STT;

/*  t       is a table that describes the variables that can be set
      by gen_setup
    n      is the number of entries in the table
    ss      is a string of the form:

        <tag>=[<val>,...]<val>
*/

static void generic_setup( STT t[], int n, char *ss )

{    int    j,k, sgn;

    k = 0;
    for (j=0;j<n;j++) {
        k = strlen(t[j].tag);
        if (strncmp(ss,t[j].tag,k) == 0) break;
    }
    if (j == n) return;

    if (ss[k] == 0) {
        t[j].iv[0] = 1;
        return;
    }

    if (ss[k] != '=') return;
    ss += (k+1);

    k = 0;
    while (ss && (k < t[j].size)) {
        if (!*ss) break;
        sgn = 1;
        if (*ss == '-') { ss++; sgn = -1; }
        if (!*ss) break;
        if (isdigit(*ss))
          t[j].iv[k] = sgn * simple_strtoul(ss,NULL,0);
        k++; 
        if ((ss = strchr(ss,',')) != NULL) ss++;
    }
}

/* end of setup.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 #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0046 ]--