English 中文(简体)
指数.jsp injetty, not to redirect when dir 允许
原标题:index.jsp in Jetty failing to redirect when dirAllowed=false

我的任务是在位于杰特的 Java网络项目中纠正一份可列入名单的目录的脆弱性。 我这样做的办法是,在项目前端喷气式XML文档中添加以下内容,作为“带”的儿童;Call name=“addWebApplication”> 标签:

<Call name="addHandler">
  <Arg>
    <New class="org.mortbay.http.handler.ResourceHandler">
      <Set name="dirAllowed">false</Set>
    </New>
  </Arg>
</Call>

这种做法虽然有效,但产生了一种奇怪的副作用,部分分散了从项目基数URL(即进入www.com/setupPublicSoliferSearch.do)的回头,但只是将索引编的内容输入浏览器;进入www.com/random_junk, 仍然正确地转往单页。 The following is the content of index.jsp:

<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>

<logic:forward name=“redirectDefault”/>

SysAdmin证实,阿帕奇正在提出正确的杰蒂请求,这无疑是造成这一问题的上述十大马利法变化;删除了XML这一范围,使该项目能够像预期的那样重新定位。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签