From 6ac54912a1f8fd6878e7105574b33011a6e745f5 Mon Sep 17 00:00:00 2001 From: Tib3rius <48113936+Tib3rius@users.noreply.github.com> Date: Mon, 12 Aug 2019 16:46:53 -0400 Subject: [PATCH] Added pip3 installation steps which avoid OSCP VM crashes. Fixes #19 --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 86f1958..56dbb1e 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,15 @@ Once Python 3 is installed, pip3 can be used to install the other requirements: $ pip3 install -r requirements.txt ``` +Several people have indicated that installing pip3 via apt on the OSCP Kali version makes the host unstable. In these cases, pip3 can be installed by running the following commands: + +```bash +$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py +$ python3 get-pip.py +``` + +The "pip3" command should now be usable. + Several commands used in AutoRecon reference the SecLists project, in the directory /usr/share/seclists/. You can either manually download the SecLists project to this directory (https://github.com/danielmiessler/SecLists), or if you are using Kali Linux (**highly recommended**) you can run the following: ```bash