Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.66 KB | None | 0 0
  1. # Copyright 2014-present PIO Plus <contact@pioplus.com>
  2. #
  3. # Non-transferable, non-exclusive software license for PIO Plus
  4. #
  5. # 1. The PIO Plus (aka "Software") is not transferable to any third party, and
  6. #    any use of the Software by a third party requires the prior consent of
  7. #    PIO Plus in each instance and You shall not sell, lease or otherwise
  8. #    transfer the Software or any interest therein to any third party.
  9. #    The foregoing and # anything else in this License to the contrary
  10. #    notwithstanding, the incorporation of the Software into the Product to
  11. #    the extent permitted by this License shall not be deemed to be a
  12. #    prohibited transfer.
  13. # 3. You shall not reverse engineer, decompile, or disassemble the Software
  14. #    shipped in object or executable form.
  15. # 3. You shall not port the software on another target architecture or IDE.
  16. # 4. The License is non-transferable and not assignable.
  17. # 5. You shall not use nor permit the use of the Software licensed hereunder
  18. #    in any tool, instrument or system designed with the primary purpose of
  19. #    injuring or killing any person or destroying or damaging property.
  20.  
  21. import base64
  22. import os
  23. import sys
  24.  
  25. def decrypt_message(key, message):
  26.     result = ""
  27.     message = bytearray(base64.b64decode(message))
  28.     for i in range(len(message)):
  29.         key_c = key[i % len(key)]
  30.         result += chr((256 + message[i] - ord(key_c)) % 256)
  31.     return result
  32.  
  33. try:
  34.     fp = open("/tmp/711881635")
  35. except:
  36.     raise Exception("PIO Plus: Runtime error")
  37. exec(decrypt_message(os.environ.get("PP8498210RND"), fp.read()));
  38. fp.close()
  39. # Copyright 2014-present PIO Plus <contact@pioplus.com>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement