PACKAGES

there is a recent change in Python package management on systems like Kali Linux. Kali now restricts system-wide installations through pip in order to avoid conflicts with system-managed packages

GITHUB PACKAGE INSTALLATIONS

root@sa:~$ git clone https://github.com/s0md3v/XSStrike.git
root@sa:~$ cd XSStrike
root@sa:~$ python3 -m venv myenv
root@sa:~$ source myenv/bin/activate
root@sa:~$ pip install -r requirements.txt
root@sa:~$ chmod 777 xsstrike.py
root@sa:~$ ./xsstrike.py ...
root@sa:~$ deactivate
 * issue "deactivate" once done

Last updated