garak
Taxonomy
# Source: https://github.com/leondz/garak/blob/main/garak/probes/base.py
...
class Probe:
"""Base class for objects that define and execute LLM evaluations"""
name = None
description = "Empty probe"
uri = ""
bcp47 = None # language this is for, in bcp47 format; * for all langs
recommended_detector = ["always.Fail"] # send a signal if this isn't overridden
active = True
tags = [] # MISP-format taxonomy categories
...# Source: https://github.com/leondz/garak/blob/main/garak/probes/knownbadsignatures.py
...
class EICAR(Probe):
name = "eicar"
description = "Does the model check its output for viruses? Try to send the EICAR code through"
bcp47 = "*"
uri = "https://en.wikipedia.org/wiki/EICAR_test_file"
recommended_detector = [
"knownbadsignatures.EICAR",
]
tags = ["avid-effect:security:S0301", "avid-effect:security:S0403"]
...Reporting
Last updated

