!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)

/home/mallory/public_html/stats/webalizer-2.01-10/   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:     hashtab.h (4.6 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef _HASHTAB_H
#define _HASHTAB_H

typedef struct hnode *HNODEPTR;            /* site node (host) pointer     */
typedef struct unode *UNODEPTR;            /* url node pointer             */
typedef struct rnode *RNODEPTR;            /* referrer node                */
typedef struct anode *ANODEPTR;            /* user agent node pointer      */
typedef struct snode *SNODEPTR;            /* Search string node pointer   */
typedef struct inode *INODEPTR;            /* user (ident) node pointer    */
#ifdef USE_DNS
typedef struct dnode *DNODEPTR;            /* DNS hash table node struct   */
#endif

/* Object flags */
#define OBJ_REG  0                         /* Regular object               */
#define OBJ_HIDE 1                         /* Hidden object                */
#define OBJ_GRP  2                         /* Grouped object               */

#ifdef USE_DNS
struct dnode {  char *string;              /* DNS node hash table struct   */
              struct in_addr  addr;
              struct dnode    *llist;
              struct dnode    *next; };
#endif

struct hnode {  char *string;              /* host hash table structure    */
                 int flag;
              u_long count;
              u_long files;
              u_long visit;                /* visit information            */
              u_long tstamp;
                char *lasturl;
              double xfer;
              struct hnode *next; };

struct unode {  char *string;              /* url hash table structure     */
                 int flag;                 /* Object type (REG, HIDE, GRP) */
              u_long count;                /* requests counter             */
              u_long files;                /* files counter                */
              u_long entry;                /* entry page counter           */
              u_long exit;                 /* exit page counter            */
              double xfer;                 /* xfer size in bytes           */
              struct unode *next; };       /* pointer to next node         */

struct rnode {  char *string;              /* referrer hash table struct   */
                 int flag;
              u_long count;
              struct rnode *next; };

struct anode {  char *string;
                 int flag;
              u_long count;
              struct anode *next; };

struct snode {  char *string;                 /* search string struct      */
              u_long count;
              struct snode *next; };

struct inode {  char *string;                 /* host hash table struct    */
                 int flag;
              u_long count;
              u_long files;
              u_long visit;
              u_long tstamp;
              double xfer;
              struct inode *next; };

extern HNODEPTR sm_htab[MAXHASH];             /* hash tables               */
extern HNODEPTR sd_htab[MAXHASH];
extern UNODEPTR um_htab[MAXHASH];             /* for hits, sites,          */
extern RNODEPTR rm_htab[MAXHASH];             /* referrers and agents...   */
extern ANODEPTR am_htab[MAXHASH];
extern SNODEPTR sr_htab[MAXHASH];             /* search string table       */
extern INODEPTR im_htab[MAXHASH];             /* ident table (username)    */
#ifdef USE_DNS
extern DNODEPTR host_table[MAXHASH];          /* DNS resolver table        */
#endif

extern int    put_hnode(char *, int, u_long, u_long, double, u_long *,
                        u_long, u_long, char *, HNODEPTR *);
extern int    put_unode(char *, int, u_long, double, u_long *,
                        u_long, u_long, UNODEPTR *);
extern int    put_inode(char *, int, u_long, u_long, double, u_long *,
                        u_long, u_long, INODEPTR *);
extern int    put_rnode(char *, int, u_long, u_long *, RNODEPTR *);
extern int    put_anode(char *, int, u_long, u_long *, ANODEPTR *);
extern int    put_snode(char *, u_long, SNODEPTR *);

#ifdef USE_DNS
extern int    put_dnode(char *, struct in_addr *, DNODEPTR *);
extern void   del_dlist(DNODEPTR *);
#endif

extern void   del_htabs();                    /* delete hash tables        */
extern void   del_hlist(HNODEPTR *);          /* delete host htab          */
extern void   del_ulist(UNODEPTR *);          /* delete url htab           */
extern void   del_rlist(RNODEPTR *);          /* delete referrer htab      */
extern void   del_alist(ANODEPTR *);          /* delete host htab          */
extern void   del_slist(SNODEPTR *);          /* delete host htab          */
extern void   del_ilist(INODEPTR *);          /* delete host htab          */

extern void   month_update_exit(u_long);
extern u_long tot_visit(HNODEPTR *);
extern char   *find_url(char *);

#endif  /* _HASHTAB_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.0239 ]--