mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
docs: improves README syntax highlighting
This commit is contained in:
parent
933790000f
commit
536292ff2f
2 changed files with 23 additions and 17 deletions
|
|
@ -31,4 +31,3 @@ RUN curl -L https://ftp.mozilla.org/pub/firefox/releases/${FIREFOX_VERSION}/linu
|
||||||
ln -s /opt/firefox/firefox /usr/bin/firefox
|
ln -s /opt/firefox/firefox /usr/bin/firefox
|
||||||
|
|
||||||
CMD ["python", "zeus.py"]
|
CMD ["python", "zeus.py"]
|
||||||
|
|
||||||
|
|
|
||||||
21
README.md
21
README.md
|
|
@ -64,13 +64,18 @@ Zeus is an advanced reconnaissance utility designed to make web application reco
|
||||||
### Screenshots
|
### Screenshots
|
||||||
|
|
||||||
Running without a mandatory options, or running the `--help` flag will output Zeus's help menu:
|
Running without a mandatory options, or running the `--help` flag will output Zeus's help menu:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
A basic dork scan with the `-d` flag, from the given dork will launch an automated browser and pull the Google page results:
|
A basic dork scan with the `-d` flag, from the given dork will launch an automated browser and pull the Google page results:
|
||||||
|
|
||||||

|

|
||||||
Calling the `-s` flag will prompt for you to start the sqlmap API server `python sqlmapapi.py -s` from sqlmap, it will then connect to the API and perform a sqlmap scan on the found URL's.
|
|
||||||
|
Calling the `-s` flag will prompt for you to start the sqlmap API server `python sqlmapapi.py -s` from sqlmap, it will then connect to the API and perform a sqlmap scan on the found URLs:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
You can see more screenshots [here](https://github.com/Ekultek/Zeus-Scanner/wiki/Screenshots)
|
You can see more screenshots [here](https://github.com/Ekultek/Zeus-Scanner/wiki/Screenshots).
|
||||||
|
|
||||||
### Demo
|
### Demo
|
||||||
|
|
||||||
|
|
@ -110,20 +115,21 @@ You can download the latest [tar.gz](https://github.com/ekultek/zeus-scanner/tar
|
||||||
|
|
||||||
##### Ubuntu/Debian
|
##### Ubuntu/Debian
|
||||||
|
|
||||||
```
|
```shell
|
||||||
sudo apt-get install libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py
|
sudo apt-get install libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py
|
||||||
```
|
```
|
||||||
|
|
||||||
##### centOS
|
##### centOS
|
||||||
|
|
||||||
```
|
```shell
|
||||||
sudo apt-get install gcc python-devel libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py
|
sudo apt-get install gcc python-devel libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Backbox
|
#### Backbox
|
||||||
|
|
||||||
64 bit installation:
|
64 bit installation:
|
||||||
```
|
|
||||||
|
```shell
|
||||||
sudo -s << EOF
|
sudo -s << EOF
|
||||||
aptitude purge firefox
|
aptitude purge firefox
|
||||||
wget https://ftp.mozilla.org/pub/firefox/releases/57.0/linux-x86_64/en-US/firefox-57.0.tar.bz2
|
wget https://ftp.mozilla.org/pub/firefox/releases/57.0/linux-x86_64/en-US/firefox-57.0.tar.bz2
|
||||||
|
|
@ -137,7 +143,8 @@ EOF
|
||||||
```
|
```
|
||||||
|
|
||||||
32 bit installation:
|
32 bit installation:
|
||||||
```
|
|
||||||
|
```shell
|
||||||
sudo -s << EOF
|
sudo -s << EOF
|
||||||
aptitude purge firefox
|
aptitude purge firefox
|
||||||
wget https://ftp.mozilla.org/pub/firefox/releases/57.0/linux-i686/en-US/firefox-57.0.tar.bz2
|
wget https://ftp.mozilla.org/pub/firefox/releases/57.0/linux-i686/en-US/firefox-57.0.tar.bz2
|
||||||
|
|
@ -152,7 +159,7 @@ EOF
|
||||||
|
|
||||||
##### Others
|
##### Others
|
||||||
|
|
||||||
```
|
```shell
|
||||||
sudo apt-get install libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py
|
sudo apt-get install libxml2-dev libxslt1-dev python-dev && git clone https://github.com/ekultek/zeus-scanner.git && cd zeus-scanner && sudo pip2 install -r requirements.txt && sudo python zeus.py
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue