regex_and_entropy_config.toml 700 B

123456789101112131415
  1. # This config contains a single rule which defines a regex and a range of entropy values. If a rule has
  2. # both regex and entropy then that rule uses BOTH the regex and entropy in combination when performing an audit.
  3. # In other words, if a line of code has an entropy value that is within the range of the entropies defined and
  4. # a regex match is found then that line of code contains a leak.
  5. # So, for this example if a line of code has an entropy value of 4.6 AND matches the regex below then we got a leak.
  6. [[rules]]
  7. description = "entropy and regex"
  8. regex = '''(?i)key(.{0,20})?['|"][0-9a-zA-Z]{16,45}['|"]'''
  9. entropies = [
  10. "4.5-4.7",
  11. "5.5-6.3",
  12. ]
  13. tags = ["entropy"]