lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date: Thu, 12 Jan 2006 17:30:06 +0100
From: "mailinglist mailinglist" <email-fulldisclosure@...mail.com>
To: alla@...nit.be, bugtraq@...urityfocus.com,
	full-disclosure@...ts.grok.org.uk
Subject: Re: Session data pollution vulnerabilities in web
	applications


Hi Alla Bezroutchko,

Good recommendations.

This is not new - my guess, it's old. I have noted a few scripts/examples 
vulnerable to this previously, and would guess that we are not alone to have 
seen it before. "Yet another bad way to code PHP / ASP / Whatever" (TM).

But I never noticed the subtle variant you describe (perhaps since I never 
looked for it!), but a much more general/stupid variant:

$var = $_GET["something"];
$_SESSION["$var"] = $var2;

Yes. People do really code like that. Noted that one in some example posted 
in some php forum.




Anyway, there are probably a quite a lot of scripts which are vulnerable to 
this issue if php.ini is misconfigured (register_globals = on).  Then we get 
the classic "if value not assigned, request parameter value will be 
injected" scenario which allready is known to enable several SQL Injections.

if (condition1) {
$var = 'SOMETHING';
}
if (condition2) {
$var = 'OTHER';
}
$_SESSION["$var"] = $var2;



Regards,
/someone

_________________________________________________________________
Hitta rätt på nätet med MSN Search http://search.msn.se/

_______________________________________________
Full-Disclosure - We believe in it.
Charter: http://lists.grok.org.uk/full-disclosure-charter.html
Hosted and sponsored by Secunia - http://secunia.com/


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ