From b26ff7d9c957cadfee7c05151390c227cb98190e Mon Sep 17 00:00:00 2001 From: Austin Taylor Date: Wed, 27 Dec 2017 02:17:56 -0500 Subject: [PATCH] Addition of submodules, update to connectors, base class start --- configs/frameworks_example.ini | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/configs/frameworks_example.ini b/configs/frameworks_example.ini index 1b015b8..0e7ebe8 100755 --- a/configs/frameworks_example.ini +++ b/configs/frameworks_example.ini @@ -9,4 +9,29 @@ db_path=/opt/vulnwhisp/database trash=false verbose=true -[ \ No newline at end of file +[qualys] +#Reference https://www.qualys.com/docs/qualys-was-api-user-guide.pdf to find your API +hostname = qualysapi.qg2.apps.qualys.com +username = exampleuser +password = examplepass +write_path=/opt/vulnwhisp/qualys/scans +db_path=/opt/vulnwhisp/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 = = 126024 + +#[proxy] +; This section is optional. Leave it out if you're not using a proxy. +; You can use environmental variables as well: http://www.python-requests.org/en/latest/user/advanced/#proxies + +; proxy_protocol set to https, if not specified. +#proxy_url = proxy.mycorp.com + +; proxy_port will override any port specified in proxy_url +#proxy_port = 8080 + +; proxy authentication +#proxy_username = proxyuser +#proxy_password = proxypass \ No newline at end of file