5

I've an application deployed on Tomcat 7, and this morning I noticed two messages on Tomcat console:

  1. Did you see me on the stderr window?
  2. Did you see me on the browser window as well?

Somebody managed to write remotely these messages. Do I have to be worried ? did somebody hack my website ?

thanks,

Frank

4

3 に答える 3

5

これは、次の行を含むサンプル jsp (webapps/examples/jsp/foo.jsp) によって生成されます。

<eg:log>
Did you see me on the stderr window?
</eg:log>
于 2013-04-30T15:01:45.413 に答える
1

標準の Tomcat 出力メッセージのようです。

于 2013-04-30T13:57:57.930 に答える
1

tomcat を実行してlocalhost:8080/manager/htmlに移動すると、次の内容を含む/examplesというサイトがあります。

Apache Tomcat Examples
Servlets examples
JSP Examples
WebSocket Examples

JSPの例 では、カスタム タグの例に進むと、ブラウザに次のようにレンダリングされたページがポップアップ表示されます。

Radio stations that rock:
98.5
92.3
107.7 Did you see me on the browser window as well?

このソース コードは、コンソールに taglib プレフィックス「eg」を含むログを書き込んでいることを示しています。

<html>
<body>
<%@ taglib uri="http://tomcat.apache.org/example-taglib" prefix="eg"%>

Radio stations that rock:

<ul>
<eg:foo att1="98.5" att2="92.3" att3="107.7">
<li><%= member %></li>
</eg:foo>
</ul>

<eg:log>
Did you see me on the stderr window?
</eg:log>

<eg:log toBrowser="true">
Did you see me on the browser window as well?
</eg:log>

</body>
</html>
于 2018-06-01T13:31:31.867 に答える