PrivacyJailbreak/easyjailbreak/mutation/rule/__init__.py
2025-05-15 14:10:22 +08:00

24 lines
No EOL
1.5 KiB
Python

from easyjailbreak.mutation.rule.Base64 import Base64
from easyjailbreak.mutation.rule.Base64_input_only import Base64_input_only
from easyjailbreak.mutation.rule.Base64_raw import Base64_raw
from easyjailbreak.mutation.rule.Disemvowel import Disemvowel
from easyjailbreak.mutation.rule.Leetspeak import Leetspeak
from easyjailbreak.mutation.rule.Rot13 import Rot13
from easyjailbreak.mutation.rule.Combination_1 import Combination_1
from easyjailbreak.mutation.rule.Combination_2 import Combination_2
from easyjailbreak.mutation.rule.Combination_3 import Combination_3
from easyjailbreak.mutation.rule.Auto_payload_splitting import Auto_payload_splitting
from easyjailbreak.mutation.rule.Auto_obfuscation import Auto_obfuscation
from easyjailbreak.mutation.rule.Crossover import CrossOver
from easyjailbreak.mutation.rule.MorseExpert import MorseExpert
from easyjailbreak.mutation.rule.CaserExpert import CaesarExpert
from easyjailbreak.mutation.rule.AsciiExpert import AsciiExpert
from easyjailbreak.mutation.rule.SelfDefineCipher import SelfDefineCipher
from easyjailbreak.mutation.rule.ReplaceWordsWithSynonyms import ReplaceWordsWithSynonyms
from easyjailbreak.mutation.rule.Translate import Translate
from easyjailbreak.mutation.rule.Artificial import Artificial
from easyjailbreak.mutation.rule.Inception import Inception
from easyjailbreak.mutation.rule.BinaryTree import BinaryTree
from easyjailbreak.mutation.rule.Reverse import Reverse
from easyjailbreak.mutation.rule.OddEven import OddEven
from easyjailbreak.mutation.rule.Length import Length