Installation of kali Linux reverse environment pyenv, Frida, objection, jadx,

Directory 1.pyenv installation and use 1.1 Introduction to pyenv 1.2 pyenv common commands 1.3pyenv installation and use 2. Frida installation 2.1 Introduction to Fraida 2.1 Fraida installation 2.2objection installation 2.3 objection commonly used commands view log View log information containing Frida View the help command of objection 2.3.0 Enter objection REPL environment 2.3.1 Start the […]

Under Ubuntu18.04 environment, pyenv fails to install python3.8.8, prompting missing bzip2, ncurses, libffi, OpenSSL library, solution

After installing pyenv, start installing python3.8.8 Excuting an order: pyenv install 3.8.8 An error message appears root@server_1:~/.pyenv/cache# pyenv install 3.8.8 Installing Python-3.8.8… patching file Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst patching file configure patching file configure.ac BUILD FAILED (Ubuntu 18.04 using python-build 20180424) Inspect or clean up the working tree at /tmp/python-build.20230410085928.21090 Results logged to /tmp/python-build.20230410085928.21090.log Last 10 log lines: […]

[Solved] pyenv fails with : ModuleNotFoundError: No module named ‘_ctypes’ error

After installing 3.9.7 with pyenv, during use This problem was encountered when installing psycopg2. Re-execution found no effect. System python3 import without error The python3.9.7 installed by pyenv reports an error After checking the information, you need to install libffi-dev. The ubuntu installation command is as follows: sudo apt-get install libffi-dev Installation error: Unable to […]

[Solved] pyenv installs the python tool and reports an error: “ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib?”

[Problem phenomenon]: When using pyenv install xxxx to install the python software version, an error is reported: “ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib?” [Root cause]: The reason is that the openssl library cannot be found during installation 【solution】: 1. First, confirm whether the openssl lib library is configured when […]