Re: [Exim] Generic VBS script detection

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Jon Knight
Fecha:  
A: Nigel Metheringham
Cc: Exim
Asunto: Re: [Exim] Generic VBS script detection
On Thu, 4 May 2000, Nigel Metheringham wrote:
> if ($message_body matches "^\\s+name=[A-Za-z0-9_-.]+.[vV][bB][sS]" or


That caused my copies of Exim to barf so I changed it to:

if ($message_body matches "^\\s+name=.+.[vV][bB][sS]" or
    $message_body matches "^begin \\d\\d\\d .+\\.[vV][bB][sS]")
then
  freeze text "Message appears to contain a VBS attachment - might be a virus\n"
endif


That should do the trick for a while... ;-)

Tatty bye,

Jim'll