We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 143fa26 commit 583d278Copy full SHA for 583d278
ps_fuzz/attacks/base64_injection.py
@@ -13,13 +13,13 @@
13
logger = logging.getLogger(__name__)
14
15
@register_test
16
-class TestHarmfulBehaviors(TestBase):
+class TestBase64Injection(TestBase):
17
def __init__(self, client_config: ClientConfig, attack_config: AttackConfig):
18
super().__init__(
19
client_config,
20
attack_config,
21
- test_name = "harmful_behavior",
22
- test_description = "Challenges the LLM with a dataset of harmful behavior prompts dataset"
+ test_name = "base64 injection",
+ test_description = "Challenges the LLM with a dataset of prompt injections, encoded into base64"
23
)
24
25
def run(self) -> Generator[StatusUpdate, None, None]:
0 commit comments