GithubHelp home page GithubHelp logo

nfq_filter's Introduction

nfq_filter

Tool for HTTP packets filtering via nfqueue.

Requirements:

  • kernel nfqueue support
  • libnetfilter_queue >= 1.0.1
  • modern gcc compiler with C++11 support

Install

$ git clone https://github.com/ircop/nfq_filter.git
$ cd nfq_filter
$ mkdir build && cd build
$ cmake ../
$ make
$
$ cp nfq_filter /usr/local/bin/nfq_filter

Install with nfqueue < 1.0.1

Open file nfq.cpp and replace two lines:

--              size = nfq_get_payload(nfa, (unsigned char **)&full_packet);
--              len = nfq_get_payload(nfa, &data);
++              size = nfq_get_payload(nfa, (char **)&full_packet);
++              len = nfq_get_payload(nfa, (char **)&data);

Usage

  • Set iptables rule:

      iptables -t mangle -A PREROUTING -s x.x.x.x/y -p tcp -m tcp --dport 80 -j NFQUEUE --queue-num 0 --queue-bypass
    

    where x.x.x.x/y is source network (users) for http-requests filtering

  • Edit config file ( /etc/nfq/nfq_filter.cfg ), at least set queue to capture and redirect url.

  • Run program (or use init.d runscript in 'contrib' dir)

.

Donations are welcome ^)

Ya.money: 41001647090287

WMR: R963745229668

WMZ: Z774839394176

nfq_filter's People

Contributors

ircop avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.