You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

phishing_group.conf 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Phishing rules scores
  2. #
  3. # Please don't modify this file as your changes might be overwritten with
  4. # the next update.
  5. #
  6. # You can modify '$LOCAL_CONFDIR/rspamd.conf.local.override' to redefine
  7. # parameters defined on the top level
  8. #
  9. # You can modify '$LOCAL_CONFDIR/rspamd.conf.local' to add
  10. # parameters defined on the top level
  11. #
  12. # For specific modules or configuration you can also modify
  13. # '$LOCAL_CONFDIR/local.d/file.conf' - to add your options or rewrite defaults
  14. # '$LOCAL_CONFDIR/override.d/file.conf' - to override the defaults
  15. #
  16. # See https://rspamd.com/doc/tutorials/writing_rules.html for details
  17. description = "Phishing in emails";
  18. max_score = 10.0;
  19. symbols = {
  20. "PHISHING" {
  21. weight = 4.0;
  22. description = "Phished URL";
  23. one_shot = true;
  24. }
  25. "PHISHED_EXCLUDED" {
  26. weight = 0.0;
  27. description = "Phished URL found in exclusions list";
  28. }
  29. "PHISHED_OPENPHISH" {
  30. weight = 7.0;
  31. description = "Phished URL found in openphish.com";
  32. }
  33. "PHISHED_PHISHTANK" {
  34. weight = 7.0;
  35. description = "Phished URL found in phishtank.com";
  36. }
  37. HACKED_WP_PHISHING {
  38. weight = 4.5;
  39. description = "Phish message sent by hacked Wordpress instance";
  40. }
  41. REDIRECTOR_FALSE {
  42. weight = 0.0;
  43. description = "Phishing exclusion symbol for known redirectors";
  44. }
  45. URL_REDIRECTOR_NESTED {
  46. weight = 1.0;
  47. description = "URL redirector nested limit has been reached";
  48. one_shot = true;
  49. }
  50. PHISHED_WHITELISTED {
  51. weight = 0.0;
  52. description = "Phishing exclusion symbol for known exceptions";
  53. }
  54. }