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
    
  
  
    
  | #!/usr/bin/python | |
| #*-* coding: utf-8 *-* | |
| import sys | |
| reload(sys) | |
| sys.setdefaultencoding('utf-8') | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from scipy import interpolate | |
| plt.style.use('bmh') | 
  
    
      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
    
  
  
    
  | #!/usr/bin/python | |
| #*-* coding: utf-8 *-* | |
| import sys | |
| reload(sys) | |
| sys.setdefaultencoding('utf-8') | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from scipy import interpolate | |
| plt.style.use('bmh') | 
  
    
      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
    
  
  
    
  | #!/usr/bin/python | |
| #*-* coding: utf-8 *-* | |
| import sys | |
| reload(sys) | |
| sys.setdefaultencoding('utf-8') | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from scipy import interpolate | |
| plt.style.use('bmh') | 
  
    
      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
    
  
  
    
  | #!/usr/bin/python | |
| #*-* coding: utf-8 *-* | |
| import sys | |
| reload(sys) | |
| sys.setdefaultencoding('utf-8') | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from scipy import interpolate | 
  
    
      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
    
  
  
    
  | #!/usr/bin/python | |
| """ | |
| RSA-decryption given n, p, q, e, c | |
| """ | |
| from Crypto.Util.number import * | |
  
    
      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 angr | |
| win = 0x400e51 | |
| lose = [0x400702 + i * 50 for i in range(36)] | |
| p = angr.Project('checker') | |
| st = p.factory.full_init_state(args=['./checker']) | |
| def char(state, c): | |
| return state.se.And(c <= '~', c >= ' ') |