Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

phishing_group.conf 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. max_score = 10.0;
  18. symbols = {
  19. "PHISHING" {
  20. weight = 4.0;
  21. description = "Phished URL";
  22. one_shot = true;
  23. }
  24. "PHISHED_OPENPHISH" {
  25. weight = 7.0;
  26. description = "Phished URL found in openphish.com";
  27. }
  28. "PHISHED_PHISHTANK" {
  29. weight = 7.0;
  30. description = "Phished URL found in phishtank.com";
  31. }
  32. HACKED_WP_PHISHING {
  33. weight = 4.5;
  34. description = "Phishing message from hacked wordpress";
  35. }
  36. }