# HG changeset patch # User d3v11 # Date 1318184190 18000 # Node ID 57f1b4308edd9ffbfa19f1c94bd9e66bdb0f7fc0 # Parent 365205ff768128273433f5123f49cef70f1181bc improved splice3 code - d3v11 diff -r 365205ff7681 -r 57f1b4308edd contrib/splice3/CHANGES --- a/contrib/splice3/CHANGES Sun Oct 09 00:59:56 2011 -0500 +++ b/contrib/splice3/CHANGES Sun Oct 09 13:16:30 2011 -0500 @@ -71,3 +71,13 @@ fixed setup-deb bug with dependency checks. + + Sun Oct 10 2011 + d3v11 updated --se-create to allow module + stacking. see --rtfm for details. + + Manual page updated. + + splice3 will now give an error and + quit if a compiled wordlist returns + null. diff -r 365205ff7681 -r 57f1b4308edd contrib/splice3/LINUX/manual --- a/contrib/splice3/LINUX/manual Sun Oct 09 00:59:56 2011 -0500 +++ b/contrib/splice3/LINUX/manual Sun Oct 09 13:16:30 2011 -0500 @@ -491,7 +491,18 @@ .br words from the selected dictionary and produce .br -WEP compatible hex passwords. +WEP compatible hex passwords. If your dictionary +.br +does not contain 5 or 13 character words then +.br +splice3 will likely give an error. + + +--se-create Social Engineering Module: +.br +see the social engineering section below for +.br +details. .SH CHARACTERS @@ -595,6 +606,23 @@ ... .SH +SOCIAL ENGINEERING + +--se-create Social Engineering Module: +.br +splice3 is equipped with a social engineering module to create +.br +concatenated words from the selected dictionary. This module +.br +allows for "Module Stacking". IE, if you select other other +.br +modules when setting this flag then compiled words will also +.br +be incorporated into the algorithm as if they appeared on the +.br +the selected dictionary itself. + +.SH DESHADOW splice3 comes with its own small program to compare a created hash diff -r 365205ff7681 -r 57f1b4308edd contrib/splice3/LINUX/splice3.py --- a/contrib/splice3/LINUX/splice3.py Sun Oct 09 00:59:56 2011 -0500 +++ b/contrib/splice3/LINUX/splice3.py Sun Oct 09 13:16:30 2011 -0500 @@ -1549,12 +1549,20 @@ def SOCEN(): + socen = [] + socen_a = [] + socen_words = [] + + try: + for i in Word: + socen_words.append(i.replace('\n', '')) + except: + pass + ReadDictionary = open(dictionary, 'r') for line in ReadDictionary: socen_words.append(line.replace('\n', '')) - socen = [] - socen_a = [] for i in socen_words: for let in i: try: @@ -1592,10 +1600,6 @@ Word.append(a + b + c) - -if SESwitch is True: - socen_words = [] - SOCEN() if RegularSwitch is True: REGULAR() if BWSwitch is True: @@ -1610,7 +1614,8 @@ WEP5() if wep13 is True: WEP13() - +if SESwitch is True: + SOCEN() DoMix = False if AlphaSwitch is True: @@ -1635,6 +1640,10 @@ User.append("") UserCount = 1 +if not Word: + print "splice3: error: compiled empty wordlist" + sys.exit(1) + Word = list(set(Word)) WordCount = 0 ShowWord = []