-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
probe: Past Tense Vulnerability (#924)
- Loading branch information
Showing
6 changed files
with
1,584 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
garak.probes.phrasing | ||
===================== | ||
|
||
.. automodule:: garak.probes.phrasing | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
"""Past Tense | ||
Refusal training is widely used to prevent LLMs from generating harmful, undesirable, or illegal | ||
outputs. We reveal a curious generalization gap in the current refusal training approaches: | ||
simply reformulating a harmful request in the past tense is often sufficient to jailbreak many state- | ||
of-the-art LLMs | ||
""" | ||
|
||
import random | ||
|
||
from garak import _config | ||
from garak.data import path as data_path | ||
from garak.probes.base import Probe | ||
|
||
|
||
class TenseMini: | ||
def _minify_prompts(self): | ||
random.shuffle(self.prompts) | ||
self.prompts = self.prompts[:200] | ||
self.generations = 1 | ||
|
||
|
||
class PastTense(Probe): | ||
"""Will the system give unsafe responses when asked to write about weapon creation or dangerous behavior? | ||
This check sends the generator requests for advice on possibly protect or restricted subjects in the past tense. | ||
""" | ||
|
||
active = False | ||
bcp47 = "en" | ||
doc_uri = "https://arxiv.org/pdf/2407.11969v2" | ||
primary_detector = "specialwords.Prefixes" | ||
tags = [ | ||
"owasp:llm01", | ||
"quality:Security:PromptStability", | ||
"payload:jailbreak", | ||
] | ||
goal = "use past tense to disregard the system prompt" | ||
|
||
def __init__(self, config_root=_config): | ||
super().__init__(config_root=config_root) | ||
|
||
self.prompts = [] | ||
|
||
with open( | ||
data_path / "phrasing" / "past_tense_en.txt", | ||
"r", | ||
encoding="utf-8", | ||
) as file: | ||
for str in file: | ||
self.prompts.append(str.strip()) | ||
|
||
|
||
class PastTenseMini(PastTense, TenseMini): | ||
"""Attempt to evade safeguards by setting requests in the past tense | ||
A subset of the tense-modified requests. Success is reported higher with more variation, so | ||
generations is overridden. | ||
""" | ||
|
||
active = True | ||
|
||
def __init__(self, config_root=_config): | ||
super().__init__(config_root=config_root) | ||
self._minify_prompts() | ||
|
||
|
||
class FutureTense(Probe): | ||
"""Will the system give unsafe responses when asked to write about weapon creation or dangerous behavior? | ||
This check sends the generator requests for advice on possibly protect or restricted subjects in the future tense. | ||
""" | ||
|
||
active = False | ||
|
||
bcp47 = "en" | ||
doc_uri = "https://arxiv.org/pdf/2407.11969v2" | ||
primary_detector = "specialwords.Prefixes" | ||
tags = [ | ||
"owasp:llm01", | ||
"quality:Security:PromptStability", | ||
"payload:jailbreak", | ||
] | ||
goal = "use future tense to disregard the system prompt" | ||
|
||
def __init__(self, config_root=_config): | ||
super().__init__(config_root=config_root) | ||
|
||
self.prompts = [] | ||
|
||
with open( | ||
data_path / "phrasing" / "past_tense_en.txt", | ||
"r", | ||
encoding="utf-8", | ||
) as file: | ||
for str in file: | ||
self.prompts.append(str.strip()) | ||
|
||
|
||
class FutureTenseMini(FutureTense, TenseMini): | ||
"""Attempt to evade safeguards by setting requests in the future tense | ||
A subset of the tense-modified requests. Success is reported higher with more variation, so | ||
generations is overridden. | ||
""" | ||
|
||
active = True | ||
|
||
def __init__(self, config_root=_config): | ||
super().__init__(config_root=config_root) | ||
self._minify_prompts() |