The Hacker News
Researchers found Apache Server-Status Enabled on some popular site like php.net , cisco, nba.com, Cloudflare, Metacafe, Ford, yellow.com, and others.

For backgorund, there is a Module mod_status in Apache server which allows a server administrator to find out how well their server is performing. A HTML page is presented that gives the current server statistics in an easily readable form.
Cybersecurity
Basically, mod_status provides information on your apache server activity and performance. The main security risk of using this module is only Information disclosure which includes infomation such as Server uptime, Individual request-response statistics and CPU usage of the working processes, Current HTTP requests, client IP addresses, requested paths, processed virtual hosts. , that could give a potential attacker information about how to attack the web server.

Few popular brands showing their status online, discovered by Daniel Cid from Sucuri:
  • https://php.net/server-status/
  • https://cloudflare.com/server-status/ (Fixed now)
  • https://metacafe.com/server-status/
  • https://disney.go.com/server-status (Fixed now)
  • https://www.latimes.com/server-status/
  • https://www.staples.com/server-status/
  • https://tweetdeck.com/server-status/ (Fixed now)
  • https://www.nba.com/server-status/
  • https://www.ford.com/server-status/

Solution, Don't allow Apache Server mod_status Publicly Accessible and for that administrator need to just do few changes in the configuration file of apache (httpd.conf). Additionally it is recommended to comment out the section from Apache configuration file httpd.conf.

Found this article interesting? Follow us on Twitter and LinkedIn to read more exclusive content we post.