Hey folks, heres my problem. I want to run a pupy server in a free aws instance for my own research needs but Im having problems getting pupy to run on the latest version.

Basically the requirements (and how it used to work on kali) is:

Code:
apt-get install git libssl1.0-dev libffi-dev python-dev \
 python-pip build-essential python-openssl swig tcpdump
Except now I get this:


root@kali:/home/kali# apt-get install git libssl1.0-dev libffi-dev python-dev python-pip build-essential python-openssl swig tcpdumpReading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python-openssl
I thought perhaps I can get around this by installing python3-openssl, but when I try run the docker version of pupy on the vps it hangs while compiling this bit:

Code:
cc -I/usr/include/python2.7 -I. -I../common -fPIC  -pipe -Wall -DLinux -std=gnu99 "-DOPENSSL_LIB_VERSION=\"1.1\"" -D_FILE_OFFSET_BITS=64 -Iresources/i686 -Iresources -Os   -c -o pupy_load.o pupy_load.c
cc -c -o pupy_load_shared.o pupy_load.c -I/usr/include/python2.7 -I. -I../common -fPIC  -pipe -Wall -DLinux -std=gnu99 "-DOPENSSL_LIB_VERSION=\"1.1\"" -D_FILE_OFFSET_BITS=64 -Iresources/i686 -Iresources -Os
I was using this guide (which is not that dated, and it worked back then) :

https://brakertech.com/howto-install...on-kali-linux/

If anyone has a better guide to get pupy running on a remote aws instance I would really appreciate it.