Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Somebody wrote a messages on tomcat Console

Tags:

tomcat7

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

like image 870
user2023141 Avatar asked Apr 30 '13 13:04

user2023141


2 Answers

This is produced by a example jsp (webapps/examples/jsp/foo.jsp) with the following lines:

<eg:log>
Did you see me on the stderr window?
</eg:log>
like image 113
IsNull Avatar answered Jan 01 '23 12:01

IsNull


It looks that is a standard Tomcat output message.

like image 34
eidsonator Avatar answered Jan 01 '23 12:01

eidsonator