Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

phishing_group.conf 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. "PHISHED_GENERIC_SERVICE" {
  38. weight = 0.0;
  39. description = "Phished URL found in generic service";
  40. }
  41. HACKED_WP_PHISHING {
  42. weight = 4.5;
  43. description = "Phish message sent by hacked Wordpress instance";
  44. }
  45. REDIRECTOR_FALSE {
  46. weight = 0.0;
  47. description = "Phishing exclusion symbol for known redirectors";
  48. }
  49. URL_REDIRECTOR_NESTED {
  50. weight = 1.0;
  51. description = "URL redirector nested limit has been reached";
  52. one_shot = true;
  53. }
  54. PHISHED_WHITELISTED {
  55. weight = 0.0;
  56. description = "Phishing exclusion symbol for known exceptions";
  57. }
  58. }