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: 21 Dec 2006 21:18:53 -0000
From: majororacle@...il.com
To: bugtraq@...urityfocus.com
Subject: Re: Oracle Portal 10g HTTP Response Splitting

This also occurs in Portal 9.0.2 in the file calendar.jsp, calendarDialog.jsp, and fred.jsp, all of which are under the $ORACLE_HOME/j2ee directory in various locations.  The offending code is 
  String enc = request.getParameter("enc");
  if ((enc == null) || "".equals(enc))
    response.setContentType("text/html");
  else
   response.setContentType("text/html;charset=" + enc);

which can be commented out as follows:

//  String enc = request.getParameter("enc");
//  if ((enc == null) || "".equals(enc))
    response.setContentType("text/html");
//  else
//    response.setContentType("text/html;charset=" + enc);

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ