|
|
|
@ -823,24 +823,24 @@ int phishingScan(message* m,const char* dir,cli_ctx* ctx,tag_arguments_t* hrefs) |
|
|
|
|
continue; |
|
|
|
|
/* break;*/ |
|
|
|
|
case CL_PHISH_HEX_URL: |
|
|
|
|
*ctx->virname="Phishing.Email.HexURL"; |
|
|
|
|
*ctx->virname="Phishing.Heuristics.Email.HexURL"; |
|
|
|
|
return found_possibly_unwanted(ctx); |
|
|
|
|
/* break;*/ |
|
|
|
|
case CL_PHISH_NUMERIC_IP: |
|
|
|
|
*ctx->virname="Phishing.Email.Cloaked.NumericIP"; |
|
|
|
|
*ctx->virname="Phishing.Heuristics.Email.Cloaked.NumericIP"; |
|
|
|
|
return found_possibly_unwanted(ctx); |
|
|
|
|
case CL_PHISH_CLOAKED_NULL: |
|
|
|
|
*ctx->virname="Phishing.Email.Cloaked.Null";/*http://www.real.com%01%00@www.evil.com*/ |
|
|
|
|
*ctx->virname="Phishing.Heuristics.Email.Cloaked.Null";/*http://www.real.com%01%00@www.evil.com*/ |
|
|
|
|
return found_possibly_unwanted(ctx); |
|
|
|
|
case CL_PHISH_SSL_SPOOF: |
|
|
|
|
*ctx->virname="Phishing.Email.SSL-Spoof"; |
|
|
|
|
*ctx->virname="Phishing.Heuristics.Email.SSL-Spoof"; |
|
|
|
|
return found_possibly_unwanted(ctx); |
|
|
|
|
case CL_PHISH_CLOAKED_UIU: |
|
|
|
|
*ctx->virname="Phishing.Email.Cloaked.Username";/*http://www.ebay.com@www.evil.com*/ |
|
|
|
|
*ctx->virname="Phishing.Heuristics.Email.Cloaked.Username";/*http://www.ebay.com@www.evil.com*/ |
|
|
|
|
return found_possibly_unwanted(ctx); |
|
|
|
|
case CL_PHISH_NOMATCH: |
|
|
|
|
default: |
|
|
|
|
*ctx->virname="Phishing.Email"; |
|
|
|
|
*ctx->virname="Phishing.Heuristics.Email.SpoofedDomain"; |
|
|
|
|
return found_possibly_unwanted(ctx); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|