comparison contrib/splicex/src/splicex.pyx @ 711:c02c7e024e05 draft

SpliceX fixed
author d3v11 <d3v11@d3v11.ano>
date Sun, 30 Oct 2011 07:48:04 -0400
parents 77fbf12a5d3a
children 59babc5385d5
comparison
equal deleted inserted replaced
710:a8f74ee394a3 711:c02c7e024e05
273 Create = True 273 Create = True
274 elif '--debug' in arg: 274 elif '--debug' in arg:
275 DebugSwitch = True 275 DebugSwitch = True
276 elif '--help' in arg: 276 elif '--help' in arg:
277 sys.exit(HELP()) 277 sys.exit(HELP())
278 else: 278 elif arg != sys.argv[0]:
279 if arg != '/usr/bin/splicex': 279 sys.exit(SpliceX + 'error: invalid argument: ' + arg)
280 sys.exit(SpliceX + 'error: invalid argument: ' + arg)
281 280
282 if DebugSwitch is False: 281 if DebugSwitch is False:
283 sys.tracebacklimit = 0 282 sys.tracebacklimit = 0
284 283
285 if ExhCustom is not None: 284 if ExhCustom is not None:
1730 UserCount = 1 1729 UserCount = 1
1731 1730
1732 if not Word: 1731 if not Word:
1733 sys.exit(SpliceX + "error: compiled empty wordlist") 1732 sys.exit(SpliceX + "error: compiled empty wordlist")
1734 1733
1735 Word = list(set(Word)) 1734 Word = list(set(Word))
1736 WordCount = 0
1737 ShowWord = [] 1735 ShowWord = []
1738 PassWd = [] 1736 PassWd = []
1739 for Input in Word: 1737 for Input in Word:
1740 ShowWord.append(Input) 1738 ShowWord.append(Input)
1741 c = "" 1739 c = ""
1742 for let in Input: 1740 for let in Input:
1743 c += "\\\\\\" + let 1741 c += "\\\\\\" + let
1744 PassWd.append(c) 1742 PassWd.append(c)
1745 1743
1746 1744 timeup = 0
1745 PassAmount = 0
1746 StartTime = time.time() - 1
1747 if TIME != None: 1747 if TIME != None:
1748 try: 1748 try:
1749 TIME = TIME.split(", ") 1749 TIME = TIME.split(", ")
1750 sleep_now = int(TIME[0]) 1750 sleep_now = int(TIME[0])
1751 sleep_for = int(TIME[1]) 1751 sleep_for = int(TIME[1])
1773 1773
1774 else: 1774 else:
1775 length_start = 0 1775 length_start = 0
1776 length_end = 10 1776 length_end = 10
1777 1777
1778 WordCount = 0
1779 for CountWords in ShowWord:
1780 WordCount += 1
1781
1778 def BF1(): 1782 def BF1():
1779 WordCount = 0 1783 global timeup, PassAmount
1780 for CountWords in ShowWord:
1781 WordCount += 1
1782 StartTime = time.time()
1783 StartTime = StartTime - 1
1784 PassAmount = 0
1785 timeup = 0
1786 for u in range(StateU, UserCount): 1784 for u in range(StateU, UserCount):
1787 if length_start > 0:
1788 break
1789 if length_end < 0:
1790 sys.exit(SpliceX + 'unable to find password')
1791 for x in range(StateW, WordCount): 1785 for x in range(StateW, WordCount):
1792 if SaveSwitch is True: 1786 if SaveSwitch is True:
1793 WriteSave = [] 1787 WriteSave = []
1794 FILE = open(save, 'w') 1788 FILE = open(save, 'w')
1795 WriteSave.append(str(cmd)) 1789 WriteSave.append(str(cmd))
1836 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 1830 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
1837 else: 1831 else:
1838 print(output) 1832 print(output)
1839 1833
1840 def BF2(): 1834 def BF2():
1835 global timeup, PassAmount
1841 if NoChar is True: 1836 if NoChar is True:
1842 sys.exit(SpliceX + 'unable to find password') 1837 sys.exit(SpliceX + 'unable to find password')
1843 WordCount = 0
1844 for CountWords in ShowWord:
1845 WordCount += 1
1846 StartTime = time.time()
1847 StartTime = StartTime - 1
1848 PassAmount = 0
1849 timeup = 0
1850 for u in range(StateU, UserCount): 1838 for u in range(StateU, UserCount):
1851 if length_start > 1:
1852 break
1853 if length_end < 1:
1854 sys.exit(SpliceX + 'unable to find password')
1855 for a in range(StateA, EndCount): 1839 for a in range(StateA, EndCount):
1856 for x in range(StateW, WordCount): 1840 for x in range(StateW, WordCount):
1857 if SaveSwitch is True: 1841 if SaveSwitch is True:
1858 WriteSave = [] 1842 WriteSave = []
1859 FILE = open(save, 'w') 1843 FILE = open(save, 'w')
1921 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 1905 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
1922 else: 1906 else:
1923 print(output) 1907 print(output)
1924 1908
1925 def BF3(): 1909 def BF3():
1910 global timeup, PassAmount
1926 if NoChar is True: 1911 if NoChar is True:
1927 sys.exit(SpliceX + 'unable to find password') 1912 sys.exit(SpliceX + 'unable to find password')
1928 WordCount = 0
1929 for CountWords in ShowWord:
1930 WordCount += 1
1931 StartTime = time.time()
1932 StartTime = StartTime - 1
1933 PassAmount = 0
1934 timeup = 0
1935 for u in range(StateU, UserCount): 1913 for u in range(StateU, UserCount):
1936 if length_start > 2:
1937 break
1938 if length_end < 2:
1939 sys.exit(SpliceX + 'unable to find password')
1940 for a in range(StateA, EndCount): 1914 for a in range(StateA, EndCount):
1941 for b in range(StateB, EndCount): 1915 for b in range(StateB, EndCount):
1942 for x in range(StateW, WordCount): 1916 for x in range(StateW, WordCount):
1943 if SaveSwitch is True: 1917 if SaveSwitch is True:
1944 WriteSave = [] 1918 WriteSave = []
2026 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2000 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
2027 else: 2001 else:
2028 print(output) 2002 print(output)
2029 2003
2030 def BF4(): 2004 def BF4():
2005 global timeup, PassAmount
2031 if NoChar is True: 2006 if NoChar is True:
2032 sys.exit(SpliceX + 'unable to find password') 2007 sys.exit(SpliceX + 'unable to find password')
2033 WordCount = 0
2034 for CountWords in ShowWord:
2035 WordCount += 1
2036 StartTime = time.time()
2037 StartTime = StartTime - 1
2038 PassAmount = 0
2039 timeup = 0
2040 for u in range(StateU, UserCount): 2008 for u in range(StateU, UserCount):
2041 if length_start > 3:
2042 break
2043 if length_end < 3:
2044 sys.exit(SpliceX + 'unable to find password')
2045 for a in range(StateA, EndCount): 2009 for a in range(StateA, EndCount):
2046 for b in range(StateB, EndCount): 2010 for b in range(StateB, EndCount):
2047 for c in range(StateC, EndCount): 2011 for c in range(StateC, EndCount):
2048 for x in range(StateW, WordCount): 2012 for x in range(StateW, WordCount):
2049 if SaveSwitch is True: 2013 if SaveSwitch is True:
2151 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2115 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
2152 else: 2116 else:
2153 print(output) 2117 print(output)
2154 2118
2155 def BF5(): 2119 def BF5():
2120 global timeup, PassAmount
2156 if NoChar is True: 2121 if NoChar is True:
2157 sys.exit(SpliceX + 'unable to find password') 2122 sys.exit(SpliceX + 'unable to find password')
2158 WordCount = 0
2159 for CountWords in ShowWord:
2160 WordCount += 1
2161 StartTime = time.time()
2162 StartTime = StartTime - 1
2163 PassAmount = 0
2164 timeup = 0
2165 for u in range(StateU, UserCount): 2123 for u in range(StateU, UserCount):
2166 if length_start > 4:
2167 break
2168 if length_end < 4:
2169 sys.exit(SpliceX + 'unable to find password')
2170 for a in range(StateA, EndCount): 2124 for a in range(StateA, EndCount):
2171 for b in range(StateB, EndCount): 2125 for b in range(StateB, EndCount):
2172 for c in range(StateC, EndCount): 2126 for c in range(StateC, EndCount):
2173 for d in range(StateD, EndCount): 2127 for d in range(StateD, EndCount):
2174 for x in range(StateW, WordCount): 2128 for x in range(StateW, WordCount):
2260 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2214 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
2261 else: 2215 else:
2262 print(output) 2216 print(output)
2263 2217
2264 def BF6(): 2218 def BF6():
2219 global timeup, PassAmount
2265 if NoChar is True: 2220 if NoChar is True:
2266 sys.exit(SpliceX + 'unable to find password') 2221 sys.exit(SpliceX + 'unable to find password')
2267 WordCount = 0
2268 for CountWords in ShowWord:
2269 WordCount += 1
2270 StartTime = time.time()
2271 StartTime = StartTime - 1
2272 PassAmount = 0
2273 timeup = 0
2274 for u in range(StateU, UserCount): 2222 for u in range(StateU, UserCount):
2275 if length_start > 5:
2276 break
2277 if length_end < 5:
2278 sys.exit(SpliceX + 'unable to find password')
2279 for a in range(StateA, EndCount): 2223 for a in range(StateA, EndCount):
2280 for b in range(StateB, EndCount): 2224 for b in range(StateB, EndCount):
2281 for c in range(StateC, EndCount): 2225 for c in range(StateC, EndCount):
2282 for d in range(StateD, EndCount): 2226 for d in range(StateD, EndCount):
2283 for e in range(StateE, EndCount): 2227 for e in range(StateE, EndCount):
2389 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2333 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
2390 else: 2334 else:
2391 print(output) 2335 print(output)
2392 2336
2393 def BF7(): 2337 def BF7():
2338 global timeup, PassAmount
2394 if NoChar is True: 2339 if NoChar is True:
2395 sys.exit(SpliceX + 'unable to find password') 2340 sys.exit(SpliceX + 'unable to find password')
2396 WordCount = 0
2397 for CountWords in ShowWord:
2398 WordCount += 1
2399 StartTime = time.time()
2400 StartTime = StartTime - 1
2401 PassAmount = 0
2402 timeup = 0
2403 for u in range(StateU, UserCount): 2341 for u in range(StateU, UserCount):
2404 if length_start > 6:
2405 break
2406 if length_end < 6:
2407 sys.exit(SpliceX + 'unable to find password')
2408 for a in range(StateA, EndCount): 2342 for a in range(StateA, EndCount):
2409 for b in range(StateB, EndCount): 2343 for b in range(StateB, EndCount):
2410 for c in range(StateC, EndCount): 2344 for c in range(StateC, EndCount):
2411 for d in range(StateD, EndCount): 2345 for d in range(StateD, EndCount):
2412 for e in range(StateE, EndCount): 2346 for e in range(StateE, EndCount):
2502 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2436 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
2503 else: 2437 else:
2504 print(output) 2438 print(output)
2505 2439
2506 def BF8(): 2440 def BF8():
2441 global timeup, PassAmount
2507 if NoChar is True: 2442 if NoChar is True:
2508 sys.exit(SpliceX + 'unable to find password') 2443 sys.exit(SpliceX + 'unable to find password')
2509 WordCount = 0
2510 for CountWords in ShowWord:
2511 WordCount += 1
2512 StartTime = time.time()
2513 StartTime = StartTime - 1
2514 PassAmount = 0
2515 timeup = 0
2516 for u in range(StateU, UserCount): 2444 for u in range(StateU, UserCount):
2517 if length_start > 7:
2518 break
2519 if length_end < 7:
2520 sys.exit(SpliceX + 'unable to find password')
2521 for a in range(StateA, EndCount): 2445 for a in range(StateA, EndCount):
2522 for b in range(StateB, EndCount): 2446 for b in range(StateB, EndCount):
2523 for c in range(StateC, EndCount): 2447 for c in range(StateC, EndCount):
2524 for d in range(StateD, EndCount): 2448 for d in range(StateD, EndCount):
2525 for e in range(StateE, EndCount): 2449 for e in range(StateE, EndCount):
2635 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2559 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
2636 else: 2560 else:
2637 print(output) 2561 print(output)
2638 2562
2639 def BF9(): 2563 def BF9():
2564 global timeup, PassAmount
2640 if NoChar is True: 2565 if NoChar is True:
2641 sys.exit(SpliceX + 'unable to find password') 2566 sys.exit(SpliceX + 'unable to find password')
2642 WordCount = 0
2643 for CountWords in ShowWord:
2644 WordCount += 1
2645 StartTime = time.time()
2646 StartTime = StartTime - 1
2647 PassAmount = 0
2648 timeup = 0
2649 for u in range(StateU, UserCount): 2567 for u in range(StateU, UserCount):
2650 if length_start > 8:
2651 break
2652 if length_end < 8:
2653 sys.exit(SpliceX + 'unable to find password')
2654 for a in range(StateA, EndCount): 2568 for a in range(StateA, EndCount):
2655 for b in range(StateB, EndCount): 2569 for b in range(StateB, EndCount):
2656 for c in range(StateC, EndCount): 2570 for c in range(StateC, EndCount):
2657 for d in range(StateD, EndCount): 2571 for d in range(StateD, EndCount):
2658 for e in range(StateE, EndCount): 2572 for e in range(StateE, EndCount):
2752 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2666 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
2753 else: 2667 else:
2754 print(output) 2668 print(output)
2755 2669
2756 def BF10(): 2670 def BF10():
2671 global timeup, PassAmount
2757 if NoChar is True: 2672 if NoChar is True:
2758 sys.exit(SpliceX + 'unable to find password') 2673 sys.exit(SpliceX + 'unable to find password')
2759 WordCount = 0
2760 for CountWords in ShowWord:
2761 WordCount += 1
2762 StartTime = time.time()
2763 StartTime = StartTime - 1
2764 PassAmount = 0
2765 timeup = 0
2766 for u in range(StateU, UserCount): 2674 for u in range(StateU, UserCount):
2767 if length_start > 9:
2768 break
2769 if length_end < 9:
2770 sys.exit(SpliceX + 'unable to find password')
2771 for a in range(StateA, EndCount): 2675 for a in range(StateA, EndCount):
2772 for b in range(StateB, EndCount): 2676 for b in range(StateB, EndCount):
2773 for c in range(StateC, EndCount): 2677 for c in range(StateC, EndCount):
2774 for d in range(StateD, EndCount): 2678 for d in range(StateD, EndCount):
2775 for e in range(StateE, EndCount): 2679 for e in range(StateE, EndCount):
2889 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2793 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
2890 else: 2794 else:
2891 print(output) 2795 print(output)
2892 2796
2893 def BF11(): 2797 def BF11():
2798 global timeup, PassAmount
2894 if NoChar is True: 2799 if NoChar is True:
2895 sys.exit(SpliceX + 'unable to find password') 2800 sys.exit(SpliceX + 'unable to find password')
2896 WordCount = 0
2897 for CountWords in ShowWord:
2898 WordCount += 1
2899 StartTime = time.time()
2900 StartTime = StartTime - 1
2901 PassAmount = 0
2902 timeup = 0
2903 for u in range(StateU, UserCount): 2801 for u in range(StateU, UserCount):
2904 if length_start > 10:
2905 break
2906 if length_end < 10:
2907 sys.exit(SpliceX + 'unable to find password')
2908 for a in range(StateA, EndCount): 2802 for a in range(StateA, EndCount):
2909 for b in range(StateB, EndCount): 2803 for b in range(StateB, EndCount):
2910 for c in range(StateC, EndCount): 2804 for c in range(StateC, EndCount):
2911 for d in range(StateD, EndCount): 2805 for d in range(StateD, EndCount):
2912 for e in range(StateE, EndCount): 2806 for e in range(StateE, EndCount):
3010 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour) 2904 sys.exit(Red + "[PASSWORD FOUND]: " + Green + NewShowWord + DefColour)
3011 else: 2905 else:
3012 print(output) 2906 print(output)
3013 2907
3014 def SBF1(): 2908 def SBF1():
3015 WordCount = 0
3016 for CountWords in ShowWord:
3017 WordCount += 1
3018 for u in range(StateU, UserCount): 2909 for u in range(StateU, UserCount):
3019 if length_start > 0:
3020 break
3021 if length_end < 0:
3022 sys.exit(0)
3023 for x in range(StateW, WordCount): 2910 for x in range(StateW, WordCount):
3024 if SaveSwitch is True: 2911 if SaveSwitch is True:
3025 WriteSave = [] 2912 WriteSave = []
3026 FILE = open(save, 'w') 2913 FILE = open(save, 'w')
3027 WriteSave.append(str(cmd)) 2914 WriteSave.append(str(cmd))
3053 FILE.close() 2940 FILE.close()
3054 NewShowWord = ShowWord[x] 2941 NewShowWord = ShowWord[x]
3055 print(NewShowWord.replace(" ", "")) 2942 print(NewShowWord.replace(" ", ""))
3056 2943
3057 def SBF2(): 2944 def SBF2():
3058 WordCount = 0
3059 for CountWords in ShowWord:
3060 WordCount += 1
3061 if NoChar is True: 2945 if NoChar is True:
3062 sys.exit(0) 2946 sys.exit(0)
3063 for u in range(StateU, UserCount): 2947 for u in range(StateU, UserCount):
3064 if length_start > 1:
3065 break
3066 if length_end < 1:
3067 sys.exit(0)
3068 for a in range(StateA, EndCount): 2948 for a in range(StateA, EndCount):
3069 for x in range(StateW, WordCount): 2949 for x in range(StateW, WordCount):
3070 if SaveSwitch is True: 2950 if SaveSwitch is True:
3071 WriteSave = [] 2951 WriteSave = []
3072 FILE = open(save, 'w') 2952 FILE = open(save, 'w')
3104 if ExhSwitch is False: 2984 if ExhSwitch is False:
3105 NewShowWord = ShowWord[x] + Char1[a] 2985 NewShowWord = ShowWord[x] + Char1[a]
3106 print(NewShowWord.replace(" ", "")) 2986 print(NewShowWord.replace(" ", ""))
3107 2987
3108 def SBF3(): 2988 def SBF3():
3109 WordCount = 0
3110 for CountWords in ShowWord:
3111 WordCount += 1
3112 if NoChar is True: 2989 if NoChar is True:
3113 sys.exit(0) 2990 sys.exit(0)
3114 for u in range(StateU, UserCount): 2991 for u in range(StateU, UserCount):
3115 if length_start > 2:
3116 break
3117 if length_end < 2:
3118 sys.exit(0)
3119 for a in range(StateA, EndCount): 2992 for a in range(StateA, EndCount):
3120 for b in range(StateB, EndCount): 2993 for b in range(StateB, EndCount):
3121 for x in range(StateW, WordCount): 2994 for x in range(StateW, WordCount):
3122 if SaveSwitch is True: 2995 if SaveSwitch is True:
3123 WriteSave = [] 2996 WriteSave = []
3160 3033
3161 NewShowWord = ShowWord[x] + Char1[b] + Char1[a] 3034 NewShowWord = ShowWord[x] + Char1[b] + Char1[a]
3162 print(NewShowWord.replace(" ", "")) 3035 print(NewShowWord.replace(" ", ""))
3163 3036
3164 def SBF4(): 3037 def SBF4():
3165 WordCount = 0
3166 for CountWords in ShowWord:
3167 WordCount += 1
3168 if NoChar is True: 3038 if NoChar is True:
3169 sys.exit(0) 3039 sys.exit(0)
3170 for u in range(StateU, UserCount): 3040 for u in range(StateU, UserCount):
3171 if length_start > 3:
3172 break
3173 if length_end < 3:
3174 sys.exit(0)
3175 for a in range(StateA, EndCount): 3041 for a in range(StateA, EndCount):
3176 for b in range(StateB, EndCount): 3042 for b in range(StateB, EndCount):
3177 for c in range(StateC, EndCount): 3043 for c in range(StateC, EndCount):
3178 for x in range(StateW, WordCount): 3044 for x in range(StateW, WordCount):
3179 if SaveSwitch is True: 3045 if SaveSwitch is True:
3221 3087
3222 NewShowWord = ShowWord[x] + Char1[b] + Char1[a] + Char1[c] 3088 NewShowWord = ShowWord[x] + Char1[b] + Char1[a] + Char1[c]
3223 print(NewShowWord.replace(" ", "")) 3089 print(NewShowWord.replace(" ", ""))
3224 3090
3225 def SBF5(): 3091 def SBF5():
3226 WordCount = 0
3227 for CountWords in ShowWord:
3228 WordCount += 1
3229 if NoChar is True: 3092 if NoChar is True:
3230 sys.exit(0) 3093 sys.exit(0)
3231 for u in range(StateU, UserCount): 3094 for u in range(StateU, UserCount):
3232 if length_start > 4:
3233 break
3234 if length_end < 4:
3235 sys.exit(0)
3236 for a in range(StateA, EndCount): 3095 for a in range(StateA, EndCount):
3237 for b in range(StateB, EndCount): 3096 for b in range(StateB, EndCount):
3238 for c in range(StateC, EndCount): 3097 for c in range(StateC, EndCount):
3239 for d in range(StateD, EndCount): 3098 for d in range(StateD, EndCount):
3240 for x in range(StateW, WordCount): 3099 for x in range(StateW, WordCount):
3281 3140
3282 NewShowWord = ShowWord[x] + Char1[d] + Char1[b] + Char1[a] + Char1[c] 3141 NewShowWord = ShowWord[x] + Char1[d] + Char1[b] + Char1[a] + Char1[c]
3283 print(NewShowWord.replace(" ", "")) 3142 print(NewShowWord.replace(" ", ""))
3284 3143
3285 def SBF6(): 3144 def SBF6():
3286 WordCount = 0
3287 for CountWords in ShowWord:
3288 WordCount += 1
3289 if NoChar is True: 3145 if NoChar is True:
3290 sys.exit(0) 3146 sys.exit(0)
3291 for u in range(StateU, UserCount): 3147 for u in range(StateU, UserCount):
3292 if length_start > 5:
3293 break
3294 if length_end < 5:
3295 sys.exit(0)
3296 for a in range(StateA, EndCount): 3148 for a in range(StateA, EndCount):
3297 for b in range(StateB, EndCount): 3149 for b in range(StateB, EndCount):
3298 for c in range(StateC, EndCount): 3150 for c in range(StateC, EndCount):
3299 for d in range(StateD, EndCount): 3151 for d in range(StateD, EndCount):
3300 for e in range(StateE, EndCount): 3152 for e in range(StateE, EndCount):
3346 3198
3347 NewShowWord = ShowWord[x] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e] 3199 NewShowWord = ShowWord[x] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e]
3348 print(NewShowWord.replace(" ", "")) 3200 print(NewShowWord.replace(" ", ""))
3349 3201
3350 def SBF7(): 3202 def SBF7():
3351 WordCount = 0
3352 for CountWords in ShowWord:
3353 WordCount += 1
3354 if NoChar is True: 3203 if NoChar is True:
3355 sys.exit(0) 3204 sys.exit(0)
3356 for u in range(StateU, UserCount): 3205 for u in range(StateU, UserCount):
3357 if length_start > 6:
3358 break
3359 if length_end < 6:
3360 sys.exit(0)
3361 for a in range(StateA, EndCount): 3206 for a in range(StateA, EndCount):
3362 for b in range(StateB, EndCount): 3207 for b in range(StateB, EndCount):
3363 for c in range(StateC, EndCount): 3208 for c in range(StateC, EndCount):
3364 for d in range(StateD, EndCount): 3209 for d in range(StateD, EndCount):
3365 for e in range(StateE, EndCount): 3210 for e in range(StateE, EndCount):
3410 3255
3411 NewShowWord = ShowWord[x] + Char1[f] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e] 3256 NewShowWord = ShowWord[x] + Char1[f] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e]
3412 print(NewShowWord.replace(" ", "")) 3257 print(NewShowWord.replace(" ", ""))
3413 3258
3414 def SBF8(): 3259 def SBF8():
3415 WordCount = 0
3416 for CountWords in ShowWord:
3417 WordCount += 1
3418 if NoChar is True: 3260 if NoChar is True:
3419 sys.exit(0) 3261 sys.exit(0)
3420 for u in range(StateU, UserCount): 3262 for u in range(StateU, UserCount):
3421 if length_start > 7:
3422 break
3423 if length_end < 7:
3424 sys.exit(0)
3425 for a in range(StateA, EndCount): 3263 for a in range(StateA, EndCount):
3426 for b in range(StateB, EndCount): 3264 for b in range(StateB, EndCount):
3427 for c in range(StateC, EndCount): 3265 for c in range(StateC, EndCount):
3428 for d in range(StateD, EndCount): 3266 for d in range(StateD, EndCount):
3429 for e in range(StateE, EndCount): 3267 for e in range(StateE, EndCount):
3479 3317
3480 NewShowWord = ShowWord[x] + Char1[f] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e] + Char1[g] 3318 NewShowWord = ShowWord[x] + Char1[f] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e] + Char1[g]
3481 print(NewShowWord.replace(" ", "")) 3319 print(NewShowWord.replace(" ", ""))
3482 3320
3483 def SBF9(): 3321 def SBF9():
3484 WordCount = 0
3485 for CountWords in ShowWord:
3486 WordCount += 1
3487 if NoChar is True: 3322 if NoChar is True:
3488 sys.exit(0) 3323 sys.exit(0)
3489 for u in range(StateU, UserCount): 3324 for u in range(StateU, UserCount):
3490 if length_start > 8:
3491 break
3492 if length_end < 8:
3493 sys.exit(0)
3494 for a in range(StateA, EndCount): 3325 for a in range(StateA, EndCount):
3495 for b in range(StateB, EndCount): 3326 for b in range(StateB, EndCount):
3496 for c in range(StateC, EndCount): 3327 for c in range(StateC, EndCount):
3497 for d in range(StateD, EndCount): 3328 for d in range(StateD, EndCount):
3498 for e in range(StateE, EndCount): 3329 for e in range(StateE, EndCount):
3547 3378
3548 NewShowWord = ShowWord[x] + Char1[h] + Char1[f] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e] + Char1[g] 3379 NewShowWord = ShowWord[x] + Char1[h] + Char1[f] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e] + Char1[g]
3549 print(NewShowWord.replace(" ", "")) 3380 print(NewShowWord.replace(" ", ""))
3550 3381
3551 def SBF10(): 3382 def SBF10():
3552 WordCount = 0
3553 for CountWords in ShowWord:
3554 WordCount += 1
3555 if NoChar is True: 3383 if NoChar is True:
3556 sys.exit(0) 3384 sys.exit(0)
3557 for u in range(StateU, UserCount): 3385 for u in range(StateU, UserCount):
3558 if length_start > 9:
3559 break
3560 if length_end < 9:
3561 sys.exit(0)
3562 for a in range(StateA, EndCount): 3386 for a in range(StateA, EndCount):
3563 for b in range(StateB, EndCount): 3387 for b in range(StateB, EndCount):
3564 for c in range(StateC, EndCount): 3388 for c in range(StateC, EndCount):
3565 for d in range(StateD, EndCount): 3389 for d in range(StateD, EndCount):
3566 for e in range(StateE, EndCount): 3390 for e in range(StateE, EndCount):
3620 3444
3621 NewShowWord = ShowWord[x] + Char1[h] + Char1[f] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e] + Char1[g] + Char1[i] 3445 NewShowWord = ShowWord[x] + Char1[h] + Char1[f] + Char1[d] + Char1[b] + Char1[a] + Char1[c] + Char1[e] + Char1[g] + Char1[i]
3622 print(NewShowWord.replace(" ", "")) 3446 print(NewShowWord.replace(" ", ""))
3623 3447
3624 def SBF11(): 3448 def SBF11():
3625 WordCount = 0
3626 for CountWords in ShowWord:
3627 WordCount += 1
3628 if NoChar is True: 3449 if NoChar is True:
3629 sys.exit(0) 3450 sys.exit(0)
3630 for u in range(StateU, UserCount): 3451 for u in range(StateU, UserCount):
3631 if length_start > 10:
3632 break
3633 if length_end < 10:
3634 sys.exit(0)
3635 for a in range(StateA, EndCount): 3452 for a in range(StateA, EndCount):
3636 for b in range(StateB, EndCount): 3453 for b in range(StateB, EndCount):
3637 for c in range(StateC, EndCount): 3454 for c in range(StateC, EndCount):
3638 for d in range(StateD, EndCount): 3455 for d in range(StateD, EndCount):
3639 for e in range(StateE, EndCount): 3456 for e in range(StateE, EndCount):
3730 CFILE.close() 3547 CFILE.close()
3731 sys.stdout.write(CLEAR_LINE) 3548 sys.stdout.write(CLEAR_LINE)
3732 sys.stdout.write('\r') 3549 sys.stdout.write('\r')
3733 sys.exit(SpliceX + 'compiled ' + str(N) + ' passwords. enjoy ;-)') 3550 sys.exit(SpliceX + 'compiled ' + str(N) + ' passwords. enjoy ;-)')
3734 3551
3552 def C_BF1():
3553 if length_start > 0:
3554 pass
3555 elif length_end < 0:
3556 sys.exit(SpliceX + 'unable to find password')
3557 elif StdoutSwitch is True:
3558 BF1()
3559
3560 def C_BF2():
3561 if length_start > 1:
3562 pass
3563 elif length_end < 1:
3564 sys.exit(SpliceX + 'unable to find password')
3565 else:
3566 BF2()
3567
3568 def C_BF3():
3569 if length_start > 2:
3570 pass
3571 elif length_end < 2:
3572 sys.exit(SpliceX + 'unable to find password')
3573 else:
3574 BF3()
3575
3576 def C_BF4():
3577 if length_start > 3:
3578 pass
3579 elif length_end < 3:
3580 sys.exit(SpliceX + 'unable to find password')
3581 else:
3582 BF4()
3583
3584 def C_BF5():
3585 if length_start > 4:
3586 pass
3587 elif length_end < 4:
3588 sys.exit(SpliceX + 'unable to find password')
3589 else:
3590 BF5()
3591
3592 def C_BF6():
3593 if length_start > 5:
3594 pass
3595 elif length_end < 5:
3596 sys.exit(SpliceX + 'unable to find password')
3597 else:
3598 BF6()
3599
3600 def C_BF7():
3601 if length_start > 6:
3602 pass
3603 elif length_end < 6:
3604 sys.exit(SpliceX + 'unable to find password')
3605 else:
3606 BF7()
3607
3608 def C_BF8():
3609 if length_start > 7:
3610 pass
3611 elif length_end < 7:
3612 sys.exit(SpliceX + 'unable to find password')
3613 else:
3614 BF8()
3615
3616 def C_BF9():
3617 if length_start > 8:
3618 pass
3619 elif length_end < 8:
3620 sys.exit(SpliceX + 'unable to find password')
3621 else:
3622 BF9()
3623
3624 def C_BF10():
3625 if length_start > 9:
3626 pass
3627 elif length_end < 9:
3628 sys.exit(SpliceX + 'unable to find password')
3629 else:
3630 BF10()
3631
3632 def C_BF11():
3633 if length_start > 10:
3634 pass
3635 elif length_end < 10:
3636 sys.exit(SpliceX + 'unable to find password')
3637 else:
3638 BF11()
3639
3640 def C_SBF1():
3641 if length_start > 0:
3642 pass
3643 elif length_end < 0:
3644 sys.exit(0)
3645 elif StdoutSwitch is True:
3646 SBF1()
3647
3648 def C_SBF2():
3649 if length_start > 1:
3650 pass
3651 elif length_end < 1:
3652 sys.exit(0)
3653 else:
3654 SBF2()
3655
3656 def C_SBF3():
3657 if length_start > 2:
3658 pass
3659 elif length_end < 2:
3660 sys.exit(0)
3661 else:
3662 SBF3()
3663
3664 def C_SBF4():
3665 if length_start > 3:
3666 pass
3667 elif length_end < 3:
3668 sys.exit(0)
3669 else:
3670 SBF4()
3671
3672 def C_SBF5():
3673 if length_start > 4:
3674 pass
3675 elif length_end < 4:
3676 sys.exit(0)
3677 else:
3678 SBF5()
3679
3680 def C_SBF6():
3681 if length_start > 5:
3682 pass
3683 elif length_end < 5:
3684 sys.exit(0)
3685 else:
3686 SBF6()
3687
3688 def C_SBF7():
3689 if length_start > 6:
3690 pass
3691 elif length_end < 6:
3692 sys.exit(0)
3693 else:
3694 SBF7()
3695
3696 def C_SBF8():
3697 if length_start > 7:
3698 pass
3699 elif length_end < 7:
3700 sys.exit(0)
3701 else:
3702 SBF8()
3703
3704 def C_SBF9():
3705 if length_start > 8:
3706 pass
3707 elif length_end < 8:
3708 sys.exit(0)
3709 else:
3710 SBF9()
3711
3712 def C_SBF10():
3713 if length_start > 9:
3714 pass
3715 elif length_end < 9:
3716 sys.exit(0)
3717 else:
3718 SBF10()
3719
3720 def C_SBF11():
3721 if length_start > 10:
3722 pass
3723 elif length_end < 10:
3724 sys.exit(0)
3725 else:
3726 SBF11()
3727
3728
3735 if RestoreSwitch is False: 3729 if RestoreSwitch is False:
3736 StateCount = 0 3730 StateCount = 0
3737 if RestoreSwitch is False and StdoutSwitch is False: 3731 if RestoreSwitch is False and StdoutSwitch is False:
3738 StateU = 0 3732 StateU = 0
3739 StateW = 0 3733 StateW = 0
3745 StateF = 0 3739 StateF = 0
3746 StateG = 0 3740 StateG = 0
3747 StateH = 0 3741 StateH = 0
3748 StateI = 0 3742 StateI = 0
3749 StateJ = 0 3743 StateJ = 0
3750 BF1() 3744 C_BF1()
3751 BF2() 3745 C_BF2()
3752 BF3() 3746 C_BF3()
3753 BF4() 3747 C_BF4()
3754 BF5() 3748 C_BF5()
3755 BF6() 3749 C_BF6()
3756 BF7() 3750 C_BF7()
3757 BF8() 3751 C_BF8()
3758 BF9() 3752 C_BF9()
3759 BF10() 3753 C_BF10()
3760 BF11() 3754 C_BF11()
3761 sys.exit(SpliceX + " unable to find password") 3755 sys.exit(SpliceX + " unable to find password")
3762 3756
3763 if StateCount == 22 and RestoreSwitch is True and StdoutSwitch is False: 3757 if StateCount == 22 and RestoreSwitch is True and StdoutSwitch is False:
3764 StateU = int(State[22]) 3758 StateU = int(State[22])
3765 StateW = 0 3759 StateW = 0
3771 StateF = 0 3765 StateF = 0
3772 StateG = 0 3766 StateG = 0
3773 StateH = 0 3767 StateH = 0
3774 StateI = 0 3768 StateI = 0
3775 StateJ = 0 3769 StateJ = 0
3776 BF1() 3770 C_BF1()
3777 StateW = 0 3771 StateW = 0
3778 StateA = 0 3772 StateA = 0
3779 StateB = 0 3773 StateB = 0
3780 StateC = 0 3774 StateC = 0
3781 StateD = 0 3775 StateD = 0
3783 StateF = 0 3777 StateF = 0
3784 StateG = 0 3778 StateG = 0
3785 StateH = 0 3779 StateH = 0
3786 StateI = 0 3780 StateI = 0
3787 StateJ = 0 3781 StateJ = 0
3788 BF2() 3782 C_BF2()
3789 BF3() 3783 C_BF3()
3790 BF4() 3784 C_BF4()
3791 BF5() 3785 C_BF5()
3792 BF6() 3786 C_BF6()
3793 BF7() 3787 C_BF7()
3794 BF8() 3788 C_BF8()
3795 BF9() 3789 C_BF9()
3796 BF10() 3790 C_BF10()
3797 BF11() 3791 C_BF11()
3798 sys.exit(SpliceX + " unable to find password") 3792 sys.exit(SpliceX + " unable to find password")
3799 if StateCount == 21 and RestoreSwitch is True and StdoutSwitch is False: 3793 if StateCount == 23 and RestoreSwitch is True and StdoutSwitch is False:
3800 StateU = int(State[22]) 3794 StateU = int(State[22])
3801 StateW = int(State[23]) 3795 StateW = int(State[23])
3802 StateA = 0 3796 StateA = 0
3803 StateB = 0 3797 StateB = 0
3804 StateC = 0 3798 StateC = 0
3807 StateF = 0 3801 StateF = 0
3808 StateG = 0 3802 StateG = 0
3809 StateH = 0 3803 StateH = 0
3810 StateI = 0 3804 StateI = 0
3811 StateJ = 0 3805 StateJ = 0
3812 BF1() 3806 C_BF1()
3813 StateW = 0 3807 StateW = 0
3814 StateA = 0 3808 StateA = 0
3815 StateB = 0 3809 StateB = 0
3816 StateC = 0 3810 StateC = 0
3817 StateD = 0 3811 StateD = 0
3819 StateF = 0 3813 StateF = 0
3820 StateG = 0 3814 StateG = 0
3821 StateH = 0 3815 StateH = 0
3822 StateI = 0 3816 StateI = 0
3823 StateJ = 0 3817 StateJ = 0
3824 BF2() 3818 C_BF2()
3825 BF3() 3819 C_BF3()
3826 BF4() 3820 C_BF4()
3827 BF5() 3821 C_BF5()
3828 BF6() 3822 C_BF6()
3829 BF7() 3823 C_BF7()
3830 BF8() 3824 C_BF8()
3831 BF9() 3825 C_BF9()
3832 BF10() 3826 C_BF10()
3833 BF11() 3827 C_BF11()
3834 sys.exit(SpliceX + " unable to find password") 3828 sys.exit(SpliceX + " unable to find password")
3835 elif StateCount == 24 and RestoreSwitch is True and StdoutSwitch is False: 3829 elif StateCount == 24 and RestoreSwitch is True and StdoutSwitch is False:
3836 StateU = int(State[22]) 3830 StateU = int(State[22])
3837 StateW = int(State[23]) 3831 StateW = int(State[23])
3838 StateA = int(State[24]) 3832 StateA = int(State[24])
3843 StateF = 0 3837 StateF = 0
3844 StateG = 0 3838 StateG = 0
3845 StateH = 0 3839 StateH = 0
3846 StateI = 0 3840 StateI = 0
3847 StateJ = 0 3841 StateJ = 0
3848 BF2() 3842 C_BF2()
3849 StateW = 0 3843 StateW = 0
3850 StateA = 0 3844 StateA = 0
3851 StateB = 0 3845 StateB = 0
3852 StateC = 0 3846 StateC = 0
3853 StateD = 0 3847 StateD = 0
3855 StateF = 0 3849 StateF = 0
3856 StateG = 0 3850 StateG = 0
3857 StateH = 0 3851 StateH = 0
3858 StateI = 0 3852 StateI = 0
3859 StateJ = 0 3853 StateJ = 0
3860 BF3() 3854 C_BF3()
3861 BF4() 3855 C_BF4()
3862 BF5() 3856 C_BF5()
3863 BF6() 3857 C_BF6()
3864 BF7() 3858 C_BF7()
3865 BF8() 3859 C_BF8()
3866 BF9() 3860 C_BF9()
3867 BF10() 3861 C_BF10()
3868 BF11() 3862 C_BF11()
3869 sys.exit(SpliceX + " unable to find password") 3863 sys.exit(SpliceX + " unable to find password")
3870 elif StateCount == 25 and RestoreSwitch is True and StdoutSwitch is False: 3864 elif StateCount == 25 and RestoreSwitch is True and StdoutSwitch is False:
3871 StateU = int(State[22]) 3865 StateU = int(State[22])
3872 StateW = int(State[23]) 3866 StateW = int(State[23])
3873 StateA = int(State[24]) 3867 StateA = int(State[24])
3878 StateF = 0 3872 StateF = 0
3879 StateG = 0 3873 StateG = 0
3880 StateH = 0 3874 StateH = 0
3881 StateI = 0 3875 StateI = 0
3882 StateJ = 0 3876 StateJ = 0
3883 BF3() 3877 C_BF3()
3884 StateW = 0 3878 StateW = 0
3885 StateA = 0 3879 StateA = 0
3886 StateB = 0 3880 StateB = 0
3887 StateC = 0 3881 StateC = 0
3888 StateD = 0 3882 StateD = 0
3890 StateF = 0 3884 StateF = 0
3891 StateG = 0 3885 StateG = 0
3892 StateH = 0 3886 StateH = 0
3893 StateI = 0 3887 StateI = 0
3894 StateJ = 0 3888 StateJ = 0
3895 BF4() 3889 C_BF4()
3896 BF5() 3890 C_BF5()
3897 BF6() 3891 C_BF6()
3898 BF7() 3892 C_BF7()
3899 BF8() 3893 C_BF8()
3900 BF9() 3894 C_BF9()
3901 BF10() 3895 C_BF10()
3902 BF11() 3896 C_BF11()
3903 sys.exit(SpliceX + " unable to find password") 3897 sys.exit(SpliceX + " unable to find password")
3904 elif StateCount == 26 and RestoreSwitch is True and StdoutSwitch is False: 3898 elif StateCount == 26 and RestoreSwitch is True and StdoutSwitch is False:
3905 StateU = int(State[22]) 3899 StateU = int(State[22])
3906 StateW = int(State[23]) 3900 StateW = int(State[23])
3907 StateA = int(State[24]) 3901 StateA = int(State[24])
3912 StateF = 0 3906 StateF = 0
3913 StateG = 0 3907 StateG = 0
3914 StateH = 0 3908 StateH = 0
3915 StateI = 0 3909 StateI = 0
3916 StateJ = 0 3910 StateJ = 0
3917 BF4() 3911 C_BF4()
3918 StateW = 0 3912 StateW = 0
3919 StateA = 0 3913 StateA = 0
3920 StateB = 0 3914 StateB = 0
3921 StateC = 0 3915 StateC = 0
3922 StateD = 0 3916 StateD = 0
3924 StateF = 0 3918 StateF = 0
3925 StateG = 0 3919 StateG = 0
3926 StateH = 0 3920 StateH = 0
3927 StateI = 0 3921 StateI = 0
3928 StateJ = 0 3922 StateJ = 0
3929 BF5() 3923 C_BF5()
3930 BF6() 3924 C_BF6()
3931 BF7() 3925 C_BF7()
3932 BF8() 3926 C_BF8()
3933 BF9() 3927 C_BF9()
3934 BF10() 3928 C_BF10()
3935 BF11() 3929 C_BF11()
3936 sys.exit(SpliceX + " unable to find password") 3930 sys.exit(SpliceX + " unable to find password")
3937 elif StateCount == 27 and RestoreSwitch is True and StdoutSwitch is False: 3931 elif StateCount == 27 and RestoreSwitch is True and StdoutSwitch is False:
3938 StateU = int(State[22]) 3932 StateU = int(State[22])
3939 StateW = int(State[23]) 3933 StateW = int(State[23])
3940 StateA = int(State[24]) 3934 StateA = int(State[24])
3945 StateF = 0 3939 StateF = 0
3946 StateG = 0 3940 StateG = 0
3947 StateH = 0 3941 StateH = 0
3948 StateI = 0 3942 StateI = 0
3949 StateJ = 0 3943 StateJ = 0
3950 BF5() 3944 C_BF5()
3951 StateW = 0 3945 StateW = 0
3952 StateA = 0 3946 StateA = 0
3953 StateB = 0 3947 StateB = 0
3954 StateC = 0 3948 StateC = 0
3955 StateD = 0 3949 StateD = 0
3957 StateF = 0 3951 StateF = 0
3958 StateG = 0 3952 StateG = 0
3959 StateH = 0 3953 StateH = 0
3960 StateI = 0 3954 StateI = 0
3961 StateJ = 0 3955 StateJ = 0
3962 BF6() 3956 C_BF6()
3963 BF7() 3957 C_BF7()
3964 BF8() 3958 C_BF8()
3965 BF9() 3959 C_BF9()
3966 BF10() 3960 C_BF10()
3967 BF11() 3961 C_BF11()
3968 sys.exit(SpliceX + " unable to find password") 3962 sys.exit(SpliceX + " unable to find password")
3969 elif StateCount == 28 and RestoreSwitch is True and StdoutSwitch is False: 3963 elif StateCount == 28 and RestoreSwitch is True and StdoutSwitch is False:
3970 StateU = int(State[22]) 3964 StateU = int(State[22])
3971 StateW = int(State[23]) 3965 StateW = int(State[23])
3972 StateA = int(State[24]) 3966 StateA = int(State[24])
3977 StateF = 0 3971 StateF = 0
3978 StateG = 0 3972 StateG = 0
3979 StateH = 0 3973 StateH = 0
3980 StateI = 0 3974 StateI = 0
3981 StateJ = 0 3975 StateJ = 0
3982 BF6() 3976 C_BF6()
3983 StateW = 0 3977 StateW = 0
3984 StateA = 0 3978 StateA = 0
3985 StateB = 0 3979 StateB = 0
3986 StateC = 0 3980 StateC = 0
3987 StateD = 0 3981 StateD = 0
3989 StateF = 0 3983 StateF = 0
3990 StateG = 0 3984 StateG = 0
3991 StateH = 0 3985 StateH = 0
3992 StateI = 0 3986 StateI = 0
3993 StateJ = 0 3987 StateJ = 0
3994 BF7() 3988 C_BF7()
3995 BF8() 3989 C_BF8()
3996 BF9() 3990 C_BF9()
3997 BF10() 3991 C_BF10()
3998 BF11() 3992 C_BF11()
3999 sys.exit(SpliceX + " unable to find password") 3993 sys.exit(SpliceX + " unable to find password")
4000 elif StateCount == 29 and RestoreSwitch is True and StdoutSwitch is False: 3994 elif StateCount == 29 and RestoreSwitch is True and StdoutSwitch is False:
4001 StateU = int(State[22]) 3995 StateU = int(State[22])
4002 StateW = int(State[23]) 3996 StateW = int(State[23])
4003 StateA = int(State[24]) 3997 StateA = int(State[24])
4008 StateF = int(State[29]) 4002 StateF = int(State[29])
4009 StateG = 0 4003 StateG = 0
4010 StateH = 0 4004 StateH = 0
4011 StateI = 0 4005 StateI = 0
4012 StateJ = 0 4006 StateJ = 0
4013 BF7() 4007 C_BF7()
4014 StateW = 0 4008 StateW = 0
4015 StateA = 0 4009 StateA = 0
4016 StateB = 0 4010 StateB = 0
4017 StateC = 0 4011 StateC = 0
4018 StateD = 0 4012 StateD = 0
4020 StateF = 0 4014 StateF = 0
4021 StateG = 0 4015 StateG = 0
4022 StateH = 0 4016 StateH = 0
4023 StateI = 0 4017 StateI = 0
4024 StateJ = 0 4018 StateJ = 0
4025 BF8() 4019 C_BF8()
4026 BF9() 4020 C_BF9()
4027 BF10() 4021 C_BF10()
4028 BF11() 4022 C_BF11()
4029 sys.exit(SpliceX + " unable to find password") 4023 sys.exit(SpliceX + " unable to find password")
4030 elif StateCount == 30 and RestoreSwitch is True and StdoutSwitch is False: 4024 elif StateCount == 30 and RestoreSwitch is True and StdoutSwitch is False:
4031 StateU = int(State[22]) 4025 StateU = int(State[22])
4032 StateW = int(State[23]) 4026 StateW = int(State[23])
4033 StateA = int(State[24]) 4027 StateA = int(State[24])
4038 StateF = int(State[29]) 4032 StateF = int(State[29])
4039 StateG = int(State[30]) 4033 StateG = int(State[30])
4040 StateH = 0 4034 StateH = 0
4041 StateI = 0 4035 StateI = 0
4042 StateJ = 0 4036 StateJ = 0
4043 BF8() 4037 C_BF8()
4044 StateW = 0 4038 StateW = 0
4045 StateA = 0 4039 StateA = 0
4046 StateB = 0 4040 StateB = 0
4047 StateC = 0 4041 StateC = 0
4048 StateD = 0 4042 StateD = 0
4050 StateF = 0 4044 StateF = 0
4051 StateG = 0 4045 StateG = 0
4052 StateH = 0 4046 StateH = 0
4053 StateI = 0 4047 StateI = 0
4054 StateJ = 0 4048 StateJ = 0
4055 BF9() 4049 C_BF9()
4056 BF10() 4050 C_BF10()
4057 BF11() 4051 C_BF11()
4058 sys.exit(SpliceX + " unable to find password") 4052 sys.exit(SpliceX + " unable to find password")
4059 elif StateCount == 30 and RestoreSwitch is True and StdoutSwitch is False: 4053 elif StateCount == 30 and RestoreSwitch is True and StdoutSwitch is False:
4060 StateU = int(State[22]) 4054 StateU = int(State[22])
4061 StateW = int(State[23]) 4055 StateW = int(State[23])
4062 StateA = int(State[24]) 4056 StateA = int(State[24])
4067 StateF = int(State[29]) 4061 StateF = int(State[29])
4068 StateG = int(State[30]) 4062 StateG = int(State[30])
4069 StateH = int(State[31]) 4063 StateH = int(State[31])
4070 StateI = 0 4064 StateI = 0
4071 StateJ = 0 4065 StateJ = 0
4072 BF9() 4066 C_BF9()
4073 StateW = 0 4067 StateW = 0
4074 StateA = 0 4068 StateA = 0
4075 StateB = 0 4069 StateB = 0
4076 StateC = 0 4070 StateC = 0
4077 StateD = 0 4071 StateD = 0
4079 StateF = 0 4073 StateF = 0
4080 StateG = 0 4074 StateG = 0
4081 StateH = 0 4075 StateH = 0
4082 StateI = 0 4076 StateI = 0
4083 StateJ = 0 4077 StateJ = 0
4084 BF10() 4078 C_BF10()
4085 BF11() 4079 C_BF11()
4086 sys.exit(SpliceX + " unable to find password") 4080 sys.exit(SpliceX + " unable to find password")
4087 elif StateCount == 32 and RestoreSwitch is True and StdoutSwitch is False: 4081 elif StateCount == 32 and RestoreSwitch is True and StdoutSwitch is False:
4088 StateU = int(State[22]) 4082 StateU = int(State[22])
4089 StateW = int(State[23]) 4083 StateW = int(State[23])
4090 StateA = int(State[24]) 4084 StateA = int(State[24])
4095 StateF = int(State[29]) 4089 StateF = int(State[29])
4096 StateG = int(State[30]) 4090 StateG = int(State[30])
4097 StateH = int(State[31]) 4091 StateH = int(State[31])
4098 StateI = int(State[32]) 4092 StateI = int(State[32])
4099 StateJ = 0 4093 StateJ = 0
4100 BF10() 4094 C_BF10()
4101 StateW = 0 4095 StateW = 0
4102 StateA = 0 4096 StateA = 0
4103 StateB = 0 4097 StateB = 0
4104 StateC = 0 4098 StateC = 0
4105 StateD = 0 4099 StateD = 0
4107 StateF = 0 4101 StateF = 0
4108 StateG = 0 4102 StateG = 0
4109 StateH = 0 4103 StateH = 0
4110 StateI = 0 4104 StateI = 0
4111 StateJ = 0 4105 StateJ = 0
4112 BF11() 4106 C_BF11()
4113 sys.exit(SpliceX + " unable to find password") 4107 sys.exit(SpliceX + " unable to find password")
4114 elif StateCount == 33 and RestoreSwitch is True and StdoutSwitch is False: 4108 elif StateCount == 33 and RestoreSwitch is True and StdoutSwitch is False:
4115 StateU = int(State[22]) 4109 StateU = int(State[22])
4116 StateW = int(State[23]) 4110 StateW = int(State[23])
4117 StateA = int(State[24]) 4111 StateA = int(State[24])
4122 StateF = int(State[29]) 4116 StateF = int(State[29])
4123 StateG = int(State[30]) 4117 StateG = int(State[30])
4124 StateH = int(State[31]) 4118 StateH = int(State[31])
4125 StateI = int(State[32]) 4119 StateI = int(State[32])
4126 StateJ = int(State[33]) 4120 StateJ = int(State[33])
4127 BF11() 4121 C_BF11()
4128 sys.exit(SpliceX + " unable to find password") 4122 sys.exit(SpliceX + " unable to find password")
4129 4123
4130 if RestoreSwitch is False and StdoutSwitch is True: 4124 if RestoreSwitch is False and StdoutSwitch is True:
4131 StateU = 0 4125 StateU = 0
4132 StateW = 0 4126 StateW = 0
4138 StateF = 0 4132 StateF = 0
4139 StateG = 0 4133 StateG = 0
4140 StateH = 0 4134 StateH = 0
4141 StateI = 0 4135 StateI = 0
4142 StateJ = 0 4136 StateJ = 0
4143 SBF1() 4137 C_SBF1()
4144 SBF2() 4138 C_SBF2()
4145 SBF3() 4139 C_SBF3()
4146 SBF4() 4140 C_SBF4()
4147 SBF5() 4141 C_SBF5()
4148 SBF6() 4142 C_SBF6()
4149 SBF7() 4143 C_SBF7()
4150 SBF8() 4144 C_SBF8()
4151 SBF9() 4145 C_SBF9()
4152 SBF10() 4146 C_SBF10()
4153 SBF11() 4147 C_SBF11()
4154 sys.exit(0) 4148 sys.exit(0)
4155 4149
4156 if StateCount == 22 and RestoreSwitch is True and StdoutSwitch is True: 4150 if StateCount == 22 and RestoreSwitch is True and StdoutSwitch is True:
4157 StateU = int(State[22]) 4151 StateU = int(State[22])
4158 StateW = 0 4152 StateW = 0
4164 StateF = 0 4158 StateF = 0
4165 StateG = 0 4159 StateG = 0
4166 StateH = 0 4160 StateH = 0
4167 StateI = 0 4161 StateI = 0
4168 StateJ = 0 4162 StateJ = 0
4169 SBF1() 4163 C_SBF1()
4170 StateW = 0 4164 StateW = 0
4171 StateA = 0 4165 StateA = 0
4172 StateB = 0 4166 StateB = 0
4173 StateC = 0 4167 StateC = 0
4174 StateD = 0 4168 StateD = 0
4176 StateF = 0 4170 StateF = 0
4177 StateG = 0 4171 StateG = 0
4178 StateH = 0 4172 StateH = 0
4179 StateI = 0 4173 StateI = 0
4180 StateJ = 0 4174 StateJ = 0
4181 SBF2() 4175 C_SBF2()
4182 SBF3() 4176 C_SBF3()
4183 SBF4() 4177 C_SBF4()
4184 SBF5() 4178 C_SBF5()
4185 SBF6() 4179 C_SBF6()
4186 SBF7() 4180 C_SBF7()
4187 SBF8() 4181 C_SBF8()
4188 SBF9() 4182 C_SBF9()
4189 SBF10() 4183 C_SBF10()
4190 SBF11() 4184 C_SBF11()
4191 sys.exit(0) 4185 sys.exit(0)
4192 if StateCount == 23 and RestoreSwitch is True and StdoutSwitch is True: 4186 if StateCount == 23 and RestoreSwitch is True and StdoutSwitch is True:
4193 StateU = int(State[22]) 4187 StateU = int(State[22])
4194 StateW = int(State[23]) 4188 StateW = int(State[23])
4195 StateA = 0 4189 StateA = 0
4200 StateF = 0 4194 StateF = 0
4201 StateG = 0 4195 StateG = 0
4202 StateH = 0 4196 StateH = 0
4203 StateI = 0 4197 StateI = 0
4204 StateJ = 0 4198 StateJ = 0
4205 SBF1() 4199 C_SBF1()
4206 StateW = 0 4200 StateW = 0
4207 StateA = 0 4201 StateA = 0
4208 StateB = 0 4202 StateB = 0
4209 StateC = 0 4203 StateC = 0
4210 StateD = 0 4204 StateD = 0
4212 StateF = 0 4206 StateF = 0
4213 StateG = 0 4207 StateG = 0
4214 StateH = 0 4208 StateH = 0
4215 StateI = 0 4209 StateI = 0
4216 StateJ = 0 4210 StateJ = 0
4217 SBF2() 4211 C_SBF2()
4218 SBF3() 4212 C_SBF3()
4219 SBF4() 4213 C_SBF4()
4220 SBF5() 4214 C_SBF5()
4221 SBF6() 4215 C_SBF6()
4222 SBF7() 4216 C_SBF7()
4223 SBF8() 4217 C_SBF8()
4224 SBF9() 4218 C_SBF9()
4225 SBF10() 4219 C_SBF10()
4226 SBF11() 4220 C_SBF11()
4227 sys.exit(0) 4221 sys.exit(0)
4228 elif StateCount == 24 and RestoreSwitch is True and StdoutSwitch is True: 4222 elif StateCount == 24 and RestoreSwitch is True and StdoutSwitch is True:
4229 StateU = int(State[22]) 4223 StateU = int(State[22])
4230 StateW = int(State[23]) 4224 StateW = int(State[23])
4231 StateA = int(State[24]) 4225 StateA = int(State[24])
4236 StateF = 0 4230 StateF = 0
4237 StateG = 0 4231 StateG = 0
4238 StateH = 0 4232 StateH = 0
4239 StateI = 0 4233 StateI = 0
4240 StateJ = 0 4234 StateJ = 0
4241 SBF2() 4235 C_SBF2()
4242 StateW = 0 4236 StateW = 0
4243 StateA = 0 4237 StateA = 0
4244 StateB = 0 4238 StateB = 0
4245 StateC = 0 4239 StateC = 0
4246 StateD = 0 4240 StateD = 0
4248 StateF = 0 4242 StateF = 0
4249 StateG = 0 4243 StateG = 0
4250 StateH = 0 4244 StateH = 0
4251 StateI = 0 4245 StateI = 0
4252 StateJ = 0 4246 StateJ = 0
4253 SBF3() 4247 C_SBF3()
4254 SBF4() 4248 C_SBF4()
4255 SBF5() 4249 C_SBF5()
4256 SBF6() 4250 C_SBF6()
4257 SBF7() 4251 C_SBF7()
4258 SBF8() 4252 C_SBF8()
4259 SBF9() 4253 C_SBF9()
4260 SBF10() 4254 C_SBF10()
4261 SBF11() 4255 C_SBF11()
4262 sys.exit(0) 4256 sys.exit(0)
4263 elif StateCount == 25 and RestoreSwitch is True and StdoutSwitch is True: 4257 elif StateCount == 25 and RestoreSwitch is True and StdoutSwitch is True:
4264 StateU = int(State[22]) 4258 StateU = int(State[22])
4265 StateW = int(State[23]) 4259 StateW = int(State[23])
4266 StateA = int(State[24]) 4260 StateA = int(State[24])
4271 StateF = 0 4265 StateF = 0
4272 StateG = 0 4266 StateG = 0
4273 StateH = 0 4267 StateH = 0
4274 StateI = 0 4268 StateI = 0
4275 StateJ = 0 4269 StateJ = 0
4276 SBF3() 4270 C_SBF3()
4277 StateW = 0 4271 StateW = 0
4278 StateA = 0 4272 StateA = 0
4279 StateB = 0 4273 StateB = 0
4280 StateC = 0 4274 StateC = 0
4281 StateD = 0 4275 StateD = 0
4283 StateF = 0 4277 StateF = 0
4284 StateG = 0 4278 StateG = 0
4285 StateH = 0 4279 StateH = 0
4286 StateI = 0 4280 StateI = 0
4287 StateJ = 0 4281 StateJ = 0
4288 SBF4() 4282 C_SBF4()
4289 SBF5() 4283 C_SBF5()
4290 SBF6() 4284 C_SBF6()
4291 SBF7() 4285 C_SBF7()
4292 SBF8() 4286 C_SBF8()
4293 SBF9() 4287 C_SBF9()
4294 SBF10() 4288 C_SBF10()
4295 SBF11() 4289 C_SBF11()
4296 sys.exit(0) 4290 sys.exit(0)
4297 elif StateCount == 25 and RestoreSwitch is True and StdoutSwitch is True: 4291 elif StateCount == 25 and RestoreSwitch is True and StdoutSwitch is True:
4298 StateU = int(State[22]) 4292 StateU = int(State[22])
4299 StateW = int(State[23]) 4293 StateW = int(State[23])
4300 StateA = int(State[24]) 4294 StateA = int(State[24])
4305 StateF = 0 4299 StateF = 0
4306 StateG = 0 4300 StateG = 0
4307 StateH = 0 4301 StateH = 0
4308 StateI = 0 4302 StateI = 0
4309 StateJ = 0 4303 StateJ = 0
4310 SBF4() 4304 C_SBF4()
4311 StateW = 0 4305 StateW = 0
4312 StateA = 0 4306 StateA = 0
4313 StateB = 0 4307 StateB = 0
4314 StateC = 0 4308 StateC = 0
4315 StateD = 0 4309 StateD = 0
4317 StateF = 0 4311 StateF = 0
4318 StateG = 0 4312 StateG = 0
4319 StateH = 0 4313 StateH = 0
4320 StateI = 0 4314 StateI = 0
4321 StateJ = 0 4315 StateJ = 0
4322 SBF5() 4316 C_SBF5()
4323 SBF6() 4317 C_SBF6()
4324 SBF7() 4318 C_SBF7()
4325 SBF8() 4319 C_SBF8()
4326 SBF9() 4320 C_SBF9()
4327 SBF10() 4321 C_SBF10()
4328 SBF11() 4322 C_SBF11()
4329 sys.exit(0) 4323 sys.exit(0)
4330 elif StateCount == 27 and RestoreSwitch is True and StdoutSwitch is True: 4324 elif StateCount == 27 and RestoreSwitch is True and StdoutSwitch is True:
4331 StateU = int(State[22]) 4325 StateU = int(State[22])
4332 StateW = int(State[23]) 4326 StateW = int(State[23])
4333 StateA = int(State[24]) 4327 StateA = int(State[24])
4338 StateF = 0 4332 StateF = 0
4339 StateG = 0 4333 StateG = 0
4340 StateH = 0 4334 StateH = 0
4341 StateI = 0 4335 StateI = 0
4342 StateJ = 0 4336 StateJ = 0
4343 SBF5() 4337 C_SBF5()
4344 StateW = 0 4338 StateW = 0
4345 StateA = 0 4339 StateA = 0
4346 StateB = 0 4340 StateB = 0
4347 StateC = 0 4341 StateC = 0
4348 StateD = 0 4342 StateD = 0
4350 StateF = 0 4344 StateF = 0
4351 StateG = 0 4345 StateG = 0
4352 StateH = 0 4346 StateH = 0
4353 StateI = 0 4347 StateI = 0
4354 StateJ = 0 4348 StateJ = 0
4355 SBF6() 4349 C_SBF6()
4356 SBF7() 4350 C_SBF7()
4357 SBF8() 4351 C_SBF8()
4358 SBF9() 4352 C_SBF9()
4359 SBF10() 4353 C_SBF10()
4360 SBF11() 4354 C_SBF11()
4361 sys.exit(0) 4355 sys.exit(0)
4362 elif StateCount == 28 and RestoreSwitch is True and StdoutSwitch is True: 4356 elif StateCount == 28 and RestoreSwitch is True and StdoutSwitch is True:
4363 StateU = int(State[22]) 4357 StateU = int(State[22])
4364 StateW = int(State[23]) 4358 StateW = int(State[23])
4365 StateA = int(State[24]) 4359 StateA = int(State[24])
4370 StateF = 0 4364 StateF = 0
4371 StateG = 0 4365 StateG = 0
4372 StateH = 0 4366 StateH = 0
4373 StateI = 0 4367 StateI = 0
4374 StateJ = 0 4368 StateJ = 0
4375 SBF6() 4369 C_SBF6()
4376 StateW = 0 4370 StateW = 0
4377 StateA = 0 4371 StateA = 0
4378 StateB = 0 4372 StateB = 0
4379 StateC = 0 4373 StateC = 0
4380 StateD = 0 4374 StateD = 0
4382 StateF = 0 4376 StateF = 0
4383 StateG = 0 4377 StateG = 0
4384 StateH = 0 4378 StateH = 0
4385 StateI = 0 4379 StateI = 0
4386 StateJ = 0 4380 StateJ = 0
4387 SBF7() 4381 C_SBF7()
4388 SBF8() 4382 C_SBF8()
4389 SBF9() 4383 C_SBF9()
4390 SBF10() 4384 C_SBF10()
4391 SBF11() 4385 C_SBF11()
4392 sys.exit(0) 4386 sys.exit(0)
4393 elif StateCount == 29 and RestoreSwitch is True and StdoutSwitch is True: 4387 elif StateCount == 29 and RestoreSwitch is True and StdoutSwitch is True:
4394 StateU = int(State[22]) 4388 StateU = int(State[22])
4395 StateW = int(State[23]) 4389 StateW = int(State[23])
4396 StateA = int(State[24]) 4390 StateA = int(State[24])
4401 StateF = int(State[29]) 4395 StateF = int(State[29])
4402 StateG = 0 4396 StateG = 0
4403 StateH = 0 4397 StateH = 0
4404 StateI = 0 4398 StateI = 0
4405 StateJ = 0 4399 StateJ = 0
4406 SBF7() 4400 C_SBF7()
4407 StateW = 0 4401 StateW = 0
4408 StateA = 0 4402 StateA = 0
4409 StateB = 0 4403 StateB = 0
4410 StateC = 0 4404 StateC = 0
4411 StateD = 0 4405 StateD = 0
4413 StateF = 0 4407 StateF = 0
4414 StateG = 0 4408 StateG = 0
4415 StateH = 0 4409 StateH = 0
4416 StateI = 0 4410 StateI = 0
4417 StateJ = 0 4411 StateJ = 0
4418 SBF8() 4412 C_SBF8()
4419 SBF9() 4413 C_SBF9()
4420 SBF10() 4414 C_SBF10()
4421 SBF11() 4415 C_SBF11()
4422 sys.exit(0) 4416 sys.exit(0)
4423 elif StateCount == 30 and RestoreSwitch is True and StdoutSwitch is True: 4417 elif StateCount == 30 and RestoreSwitch is True and StdoutSwitch is True:
4424 StateU = int(State[22]) 4418 StateU = int(State[22])
4425 StateW = int(State[23]) 4419 StateW = int(State[23])
4426 StateA = int(State[24]) 4420 StateA = int(State[24])
4431 StateF = int(State[29]) 4425 StateF = int(State[29])
4432 StateG = int(State[30]) 4426 StateG = int(State[30])
4433 StateH = 0 4427 StateH = 0
4434 StateI = 0 4428 StateI = 0
4435 StateJ = 0 4429 StateJ = 0
4436 SBF8() 4430 C_SBF8()
4437 StateW = 0 4431 StateW = 0
4438 StateA = 0 4432 StateA = 0
4439 StateB = 0 4433 StateB = 0
4440 StateC = 0 4434 StateC = 0
4441 StateD = 0 4435 StateD = 0
4443 StateF = 0 4437 StateF = 0
4444 StateG = 0 4438 StateG = 0
4445 StateH = 0 4439 StateH = 0
4446 StateI = 0 4440 StateI = 0
4447 StateJ = 0 4441 StateJ = 0
4448 SBF9() 4442 C_SBF9()
4449 SBF10() 4443 C_SBF10()
4450 SBF11() 4444 C_SBF11()
4451 sys.exit(0) 4445 sys.exit(0)
4452 elif StateCount == 31 and RestoreSwitch is True and StdoutSwitch is True: 4446 elif StateCount == 31 and RestoreSwitch is True and StdoutSwitch is True:
4453 StateU = int(State[22]) 4447 StateU = int(State[22])
4454 StateW = int(State[23]) 4448 StateW = int(State[23])
4455 StateA = int(State[24]) 4449 StateA = int(State[24])
4460 StateF = int(State[29]) 4454 StateF = int(State[29])
4461 StateG = int(State[30]) 4455 StateG = int(State[30])
4462 StateH = int(State[31]) 4456 StateH = int(State[31])
4463 StateI = 0 4457 StateI = 0
4464 StateJ = 0 4458 StateJ = 0
4465 SBF9() 4459 C_SBF9()
4466 StateW = 0 4460 StateW = 0
4467 StateA = 0 4461 StateA = 0
4468 StateB = 0 4462 StateB = 0
4469 StateC = 0 4463 StateC = 0
4470 StateD = 0 4464 StateD = 0
4472 StateF = 0 4466 StateF = 0
4473 StateG = 0 4467 StateG = 0
4474 StateH = 0 4468 StateH = 0
4475 StateI = 0 4469 StateI = 0
4476 StateJ = 0 4470 StateJ = 0
4477 SBF10() 4471 C_SBF10()
4478 SBF11() 4472 C_SBF11()
4479 sys.exit(0) 4473 sys.exit(0)
4480 elif StateCount == 32 and RestoreSwitch is True and StdoutSwitch is True: 4474 elif StateCount == 32 and RestoreSwitch is True and StdoutSwitch is True:
4481 StateU = int(State[22]) 4475 StateU = int(State[22])
4482 StateW = int(State[23]) 4476 StateW = int(State[23])
4483 StateA = int(State[24]) 4477 StateA = int(State[24])
4488 StateF = int(State[29]) 4482 StateF = int(State[29])
4489 StateG = int(State[30]) 4483 StateG = int(State[30])
4490 StateH = int(State[31]) 4484 StateH = int(State[31])
4491 StateI = int(State[32]) 4485 StateI = int(State[32])
4492 StateJ = 0 4486 StateJ = 0
4493 SBF10() 4487 C_SBF10()
4494 StateW = 0 4488 StateW = 0
4495 StateA = 0 4489 StateA = 0
4496 StateB = 0 4490 StateB = 0
4497 StateC = 0 4491 StateC = 0
4498 StateD = 0 4492 StateD = 0
4500 StateF = 0 4494 StateF = 0
4501 StateG = 0 4495 StateG = 0
4502 StateH = 0 4496 StateH = 0
4503 StateI = 0 4497 StateI = 0
4504 StateJ = 0 4498 StateJ = 0
4505 SBF11() 4499 C_SBF11()
4506 sys.exit(0) 4500 sys.exit(0)
4507 elif StateCount == 33 and RestoreSwitch is True and StdoutSwitch is True: 4501 elif StateCount == 33 and RestoreSwitch is True and StdoutSwitch is True:
4508 StateU = int(State[22]) 4502 StateU = int(State[22])
4509 StateW = int(State[23]) 4503 StateW = int(State[23])
4510 StateA = int(State[24]) 4504 StateA = int(State[24])
4515 StateF = int(State[29]) 4509 StateF = int(State[29])
4516 StateG = int(State[30]) 4510 StateG = int(State[30])
4517 StateH = int(State[31]) 4511 StateH = int(State[31])
4518 StateI = int(State[32]) 4512 StateI = int(State[32])
4519 StateJ = int(State[33]) 4513 StateJ = int(State[33])
4520 SBF11() 4514 C_SBF11()
4521 sys.exit(0) 4515 sys.exit(0)
4522 4516
4523 sys.exit(SpliceX + " unknown error: please report bug to author") 4517 sys.exit(SpliceX + " unknown error: please report bug to author")