Advertisement
Guest User

Untitled

a guest
May 14th, 2018
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. def number_to_string(x):
  2.     return hex(x)[2:].decode('hex')[::-1]
  3.  
  4. def get1():
  5.     x = 0x12345678^0x69790439
  6.     return x
  7.  
  8. def get2(first):
  9.     return 0xC2819E87-first
  10.  
  11. def get3(second):
  12.     sub = 0xe91e0419+second
  13.     return (sub + (1 << 32)) % (1 << 32)
  14.  
  15. def get4(third):
  16.     sub = third-0xDD1F1D1C
  17.     return (sub + (1 << 32)) % (1 << 32)
  18.  
  19.  
  20. def get5(fourth):
  21.     return 0xD07A8174-fourth
  22.  
  23. first = get1()          #ARM{
  24. second = get2(first)    #FL4G
  25. third = get3(second)    #_PR0
  26. fourth = get4(third)    #C33S
  27. fifth = get5(fourth)
  28.  
  29. print number_to_string(first)+number_to_string(second)+number_to_string(third)+number_to_string(fourth)+number_to_string(fifth)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement