Merge pull request #20 from sokaRepo/master

Add virtualenv installation instructions
pull/25/head
Swissky 2017-10-15 10:04:31 +02:00 committed by GitHub
commit f53723a54a
2 changed files with 17 additions and 6 deletions

View File

@ -9,12 +9,6 @@ You agree that you use this software at your own risk.
## Install & Launch
Dependencies
```
pip install requests
pip install tornado
pip install lxml
```
Install
```bash
@ -22,6 +16,13 @@ git clone https://github.com/swisskyrepo/Wordpresscan.git
cd Wordpresscan
```
Virtualenv
```
virtualenv .venv -p /usr/bin/python2.7
source .venv/bin/activate
pip install -r requirements.txt
```
Example 1 : Basic update and scan of a wordpress
```
python main.py -u "http://localhost/wordpress" --update --random-agent

10
requirements.txt Normal file
View File

@ -0,0 +1,10 @@
backports-abc==0.5
certifi==2017.7.27.1
chardet==3.0.4
idna==2.6
lxml==4.1.0
requests==2.18.4
singledispatch==3.4.0.3
six==1.11.0
tornado==4.5.2
urllib3==1.22