XSStrike causes error when running latest version

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

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

Install & set up mitmweb or mitmproxy in Linux

Day 31: Climbing Stairs : leetcode: python3

Day 30: Sliding Window Maximum: Sliding Window - leetcode - Python3