!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/include/net/   drwxr-xr-x
Free 318.35 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:     flow.h (1.56 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 *
 *    Flow based forwarding rules (usage: firewalling, etc)
 *
 */

#ifndef _NET_FLOW_H
#define _NET_FLOW_H

struct flowi {
    int    proto;        /*    {TCP, UDP, ICMP}    */

    union {
        struct {
            __u32            daddr;
            __u32            saddr;
        } ip4_u;
        
        struct {
            struct in6_addr *    daddr;
            struct in6_addr *    saddr;
            __u32            flowlabel;
        } ip6_u;
    } nl_u;
#define fl6_dst        nl_u.ip6_u.daddr
#define fl6_src        nl_u.ip6_u.saddr
#define fl6_flowlabel    nl_u.ip6_u.flowlabel
#define fl4_dst        nl_u.ip4_u.daddr
#define fl4_src        nl_u.ip4_u.saddr

    int    oif;

    union {
        struct {
            __u16    sport;
            __u16    dport;
        } ports;

        struct {
            __u8    type;
            __u8    code;
        } icmpt;

        unsigned long    data;
    } uli_u;
};

#define FLOWR_NODECISION    0    /* rule not appliable to flow    */
#define FLOWR_SELECT        1    /* flow must follow this rule    */
#define FLOWR_CLEAR        2    /* priority level clears flow    */
#define FLOWR_ERROR        3

struct fl_acc_args {
    int    type;


#define FL_ARG_FORWARD    1
#define FL_ARG_ORIGIN    2

    union {
        struct sk_buff        *skb;
        struct {
            struct sock    *sk;
            struct flowi    *flow;
        } fl_o;
    } fl_u;
};


struct pkt_filter {
    atomic_t        refcnt;
    unsigned int        offset;
    __u32            value;
    __u32            mask;
    struct pkt_filter    *next;
};

#define FLR_INPUT        1
#define FLR_OUTPUT        2

struct flow_filter {
    int                type;
    union {
        struct pkt_filter    *filter;
        struct sock        *sk;
    } u;
};

struct flow_rule {
    struct flow_rule_ops        *ops;
    unsigned char            private[0];
};

struct flow_rule_ops {
    int            (*accept)(struct rt6_info *rt,
                      struct rt6_info *rule,
                      struct fl_acc_args *args,
                      struct rt6_info **nrt);
};

#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.0105 ]--