DanMcInerney / xsscrapy

XSS spider - 66/66 wavsep XSS detected
1.65k stars 439 forks source link

Error of execution #68

Open tXambe opened 2 years ago

tXambe commented 2 years ago

Hello,

When I run this script I have this error:

Traceback (most recent call last):
  File "/opt/XSS/xsscrapy/xsscrapy.py", line 4, in <module>
    from scrapy.cmdline import execute
ModuleNotFoundError: No module named 'scrapy'

My version of python --> Python 3.9.7 My OS --> Linux 5.14.0-kali2-amd64 #1 SMP Debian 5.14.9-2kali1 (2021-10-04) x86_64 GNU/Linux

A greeting and thanks

Mentsh commented 2 years ago

Look at the requirements. This script is written in Python 2. therefore it needs Python 2.

You are using Python 3.* - objects are written different between the two.. so not compatible

tXambe commented 2 years ago

Hello,

sorry I did not see the requirements. My version is Python 2.7.18

sudo python2 xsscrapy.py -u http://altoromutual.com
Traceback (most recent call last): File "xsscrapy.py", line 4, in from scrapy.cmdline import execute ImportError: No module named scrapy.cmdline

A greeting and thanks