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
    
  
  
    
  | # CrackMe KeyGen for https://crackmes.one/crackme/61bbee6833c5d413767c9f20 - Nick Blundell, Feb 2022 | |
| import sys | |
| class KeyGen(object): | |
| def __init__(self): | |
| pass | |
| def generate_serial_code(self, username): | 
  
    
      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
    
  
  
    
  | # Decoder for crackme cm002, Nick Blundell, Jan 2022 | |
| # https://crackmes.one/crackme/61a0f51433c5d413767c9bd6 | |
| from ghidra.app.emulator import EmulatorHelper | |
| from ghidra.program.model.symbol import SymbolUtilities | |
| # Config | |
| VERBOSE = True | |
| UPDATE_MEMORY = True |