Top-rated recipes tagged "bruteforce"http://code.activestate.com/recipes/tags/bruteforce/top/2013-06-03T17:54:16-07:00ActiveState Code RecipesBrute Force Break Caesar Cipher in Python (Python) 2013-06-03T17:54:16-07:00Captain DeadBoneshttp://code.activestate.com/recipes/users/4184772/http://code.activestate.com/recipes/578546-brute-force-break-caesar-cipher-in-python/ <p style="color: grey"> Python recipe 578546 by <a href="/recipes/users/4184772/">Captain DeadBones</a> (<a href="/recipes/tags/bruteforce/">bruteforce</a>, <a href="/recipes/tags/cipher/">cipher</a>, <a href="/recipes/tags/decryption/">decryption</a>, <a href="/recipes/tags/python/">python</a>). </p> <p>This script was written for an article I wrote it generates all the combinations possible for brute force breaking a Caesar Cipher. For more information <a href="http://thelivingpearl.com/2013/06/03/caesar-ciphers-in-python/">Caesar Ciphers In Python</a></p> Next Lexographic Word (Java) 2010-07-18T11:33:38-07:00st0lehttp://code.activestate.com/recipes/users/4174421/http://code.activestate.com/recipes/577315-next-lexographic-word/ <p style="color: grey"> Java recipe 577315 by <a href="/recipes/users/4174421/">st0le</a> (<a href="/recipes/tags/bruteforce/">bruteforce</a>, <a href="/recipes/tags/java/">java</a>, <a href="/recipes/tags/password/">password</a>). </p> <p>Generates next lexographically occuring word, say "aaa" -> "aab" -> "aac"</p> <p>Can be used for password cracking....</p>