skip to Main Content

I run xampp and host DVWA on it. but didn’t log all of http request and post request.
how to change apache config file (httpd) to log full request?
thanks.
my apache config file is:
https://www.filemail.com/d/vvkrdbixuqiaujz

2

Answers


  1. Chosen as BEST ANSWER

    finally I fix it: according to this post first uncomment LoadModule dumpio_module modules/mod_dumpio.so and second added this lines to httpd.conf in xampp:

    <IfModule dumpio_module>
      DumpIOInput On
      DumpIOOutput On
      LogLevel warn dumpio:trace7
    </IfModule>
    

    and restart apache. now if search in error.log find text in post body.


  2. When you say full request I guess you mean body of requests here is the simplified guide

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search