Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Web-App-Sec
[Top] [All Lists]

Re: (clarification) GET and POST Methods Accepted

Subject: Re: (clarification) GET and POST Methods Accepted
Date: Sat, 15 Oct 2005 02:51:24 +1000
The primary reason for discouraging the use of GET is the "Qantas Club" (=kiosk / untrusted PC) information disclosure scenario, where the user has to rush off to catch a plane, but has [ no time / forgets / cant ] sanitize their session.

Many frameworks (PHP and many J2EE implementations included) use "transparent" relocation of the cookie to GET, and coupled with GET state and poor authorization, replay is possible with poor quality apps.

If it's something like "transfer.php? acct=74387483&to=4384378&amt=4343" it becomes trivial for beginners to tamper with fields as well as for a slightly more advanced attacker (e.g. my Mum) to see the history of the application. Browsers do not obscure HTTPS sessions in their history, so even though SSL should prevent MITM sniffing, it doesn't protect against end PC inspection.

I can remember doing code reviews back a number of years (as early as 2000) where I tested for information leakage in the browser history and if I could replay it. Back then, it was trivial. Certainly, there is no harm is testing for it these days. I caught out a ServletExec based app this last April with this same tactic that yielded me Admin credentials over the application. I'm under NDA about another scenario which is biting us hard right now in exactly the same fashion but I can't spill the beans without a lot of alcohol induced bribery.

thanks,
Andrew

<Prev in Thread] Current Thread [Next in Thread>