Tagged Questions

Please refert to apache for more details. Resources: modules.apache.org Website List of Apache modules Wikipedia page.

learn more… | top users | synonyms

9
votes
2answers
494 views

HTTP requests and Apache modules: Creative attack vectors

Slightly unorthodox question here: I'm currently trying to break an Apache with a handful of custom modules. What spawned the testing is that Apache internally forwards requests that it considers ...
3
votes
3answers
267 views

web application firewall development

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 ...
3
votes
1answer
2k views

XSendFile won't serve the files in Apache 2.2

I'm using mod_xsendfile (v0.12) from https://tn123.org/mod_xsendfile/ to serve static files where Django is controlling access to the files based on users and permissions. In my conf file, I have: ...
3
votes
1answer
921 views

What does mod_auth_passthrough do?

What does apache module mod_auth_passthrough is for exactly? It seems to be shipped with CPanel and sometimes is active. What exactly is it for and what does it do?
2
votes
2answers
94 views

is there a simpler way to let apache/mod_wsgi restart automatically when py files changed?

I have a django site running in apache/mod_wsgi. Every time after updating the code I need restart apache manually. mod_wsgi provide a method to do it: ...
2
votes
1answer
145 views

Global variables in Apache Server

I'm writing some apache (2.2) modules in C and I'm pretty new at it, so I was wondering: I need to know if it's possible to create a global variable that will be initiated whenever the apache server ...
2
votes
1answer
119 views

interprocess communication in webobjects (jvm, wotaskd, apache module)

I am using the Java edition of Apple Webobjects and was wondering how it all works under the hood. For an app to run successfully it would appear that one needs the java WebObjects Application running ...
1
vote
1answer
212 views

What is proper use of Apache method apr_pool_create_ex in Delphi XE?

What is proper use of Apache method apr_pool_create_ex in Delphi XE? I’ve created Apache modules before, but all were Handlers. Now I’m working on developing a Service provider. A skeleton module has ...
1
vote
1answer
191 views

How to avoid WSRegister* on a Free Pascal .dll/.so

I finally had success compiling a "blank" Apache module, but now I've hit a rather annoying snag. I want to communicate with a MongoDB server and I opted for the only lib around for ...
1
vote
2answers
132 views

Problem compiling a WebLaz project under Lazarus

My specs: OS: Ubuntu 10.04 LTS amd64 fpc: 2.4.0 lazarus: 0.9.28 I'm trying to compile a WebLaz project just by creating one and then compiling. Somehow the compiler gets all lost when determinig ...
1
vote
1answer
84 views

How can I compile a Lazarus Apache module to Apache 1.3, 2.0 and 2.2 selectively?

I've had a look at /etc/fpc.cfg and there is mention to some defines: FPCAPACHE_1_3 FPCAPACHE_2_0 Then in the fcl-web examples there is mention to: Apache1_3 The only one I've found is on the ...
0
votes
0answers
10 views

access Apache Configuration from Apache Module

I am developing an Apache 2.x module with I/O filters. I need to access to Apache configuration from httpd.conf from my module filters code. I have "The Apache Modules Book, Application Development ...
0
votes
0answers
19 views

apache Module C++ leading compilation error

I am using the code given in http://zach.chambana.net/apache-cplusplus/ It also have a Makefile . I changed one line in makefile from APXS=apxs to APXS=apxs2 as I am using apache2. and I am getting ...
0
votes
0answers
56 views

Install apache module X-Sendfile on MAMP

How can I install X-Sendfile apache module so that MAMP can use it? I have followed these instructions to install X-Sendfile, but it didn't work (it seems like it just installed it for the default ...
0
votes
0answers
17 views

External function call Apache Webserver Modules

I am working on Apache Webserver Modules, implementing a hook after mod_alias. I intend to create a custom module call mod_cust, which will do some processing to lookup the file path and security ...
0
votes
0answers
28 views

apache module run gcov error

I wrote a apache module hook the post_config(function svpn_post_config below) and translate procudure(function svpn_trans_url below).It works fine! But when I run the module with gcov to do the unit ...
0
votes
2answers
24 views

API to access referrer field in Apache Module

I cannot find it in the request_rec* structure? Is there a way by which I can access it in the Apache Module? Thanks!
0
votes
0answers
112 views

Apache mod_evasive issues

I am using the mod_evasive apache module for my website and it seems to work just fine. Since you can specify in the config to run an external command when a rule is triggered I have added something ...
0
votes
1answer
72 views

Configuring Apache Client timeout in apache module

I am writing an apache module and I am wondering how to handle the case where my ap_rwrite tries to write something back to the client and the client does not respond to it. Does the call to ap_rwrite ...
0
votes
0answers
31 views

apache module for logging full response

I'm writing apache2 module to log full response from server to client base on mod_dumpio. Usually the header is plain text, but the data is gzip compressed. How do I overcome this problem. Try looking ...
0
votes
1answer
166 views

getting apache to run python on a mac

So i have a new mac and i'm trying to get it to run apache with mod_python, mod_wsgi, and django. I have a test test.py that simply contains: #!/usr/bin/python print "Content-type: text/html" print ...
0
votes
0answers
90 views

Anyone know a good replacement for the mod_layout apache module?

I've been using the mod_layout module for my apache server for a very long time ... recently, however, it's not been working quite right. Rather than try to get the module fixed (I think the author ...
0
votes
1answer
47 views

Daily tasks in Apache Server

I'm writing some apache (2.2) modules in C and I'm pretty new at it, so I was wondering: I want to make a daily task. One that will read a file and insert it's data into a list. Is that possible? ...
0
votes
1answer
79 views

How to have an apache module and dependent shared library in Autoconf/Automake project

I'm developing a apache module and a shared library in the same Autoconf/Automake project. How my Makefile.am should be? Now it is: INCLUDES = -I$(top_srcdir) nobase_include_HEADERS = \ foo.h \ ...
0
votes
0answers
108 views

Apache header based authentication module

All, Is there an apache authentication module out there that can blindly trust a header? For instance if a reverse proxy were to put the user "mboorshtein" into an http header is there a module that ...
0
votes
1answer
55 views

who may get defined variable in library

I read this site and have a doubt with C. /* * Declare and populate the module's data structure. The * name of this structure ('tut1_module') is important - it * must match the name of the ...
0
votes
3answers
351 views

Compiling Apache web server with dynamic module support

I have just compiled Apache 2.2.17 on a fresh install of Ubuntu 10.04.2. It's a learning exercise to discover what actually goes on when you compile something rather than just using apt-get hence the ...
0
votes
0answers
101 views

Add modules to Apache2 in CentOS (mod_case_filter)

I have a CentOS5 box at Linode and am a bit of noob at setting everything up but have a website working fully and have had no real issues I couldn't sort out. Today I uploaded some new code for ...
0
votes
1answer
195 views

xsendfile on Amazon EC2 AMI

I'm trying to install xsendfile on Amazon's own Linux AMI using yum install mod_xsendfile but it can't find the package. Can anyone help with a solution please?
0
votes
1answer
27 views

How does Apache know the names of the handlers in each module?

I was reading the following: http://modules.apache.org/doc/API.html Please explain how Apache knows the name of the handler to call. The CGI Module has the following handlers: int ...
0
votes
1answer
73 views

Any luck with mod_libpq under Apache 2.2 and/or win32?

Has anyone had luck compiling mod_libpq for Apache 2? I know there were some fairly major changes so the source might have to be updated, but has it been done already by someone? Also, has it been ...
0
votes
2answers
153 views

Building mod_helloworld.lpr

Im trying to build the apache example of the mod_helloworld.lpr, C:\lazarus\components\fpweb\demo\helloworld\apache Lazarus 0.9.29 FPC Verion 2.4.3 SVN 27129 i386-win32 After Adding ...
0
votes
1answer
119 views

What apache modules are required?

How can I determine what add-ons to apache will be required for my php code? I have legacy php code that was setup a long time back (and we dont have the documentation on what was done at that time). ...