thresholds.yaml 697 B

1234567891011121314151617181920212223242526272829303132333435
  1. bots:
  2. - name: simple-weight-adjust
  3. action: WEIGH
  4. user_agent_regex: Mozilla
  5. weight:
  6. adjust: 5
  7. thresholds:
  8. - name: minimal-suspicion
  9. expression: weight < 0
  10. action: ALLOW
  11. - name: mild-suspicion
  12. expression:
  13. all:
  14. - weight >= 0
  15. - weight < 10
  16. action: CHALLENGE
  17. challenge:
  18. algorithm: metarefresh
  19. difficulty: 1
  20. - name: moderate-suspicion
  21. expression:
  22. all:
  23. - weight >= 10
  24. - weight < 20
  25. action: CHALLENGE
  26. challenge:
  27. algorithm: fast
  28. difficulty: 2
  29. - name: extreme-suspicion
  30. expression: weight >= 20
  31. action: CHALLENGE
  32. challenge:
  33. algorithm: fast
  34. difficulty: 4