Advertisement
Guest User

Untitled

a guest
Feb 4th, 2017
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. $> sudo apt-get install python-pyscript
  2. Reading package lists... Done
  3. Building dependency tree
  4. Reading state information... Done
  5. python-pyscript is already the newest version (0.6.1-4).
  6. 0 upgraded, 0 newly installed, 0 to remove and 151 not upgraded.
  7.  
  8. $> pip install pyscript
  9. Requirement already satisfied: pyscript in /usr/lib/python2.7/dist-packages
  10.  
  11. $> python shellcode_encoder.py
  12. Traceback (most recent call last):
  13. File "shellcode_encoder.py", line 10, in <module>
  14. import pyscrypt
  15. ImportError: No module named pyscrypt
  16.  
  17. &> more shellcode_encoder.py
  18. import argparse
  19. from Crypto.Hash import MD5
  20. from Crypto.Cipher import AES
  21. import pyscrypt
  22. from base64 import b64encode
  23. from os import urandom
  24. from string import Template
  25. import os
  26. ...
  27.  
  28. $> uname -a
  29. Linux [REDACTED] 4.7.0-1-amd64 #1 SMP Debian 4.7.8-1 (2016-10-19) x86_64 GNU/Linux
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement