I have an assignment to develop a web application firewall. I have been researching for some source codes about that.My main source was ModSecurity.

Main question is that:

-Which framework or programming language I can use, to develop a web application firewall? Which one would be the most useful?

-Can I use Django & Python?

It would be a starting point for the project research.

link|improve this question
5  
What is a "web application firewall"? I know what a web application is, and a firewall, but the combination makes no sense. – Lennart Regebro Dec 20 '10 at 1:21
think about what you want to block / allow. that's what mainly a firewall does! – mauris Dec 20 '10 at 1:26
i also require codes for web application firewall. anyone find any link in google? – Novikov Dec 20 '10 at 1:31
No, I don't know @Novikov. I researched many resources but there wasn't a clear answer about it.There are many resources but it isn't explained clearly in which language I have to code it. – el nino Dec 20 '10 at 2:14
1  
@Lennart et al: There are a number of WAF vendors out there now -- Imperva, Barracuda, F5, etc. It's basically deep packet inspection on HTTP/HTTPS traffic to further identify legitimate vs. malicious traffic. A cross between a firewall and an IDS, but targeted at web threats. – Joe Dec 20 '10 at 2:37
show 1 more comment
feedback

3 Answers

up vote 2 down vote accepted

OK, so my guess was basically correct, although I thought it was protecting an app with no or bad security, but it's more about protecting against attacks. In that Case, Django is definitely wrong. It's clearly doable in Python, but don't expect to be able to handle 100.000 requests per second. :) But if it's research and development, I think Python can be a great choice, as it's fast to develop in, and with tools like Cython it can be quite fast to run as well. Should you then end up making a finished product that does need extreme performance, you can take the algorithms and translate them to C/C++.

I'd look into Twisted in your case. That may be the correct solution.


"It will be used on the server side to control the user transactions via HTTP."

Most web application frameworks have security settings. These are usually not called "firewalls", and you didn't answer my questions, so I'm going to guess here:

You are writing a web proxy that will act to filter out requests which do not have the correct permission because there is an application which does not have any access control at all. Is this correct?

Yes, you can do that in Python. Django is probably not the correct solution. If you need to implement access control with login pages and user management, then you probably want SQL and templating and a lightweight Python framework could be helpful. Otherwise Twisted or just doing it with the functionality in standard lib might be the correct solution.

link|improve this answer
And why the downvote? My guess wasn't that far off, and the answer is pretty much correct. – Lennart Regebro Dec 20 '10 at 2:51
I will try to explain it by the example of Mod Security. -It is an Apache module whose purpose is to tighten the web application security. -It can be used embedded in web server.It is an intrusion detection and prevention system. -Basically, it analyses the incoming requests and filters them. -It can be used against URL manipulation,back-end authentication, session hijacking, XSS attacks,SQL Injection,buffer overflow etc. -It has a method called "virtual patching" that controls the requests I guess. By the way; how I can develop it, in which language. I'm sorry but I didn't downgrade it. – el nino Dec 20 '10 at 3:02
I have just registered in SO.I don't have enough reputation to downgrade the answers.I think some others have done it. Sorry for that. – el nino Dec 20 '10 at 3:17
1  
goo.gl/HBD0Z I found a tutorial here to write a module for Apache server. It seems like I can code it in C. I want to ask that: "is it possible to code Apache modules in Python? Could it be efficient to use Python?" – el nino Dec 20 '10 at 3:36
1  
It is just an academic research development for now,after that I will look for Cython for better performance.And as you adviced; I will take a look at Twisted. Thank you very much. :) – el nino Dec 20 '10 at 4:06
show 2 more comments
feedback

Django is a web application framework. I don't see anyone writing a firewall implementation using it.

This link offers another opinion about Python for firewalls.

link|improve this answer
It is not a client side firewall application. It will be used on the server side to control the user transactions via HTTP. ModSecurity has a rule set called CRS(Core Rule Set).But I couldn't understand it exactly in which language they are written.Thank you for the link. – el nino Dec 20 '10 at 1:35
+1 for being a helpful answer on a diffuse question. – Lennart Regebro Dec 20 '10 at 2:52
I have just registered in SO.I don't have enough reputation to downgrade the answers.I think some others have done it. Sorry for that. – el nino Dec 20 '10 at 3:16
feedback

Unless this is just some kind of academic exercise and Python helps you get it done fast, I don't think a high level language like Python is the best choice for a firewall (I don't even know if it's possible honestly). If you're planning some sort of proxy/filter application, that might be fine, but Django isn't needed either way.

link|improve this answer
Can it be a module for Apache server? How can I code a module for Apache Server? – el nino Dec 20 '10 at 3:17
There is documentation on the apache website about how to make modules for Apache. I don't know if you can write them in Python. – Lennart Regebro Dec 20 '10 at 3:24
thank you for the answers.I have just found some useful documentation about it.It seems like; it is possible to write modules for Apache in Python. – el nino Dec 20 '10 at 3:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.