-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from HASecuritySolutions/beta-1.8
VulnWhisperer Release 1.8
- Loading branch information
Showing
59 changed files
with
2,402 additions
and
1,384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "qualysapi"] | ||
path = deps/qualysapi | ||
url = https://github.com/austin-taylor/qualysapi.git | ||
[submodule "tests/data"] | ||
path = tests/data | ||
url = https://github.com/HASecuritySolutions/VulnWhisperer-tests.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,25 +2,22 @@ FROM centos:latest | |
|
||
MAINTAINER Justin Henderson [email protected] | ||
|
||
RUN yum update -y | ||
RUN yum install -y python python-devel git gcc | ||
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | ||
RUN python get-pip.py | ||
RUN yum update -y && \ | ||
yum install -y python python-devel git gcc && \ | ||
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ | ||
python get-pip.py | ||
|
||
WORKDIR /opt/VulnWhisperer | ||
|
||
COPY requirements.txt requirements.txt | ||
COPY setup.py setup.py | ||
COPY vulnwhisp/ vulnwhisp/ | ||
COPY bin/ bin/ | ||
COPY deps/ deps/ | ||
COPY configs/frameworks_example.ini frameworks_example.ini | ||
|
||
RUN python setup.py clean --all | ||
RUN pip install -r requirements.txt | ||
RUN python setup.py clean --all && \ | ||
pip install -r requirements.txt | ||
|
||
WORKDIR /opt/VulnWhisperer/deps/qualysapi | ||
RUN python setup.py install | ||
|
||
WORKDIR /opt/VulnWhisperer | ||
RUN python setup.py install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
[nessus] | ||
enabled=true | ||
hostname=nessus | ||
port=443 | ||
username=nessus_username | ||
password=nessus_password | ||
write_path=/opt/VulnWhisperer/data/nessus/ | ||
db_path=/opt/VulnWhisperer/data/database | ||
trash=false | ||
verbose=true | ||
|
||
[tenable] | ||
enabled=true | ||
hostname=tenable | ||
port=443 | ||
username=tenable.io_username | ||
password=tenable.io_password | ||
write_path=/opt/VulnWhisperer/data/tenable/ | ||
db_path=/opt/VulnWhisperer/data/database | ||
trash=false | ||
verbose=true | ||
|
||
[qualys_web] | ||
#Reference https://www.qualys.com/docs/qualys-was-api-user-guide.pdf to find your API | ||
enabled = false | ||
hostname = qualys_web | ||
username = exampleuser | ||
password = examplepass | ||
write_path=/opt/VulnWhisperer/data/qualys_web/ | ||
db_path=/opt/VulnWhisperer/data/database | ||
verbose=true | ||
|
||
# Set the maximum number of retries each connection should attempt. | ||
#Note, this applies only to failed connections and timeouts, never to requests where the server returns a response. | ||
max_retries = 10 | ||
# Template ID will need to be retrieved for each document. Please follow the reference guide above for instructions on how to get your template ID. | ||
template_id = 126024 | ||
|
||
[qualys_vuln] | ||
#Reference https://www.qualys.com/docs/qualys-was-api-user-guide.pdf to find your API | ||
enabled = true | ||
hostname = qualys_vuln | ||
username = exampleuser | ||
password = examplepass | ||
write_path=/opt/VulnWhisperer/data/qualys_vuln/ | ||
db_path=/opt/VulnWhisperer/data/database | ||
verbose=true | ||
|
||
[detectify] | ||
#Reference https://developer.detectify.com/ | ||
enabled = false | ||
hostname = detectify | ||
#username variable used as apiKey | ||
username = exampleuser | ||
#password variable used as secretKey | ||
password = examplepass | ||
write_path =/opt/VulnWhisperer/data/detectify/ | ||
db_path = /opt/VulnWhisperer/data/database | ||
verbose = true | ||
|
||
[openvas] | ||
enabled = false | ||
hostname = openvas | ||
port = 4000 | ||
username = exampleuser | ||
password = examplepass | ||
write_path=/opt/VulnWhisperer/data/openvas/ | ||
db_path=/opt/VulnWhisperer/data/database | ||
verbose=true | ||
|
||
[jira] | ||
enabled = false | ||
hostname = jira-host | ||
username = username | ||
password = password | ||
write_path = /opt/VulnWhisperer/data/jira/ | ||
db_path = /opt/VulnWhisperer/data/database | ||
verbose = true | ||
dns_resolv = False | ||
|
||
#Sample jira report scan, will automatically be created for existent scans | ||
#[jira.qualys_vuln.test_scan] | ||
#source = qualys_vuln | ||
#scan_name = Test Scan | ||
#jira_project = PROJECT | ||
; if multiple components, separate by "," = None | ||
#components = | ||
; minimum criticality to report (low, medium, high or critical) = None | ||
#min_critical_to_report = high | ||
|
Submodule qualysapi
deleted from
42c3b4
Oops, something went wrong.