This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | To the extent possible under law, @mechanicalnull has waived all copyright and related or neighboring rights to this Binary Ninja Snippets Collection (https://gist.github.com/mechanicalnull/b19c29ce38152b7304c2fad66168badd). This work is published from: United States. | |
| For more information on a CC0 license, see: https://creativecommons.org/publicdomain/zero/1.0/deed.en | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import copy | |
| import time | |
| from typing import List | |
| from hashlib import md5 | |
| sym_string= " .o+=*BOX@%&#/^SE" | |
| #valid_chars = "0123456789abcdefghijklmnopqrstuvwxyz_-}" | |
| valid_chars = "nopqrstuvwxyz0123456789abcdefghijklm_-}" | |
| #valid_chars = "abcdefghijklmnopqrstuvwxyz0123456789_-}" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Test harness for crackaddr from sendmail 8.12.7 by @mechanicalnull | |
| // sendmail license: https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf | |
| #include <string.h> | |
| #include <ctype.h> | |
| #define MAXNAME 256 | |
| typedef int bool; | |
| #define false 0 |