!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/net/khttpd/   drwxr-xr-x
Free 318.34 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:     structure.h (1.81 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef _INCLUDE_GUARD_STRUCTURE_H_
#define _INCLUDE_GUARD_STRUCTURE_H_

#include <linux/time.h>
#include <linux/wait.h>


struct http_request;

struct http_request
{
    /* Linked list */
    struct http_request *Next;
    
    /* Network and File data */
    struct socket    *sock;        
    struct file    *filp;        

    /* Raw data about the file */
    
    int        FileLength;    /* File length in bytes */
    int        Time;        /* mtime of the file, unix format */
    int        BytesSent;    /* The number of bytes already sent */
    int        IsForUserspace;    /* 1 means let Userspace handle this one */
    
    /* Wait queue */
    
    wait_queue_t sleep;        /* For putting in the socket's waitqueue */
    
    /* HTTP request information */
    char        FileName[256];    /* The requested filename */
    int        FileNameLength; /* The length of the string representing the filename */
    char        Agent[128];    /* The agent-string of the remote browser */
    char        IMS[128];    /* If-modified-since time, rfc string format */
    char        Host[128];    /* Value given by the Host: header */
    int        HTTPVER;        /* HTTP-version; 9 for 0.9,   10 for 1.0 and above */


    /* Derived date from the above fields */    
    int        IMS_Time;    /* if-modified-since time, unix format */
    char        TimeS[64];    /* File mtime, rfc string representation */
    char        LengthS[14];    /* File length, string representation */
    char        *MimeType;    /* Pointer to a string with the mime-type 
                       based on the filename */
    __kernel_size_t    MimeLength;    /* The length of this string */
    
};



/*

struct khttpd_threadinfo represents the four queues that 1 thread has to deal with.
It is padded to occupy 1 (Intel) cache-line, to avoid "cacheline-pingpong".

*/
struct khttpd_threadinfo
{
    struct http_request* WaitForHeaderQueue;
    struct http_request* DataSendingQueue;
    struct http_request* LoggingQueue;
    struct http_request* UserspaceQueue;
    char  dummy[16];  /* Padding for cache-lines */
};



#endif

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