4

I've just found these accesses in my web server log files:

::ffff:218.38.136.38 109.72.95.175 - [10/Jan/2011:02:54:12 +0100] "GET /user/soapCaller.bs HTTP/1.1" 404 345 "-" "Morfeus Fucking Scanner"
::ffff:218.38.136.38 109.72.95.174 - [10/Jan/2011:02:54:12 +0100] "GET /user/soapCaller.bs HTTP/1.1" 404 345 "-" "Morfeus Fucking Scanner"

Should I start to worry ? Or is it just a normal attempt to hack my server ? thanks

Jeff Atwood
  • 13,104
  • 20
  • 75
  • 92
aneuryzm
  • 1,714
  • 5
  • 26
  • 41

2 Answers2

8

It's a scanner looking for vulnerabilities in PHP based websites(reference). Script kiddies use these types of things to scan many many websites. You're not necessarily being singled out.

If you're not running PHP, you have nothing to worry about. If you are, I sure hope you're using secure code.

Jason Berg
  • 19,084
  • 6
  • 40
  • 55
  • can you expand on what this scanner actually does? We seem to have been penetrated by it and I need to find out what to do next. We're sending out a lot of spam at present.... – Mazatec Jun 20 '11 at 07:28
3

It's looking for vulnerabilities, and you can deny it access this way in your config:

$HTTP["useragent"] =~ "^Morfeus" { url.access-deny = ( "" ) }
peterg22
  • 79
  • 2