diff options
author | d3v11 <d3v11@d3v11.ano> | 2011-10-14 18:19:47 -0500 |
---|---|---|
committer | d3v11 <d3v11@d3v11.ano> | 2011-10-14 18:19:47 -0500 |
commit | ba092261fef553fb6f4bc27e0f3179948134f8ef (patch) | |
tree | fdb424862351b41b6d40dd7ce2e9d9e38acb9620 | |
parent | 93e8c0914d35aee41cb35998d2a33290653e2675 (diff) | |
download | resdb-ba092261fef553fb6f4bc27e0f3179948134f8ef.tar.gz resdb-ba092261fef553fb6f4bc27e0f3179948134f8ef.zip |
improved splice3's code. see contrib/splice3/CHANGES
-rw-r--r-- | contrib/splice3/CHANGES | 7 | ||||
-rw-r--r-- | contrib/splice3/LINUX/manual | 22 | ||||
-rwxr-xr-x | contrib/splice3/LINUX/splice3.py | 1 |
3 files changed, 30 insertions, 0 deletions
diff --git a/contrib/splice3/CHANGES b/contrib/splice3/CHANGES index dff9d7d..f103df4 100644 --- a/contrib/splice3/CHANGES +++ b/contrib/splice3/CHANGES @@ -81,3 +81,10 @@ CHANGES: splice3 will now give an error and quit if a compiled wordlist returns null. + + Fri Oct 14 2011 + d3v11 updated manual for splice3 + + splice3's --se-create is now much + faster and much more efficient + with memory. 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: |