Apache Flaw Allows Internal Network Access
angry tapir writes "A yet-to-be-patched flaw discovered in the Apache HTTP server allows attackers to access protected resources on the internal network if some rewrite rules are not defined properly. The vulnerability affects Apache installations that operate in reverse proxy mode, a type of configuration used for load balancing, caching and other operations that involve the distribution of resources over multiple servers."
it allowed me to get frist post
Improper regex usage causes intended consequences, news at 11.
Why would anyone use Apache as a reverse proxy anyway?
I mean, there's nginx, and it runs circles around Apache as far as I know.
Pretty stupid thing to say. Garbage in should never mean "protected resources out".
If you set the root password to 'password' and allow root login via ssh, attackers could compromise your system.
SQL programmer goes to a bar. Walks up to two tables and says 'Excuse me, may I join you?'.
This is a fairly minor vulnerability at best, in order for it to matter to you at all:
1, you have to be using reverse proxy mode
2, you have to have misconfigured your rewrite rules
3, you have to actually have some internal resources that are private
The webservers I run, aside from not using Apache in reverse proxy mode...
Some of them are in isolated dmz networks, so the only data you could get at is part of the public website anyway...
The others are standalone webservers connected direct to the internet, a reverse proxy wouldn't get you anything you couldn't get to directly.
What percentage of apache users will actually fulfil all the criteria for this issue to even matter to them at all?
http://spamdecoy.net - free throwaway anonymous email - avoid spam!
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-3368
Let me get this straight... IF you run Apache as a reverse proxy AND you misconfigure your mod_rewrite rules, then people can unintentionally access internal resources? I'm SHOCKED! SHOCKED, I tell you!
That being said, I did RTFM and it's kind of a cute attack. It probably should be patched to protect people from shooting themselves in the foot, but I'm not sure I'd actually call it a vulnerability...
Garbage out. What else is new?
GI/GO is bullshit, you should never output garbage no matter how fucked up the input is. If you can't process it normally, you kick out an error condition of some sort you don't just throw up your hands and say "Oh well, the user entered the wrong password so we'll just have to give him access to everything".
Pretty stupid thing to say. If the person who inputs the garbage is the admin (which is the case here, since only an admin can create rewrite rules) then it's not surprising that security might be compromised. There's no way you can make software safe from incompetent people with admin privileges.