How to list all installed/activated Apache modules on a server
Sophia Terry
To (roughly) check for the CVE-2014-6271 vulnerability and to have better general insight.
I want to check if a server uses mod_cgi or mod_cgid modules
How do I list all installed / activated Apache modules on a running Ubuntu Apache HTTP server?
I can use this:
apache2ctl -lbut that shows only the compiled-in modules.
11 Answer
apache2ctl -Mwill do the job and it's equivalent with:
apache2ctl -t -D DUMP_MODULESYou can see also apache2ctl -h.