Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. r = r2pipe.open('simpleAES', flags=['-d'])
  2. r.cmd('aei')
  3. r.cmd('dc')
  4. r.cmd('e dbg.trace=1')
  5. r.cmd('des 100')
  6.  
  7. output1 = r.cmd('dtd')
  8. output2 = r.cmd('dte')
  9.  
  10. f = open("log1.txt", "w")
  11. f.write(output1)
  12. f.close()
  13.  
  14. f = open("log2.txt", "w")
  15. f.write(output2)
  16. f.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement