2

我们使用自动安全探测,它揭示了一个漏洞,导致 500 响应返回默认错误。JRun返回错误的信息泄露被认为是漏洞。这个 500 错误发生在 JRun 中的 CF 上方,CF 无法处理。

这是导致内部 JRun 错误的测试代码片段:

<cfhttp url="https://www.domain.com/FormController.cfc" method="post" result="r"><cfhttpparam type="header" name="Accept" value="text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5" />
<cfhttpparam type="header" name="Accept-Charset" value="ISO-8859-1,utf-8;q=0.7,*;q=0.7" />
<cfhttpparam type="header" name="Accept-Encoding" value="gzip;q=1.0, x-gzip;q=0.9, x-bzip2;q=0.9, deflate;q=0.8, identity;q=0.5, base64;q=0.1, quoted-printable;q=0.1, compress;q=0, *;q=0" />
<cfhttpparam type="header" name="Accept-Language" value="en-us,en;q=0.5" />
<cfhttpparam type="header" name="User-Agent" value="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:13.0) Gecko/20100101 Firefox/13.0.1 WhiteHat Security" />
<cfhttpparam type="header" name="Content-Length" value="158" />
<cfhttpparam type="header" name="Content-Type" value="application/x-www-form-urlencoded" />
<cfhttpparam type="body" value="Method=%u002e%u002e%u2216%u002e%u002e%u2216%u002e%u002e%u2216%u002e%u002e%u2216%u002e%u002e%u2216%u002e%u002e%u2216%u002e%u002e%u2216%u002e%u002e%u2216%u002e%u002e%u2216%u002e%u002e%u2216boot%u002eini%00">
</cfhttp>

<cfdump var="#r#">
<cfoutput>#r.filecontent#</cfoutput>

我使用了此处提供的信息: 在 ColdFusion 中处理 500 JRun servlet 以将自定义处理程序添加到 JRun 中,以处理 500 错误,如下所示:

<error-page>
  <error-code>500</error-code>
  <location>/WEB-INF/error-pages/500error.jsp</location>
</error-page>

500error.jsp 文件只输出一些基本信息,例如“Opps 发生错误...”以及状态代码和消息,但不输出堆栈跟踪。

这在我使用 CF9 Developer 版本的 MBP 上开发时效果很好。当我昨晚将它投入生产时(在 CF9 标准/Win2k 服务器上),我希望它能够正常工作。当我再次使用请求运行测试片段时,它没有返回自定义错误,而是返回了标准错误 servlet 错误。我仔细检查了路径,并认为jsp中可能有错误。我将其更改为纯 html,仍然是默认错误。

出于纯粹的随机性,我尝试了http://www.domain.com/error-pages/500error.jsp。除了 404 之外,我没有任何事情会发生,但我实际上得到了这个:

500

A License exception has occurred: You tried to access a restricted feature for the Standard edition: JSP


coldfusion.license.LicenseManager$LicenseIllegalAccessException: A License exception has occurred: You tried to access a restricted feature for the Standard edition: JSP
    at coldfusion.license.LicenseManager.byte(Unknown Source)
    at coldfusion.license.LicenseManager.checkJSP(Unknown Source)
    at coldfusion.license.JspLicenseServlet.service(Unknown Source)
    at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
    at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

那么,jsp似乎不是标准版的功能?所以我然后尝试将 500error.jsp 更改为 500error.html。更改文件名,使其成为静态 html,更新 web.xml,重新启动,现在我在 POST 和点击http://www.domain.com/error-pages/500error 时收到 403 Forbidden。 .html _

所以我不确定发生了什么。标准版是否不允许像这样在 JRun 级别进行自定义处理?它适用于开发人员版,因为它基本上不受限制?在文档中找不到答案。除了 JRun 解决方案之外,还有其他方法可以处理这 500 个问题吗?

谢谢

4

2 回答 2

1

在搜索了 Adob​​e 文档和大量不知名的论坛帖子后,我发现 Standard Edition 实际上不支持 JSP,但 Developer 和 Enterprise 支持。所以这就回答了一个问题。

至于将错误处理程序从 jsp 更改为 html,我认为这也不可能。除非有我缺少的设置。除了 jsp 错误之外的任何内容都会导致403IIS 和 Apache 出现错误。

在 IIS 上,我检查了我创建的 /WEB-INF/error-pages 目录的所有权限,但找不到任何阻止访问的东西。我还尝试将 html 文件放入 /WEB-INF/ 根目录,但没有成功。所以在这一点上我倾向于放弃。我想这样一个不起眼的黑客尝试的 403 错误很好。

于 2014-02-04T01:24:39.903 回答
0

似乎错误处理与您的开发服务器和生产服务器不同。你能比较一下IIS设置下“错误页面”的设置吗?检查为 500 错误设置的内容,并检查错误响应的功能设置(左侧)。

希望有帮助。

于 2014-02-02T06:35:19.613 回答