diff options
Diffstat (limited to 'contrib/splice3/LINUX')
-rw-r--r-- | contrib/splice3/LINUX/manual | 22 | ||||
-rwxr-xr-x | contrib/splice3/LINUX/splice3.py | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/contrib/splice3/LINUX/manual b/contrib/splice3/LINUX/manual index 649a224..877b9a0 100644 --- a/contrib/splice3/LINUX/manual +++ b/contrib/splice3/LINUX/manual @@ -702,6 +702,28 @@ This attack uses only numbers and special characters. .br This attack uses all characters. +--exh-custom +.br +This attack uses custom characters in a character list. IE: +.br +--exh-custom='CharList.txt' +.br +A character list should be in the following syntax: + +============= NOT ACTUAL LINE ON FILE =============== +.br +j +.br +1 +.br +@ +.br +0 +.br +z +.br +============= NOT ACTUAL LINE ON FILE =============== + .SH STDOUT diff --git a/contrib/splice3/LINUX/splice3.py b/contrib/splice3/LINUX/splice3.py index 5953f6c..d838149 100755 --- a/contrib/splice3/LINUX/splice3.py +++ b/contrib/splice3/LINUX/splice3.py @@ -1562,6 +1562,7 @@ def SOCEN(): ReadDictionary = open(dictionary, 'r') for line in ReadDictionary: socen_words.append(line.replace('\n', '')) + socen_words = list(set(socen_words)) for i in socen_words: for let in i: |