XSStrike causes error when running latest version

 Roll back to the older vertion or, consider creating a virtual environment with an older Python version:

curl https://pyenv.run | bash

vim ~/.bashrc

export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"
eval "$(pyenv init -)"

source ~/.bashrc

pyenv install 3.8.10

pyenv virtualenv 3.8.10 xsstrike-env

pyenv activate xsstrike-env


After this you may run into an error: ModuleNotFoundError: No module named 'requests'
Just run this command:
pip install requests

Now the tool will be working just fine.


If it helped consider subscribing to my YouTube channel: https://www.youtube.com/channel/UCR9txckubHGilBvNGvud_dg


I create contents about
bug boundy and reverse engineering.




Comments

Popular posts from this blog

Bug Boundy Methodology, Tools & Resources

Install & set up mitmweb or mitmproxy in Linux

Day 20: Search in Rotated Sorted Array: Binary Search - leetcode - Python3