Add virtualenv installation instructions
parent
2f48e0e456
commit
44365a57b6
13
README.md
13
README.md
|
@ -9,12 +9,6 @@ You agree that you use this software at your own risk.
|
||||||
|
|
||||||
|
|
||||||
## Install & Launch
|
## Install & Launch
|
||||||
Dependencies
|
|
||||||
```
|
|
||||||
pip install requests
|
|
||||||
pip install tornado
|
|
||||||
pip install lxml
|
|
||||||
```
|
|
||||||
|
|
||||||
Install
|
Install
|
||||||
```bash
|
```bash
|
||||||
|
@ -22,6 +16,13 @@ git clone https://github.com/swisskyrepo/Wordpresscan.git
|
||||||
cd Wordpresscan
|
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
|
Example 1 : Basic update and scan of a wordpress
|
||||||
```
|
```
|
||||||
python main.py -u "http://localhost/wordpress" --update --random-agent
|
python main.py -u "http://localhost/wordpress" --update --random-agent
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue