You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 11, 2021. It is now read-only.
Hope you're well. Was going to play around with this, but it's not clear what packages the python scripts need nor how to setup domxssscanner.
It would be good to include requirements.txt file so people can use a python virtualenv and install the packages need by domxssscanner with pip install -r requirements.txt. A simple way to generate that would be to do a pip freeze where you do have domxssscanner working. Be warned, that might include packages that have been installed on the system that aren't necessary for domxssscanner.
Also, it would be great if the README included documentation on how best to setup. A process like the following would be great:
clone domxssscanner repo
virtualenv env
. ./env/bin/activate
pip install -r requirements.txt
find . -name "*.js" | xargs ./domxss.py
that is an obviously made up command since I am unfamiliar with how to run domxssscanner
The text was updated successfully, but these errors were encountered:
You're right without this info the project setup is hard. At the moment I have no local setup myself, but the live project is hosted on Google App Engine. I actually want to port it to flask and move away from App Engine, when I find the time to do so, I'll create a requirements file.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey,
Hope you're well. Was going to play around with this, but it's not clear what packages the python scripts need nor how to setup domxssscanner.
It would be good to include
requirements.txt
file so people can use a python virtualenv and install the packages need by domxssscanner withpip install -r requirements.txt
. A simple way to generate that would be to do apip freeze
where you do have domxssscanner working. Be warned, that might include packages that have been installed on the system that aren't necessary for domxssscanner.Also, it would be great if the README included documentation on how best to setup. A process like the following would be great:
The text was updated successfully, but these errors were encountered: