!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/802/   drwxr-xr-x
Free 318.35 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:     fc.c (2.41 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * NET3:    Fibre Channel device handling subroutines
 * 
 *        This program is free software; you can redistribute it and/or
 *        modify it under the terms of the GNU General Public License
 *        as published by the Free Software Foundation; either version
 *        2 of the License, or (at your option) any later version.
 *
 *        Vineet Abraham <vma@iol.unh.edu>
 *        v 1.0 03/22/99
 */

#include <linux/config.h>
#include <asm/uaccess.h>
#include <asm/system.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/inet.h>
#include <linux/netdevice.h>
#include <linux/fcdevice.h>
#include <linux/skbuff.h>
#include <linux/errno.h>
#include <linux/timer.h>
#include <linux/net.h>
#include <linux/proc_fs.h>
#include <linux/init.h>
#include <net/arp.h>

/*
 *    Put the headers on a Fibre Channel packet. 
 */
 
int fc_header(struct sk_buff *skb, struct net_device *dev, unsigned short type,
              void *daddr, void *saddr, unsigned len) 
{
    struct fch_hdr *fch;
    int hdr_len;

    /* 
     * Add the 802.2 SNAP header if IP as the IPv4 code calls  
     * dev->hard_header directly.
     */
    if (type == ETH_P_IP || type == ETH_P_ARP)
    {
        struct fcllc *fcllc=(struct fcllc *)(fch+1);

        hdr_len = sizeof(struct fch_hdr) + sizeof(struct fcllc);
        fch = (struct fch_hdr *)skb_push(skb, hdr_len);
        fcllc = (struct fcllc *)(fch+1);
        fcllc->dsap = fcllc->ssap = EXTENDED_SAP;
        fcllc->llc = UI_CMD;
        fcllc->protid[0] = fcllc->protid[1] = fcllc->protid[2] = 0x00;
        fcllc->ethertype = htons(type);
    }
    else
    {
        hdr_len = sizeof(struct fch_hdr);
        fch = (struct fch_hdr *)skb_push(skb, hdr_len);    
    }

    if(saddr)
        memcpy(fch->saddr,saddr,dev->addr_len);
    else
        memcpy(fch->saddr,dev->dev_addr,dev->addr_len);

    if(daddr) 
    {
        memcpy(fch->daddr,daddr,dev->addr_len);
        return(hdr_len);
    }
    return -hdr_len;
}
    
/*
 *    A neighbour discovery of some species (eg arp) has completed. We
 *    can now send the packet.
 */
 
int fc_rebuild_header(struct sk_buff *skb) 
{
    struct fch_hdr *fch=(struct fch_hdr *)skb->data;
    struct fcllc *fcllc=(struct fcllc *)(skb->data+sizeof(struct fch_hdr));
    if(fcllc->ethertype != htons(ETH_P_IP)) {
        printk("fc_rebuild_header: Don't know how to resolve type %04X addresses ?\n",(unsigned int)htons(fcllc->ethertype));
        return 0;
    }
#ifdef CONFIG_INET
    return arp_find(fch->daddr, skb);
#else
    return 0;
#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.0041 ]--