Virtual Environment

Making a virtual environment prevents conflicts with the original system's software and is especially useful for installing or testing exploits.

Steps to Create and Use a Virtual Environment:

Create the Virtual Environment:

virtualenv temp_env

Activate the Virtual Environment:

source temp_env/bin/activate

Now you can install the required programs or dependencies within the virtual environment and proceed to run the exploit. This ensures that any changes made are confined to the virtual environment and do not affect the global system configuration.

You can also make Shortcuts in the Zshrc file.

Last updated