HASecuritySolutions / VulnWhisperer

Create actionable data from your Vulnerability Scans
https://twitter.com/VulnWhisperer
Apache License 2.0
1.35k stars 271 forks source link

Nessus: skipped report due to encoding issue #208

Open svalo opened 4 years ago

svalo commented 4 years ago

Describe the bug While trying to run VW against a Nessus instance I receive an error regarding a document which gets downloaded but not analyzed and saved due to encoding problem.

The issue appears to happen here whre VW assumes the document to be UTF-8 and doesn't manage to parse the text.

I managed to read the CSV patching the code and trying to parse the report as 'latin1'. As I'm not too confident with the codebase I'm not sure that's the only point where it could be needed.

Would you consider adding something like that to be able to parse CSV which are not encoded in UTF-8?

My patch is the following

diff --git a/vulnwhisp/vulnwhisp.py b/vulnwhisp/vulnwhisp.py
index a2c9676..dc09980 100755
--- a/vulnwhisp/vulnwhisp.py
+++ b/vulnwhisp/vulnwhisp.py
@@ -460,9 +460,13 @@ class vulnWhispererNessus(vulnWhispererBase):
                             self.logger.error('Could not download {} scan {}: {}'.format(self.CONFIG_SECTION, scan_id, str(e)))
                             self.exit_code += 1
                             continue
-
+           try:
+               file_req_decoded = file_req.decode('utf-8')
+           except UnicodeDecodeError as e :
+               file_req_decoded = file_req.decode('latin1')
+               self.logger.info('Failed decoding as utf8, trying as latin1: {}'.format(str(e)))
                         clean_csv = \
-                            pd.read_csv(io.StringIO(file_req.decode('utf-8')))
+                            pd.read_csv(io.StringIO(file_req_decoded))
                         if len(clean_csv) > 2:
                             self.logger.info('Processing {}/{} for scan: {}'.format(scan_count, len(scan_list), scan_name.encode('utf8')))
                             columns_to_cleanse = ['CVSS','CVE','Description','Synopsis','Solution','See Also','Plugin Output', 'MAC Address']

Affected module Nessus

Expected behavior Documents which are not UTF8-encoded gets downloaded and passed to logstash

System in which VulnWhisperer runs (please complete the following information):

Additional context

Before commit e1ca9fadcd0e193d1c8abab4fdad79901373b8a1 the software would stop processing documents due to the encoding error, now it just skips the document.

qmontal commented 4 years ago

Hi @svalo, Yep, that change is bringing up some exceptions that we were not previously handling as we didn't notice them. Could you copy on the issue the debug logs of the VulnWhisperer execution without your patch to try to bring a bit of light to what is the exact error? Maybe your patch works in your current use case but misses others, so it would be good to have that info to try to fix the issue for good. Cheers!

alta01 commented 4 years ago

I am also getting the same issue.

2020-03-13 13:24:40 <vmname> root[4176] ERROR 'utf8' codec can't decode byte 0xa0 in position 6539420: invalid start byte ERROR: 'utf8' codec can't decode byte 0xa0 in position 6539420: invalid start byte

Affected module Nessus

Expected behavior Document is downloaded and then attempts to index into Elastic cluster, but halts on encoding exception.

System in which VulnWhisperer runs (please complete the following information):

OS: CentOS Version: 7 VulnWhisperer Version: latest master Additional context

Vulnwhisperer has indexed a large portion of documents but a particular scan has an area which hangs. Once the error is triggered, the entire process halts and no additional scans are processed. Full log:

2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:enabled 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for tenable:enabled 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for qualys_web:enabled 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for qualys_vuln:enabled 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for detectify:enabled 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for openvas:enabled 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for jira:enabled 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:enabled 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:hostname 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:username 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:password 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:write_path 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:db_path 2020-03-13 13:17:24 DEBUG vwConfig - getbool:Calling getbool for nessus:verbose 2020-03-13 13:17:24 INFO vulnWhispererBase - init:Connected to database at /home//VulnWhisperer/data/database/report_tracker.db 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:port 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:port 2020-03-13 13:17:24 DEBUG vwConfig - getbool:Calling getbool for nessus:trash 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:access_key 2020-03-13 13:17:24 DEBUG vwConfig - get:Calling get for nessus:secret_key 2020-03-13 13:17:24 INFO vulnWhispererNessus - init:Attempting to connect to nessus... 2020-03-13 13:17:24 DEBUG NessusAPI - init:Using nessus API keys 2020-03-13 13:17:24 DEBUG NessusAPI - request:Requesting to url https://:/scans 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _new_conn:Starting new HTTPS connection (1): : 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans HTTP/1.1" 200 3905 2020-03-13 13:17:24 DEBUG NessusAPI - get_scan_ids:Found 47 scan_ids 2020-03-13 13:17:24 INFO vulnWhispererNessus - init:Connected to nessus on : 2020-03-13 13:17:24 INFO vulnWhispererNessus - scan_count:Gathering all scan data... this may take a while... 2020-03-13 13:17:24 DEBUG NessusAPI - request:Requesting to url https://:/scans/11 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/11 HTTP/1.1" 200 21211 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-07-14 05:20:08 in datetime 1531560008 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-15 05:23:13 in datetime 1534324993 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-10-25 04:49:18 in datetime 1540457358 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-06 23:32:17 in datetime 1544157137 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-17 22:33:26 in datetime 1547782406 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-08 05:25:22 in datetime 1549621522 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-15 04:59:08 in datetime 1550224748 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-22 02:09:22 in datetime 1550819362 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-01 02:14:28 in datetime 1551424468 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-08 02:06:35 in datetime 1552028795 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-15 02:26:45 in datetime 1552631205 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-22 02:21:54 in datetime 1553235714 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-29 02:04:37 in datetime 1553839477 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-05 02:07:54 in datetime 1554444474 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-12 02:11:20 in datetime 1555049480 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-19 01:53:58 in datetime 1555653238 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-26 02:02:38 in datetime 1556258558 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-03 01:55:43 in datetime 1556862943 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-10 02:02:22 in datetime 1557468142 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-17 02:07:57 in datetime 1558073277 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-24 02:19:18 in datetime 1558678758 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-31 03:13:28 in datetime 1559286808 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-07 03:37:52 in datetime 1559893072 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-14 03:39:56 in datetime 1560497996 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-21 03:36:02 in datetime 1561102562 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-28 03:25:53 in datetime 1561706753 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-05 03:37:24 in datetime 1562312244 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-12 03:15:53 in datetime 1562915753 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-19 03:19:37 in datetime 1563520777 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-26 03:49:08 in datetime 1564127348 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-02 03:32:33 in datetime 1564731153 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-09 03:33:30 in datetime 1565336010 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-16 03:34:42 in datetime 1565940882 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-23 03:21:37 in datetime 1566544897 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-30 03:28:47 in datetime 1567150127 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-06 03:16:45 in datetime 1567754205 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-13 03:27:30 in datetime 1568359650 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-20 03:22:17 in datetime 1568964137 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-27 03:39:41 in datetime 1569569981 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-04 03:37:39 in datetime 1570174659 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-11 03:32:18 in datetime 1570779138 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-18 03:36:45 in datetime 1571384205 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-25 03:37:15 in datetime 1571989035 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-01 03:30:59 in datetime 1572593459 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-08 03:32:19 in datetime 1573201939 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-15 03:17:29 in datetime 1573805849 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-22 03:15:52 in datetime 1574410552 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-28 22:30:22 in datetime 1574998222 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-06 03:14:24 in datetime 1575620064 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-13 03:07:46 in datetime 1576224466 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-20 03:14:14 in datetime 1576829654 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-27 03:13:03 in datetime 1577434383 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-03 03:17:08 in datetime 1578039428 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-10 03:17:50 in datetime 1578644270 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-31 03:16:37 in datetime 1580458597 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-14 03:11:36 in datetime 1581667896 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-21 02:37:58 in datetime 1582270678 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-28 02:43:54 in datetime 1582875834 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-06 02:39:21 in datetime 1583480361 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-13 01:31:12 in datetime 1584077472 2020-03-13 13:17:24 DEBUG NessusAPI - request:Requesting to url https://:/scans/27 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/27 HTTP/1.1" 200 19794 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-20 04:36:50 in datetime 1534754210 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-02 05:20:02 in datetime 1543746002 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-08 05:21:11 in datetime 1546942871 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-07 05:14:59 in datetime 1549534499 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-14 05:27:43 in datetime 1550140063 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-21 05:43:27 in datetime 1550745807 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-28 05:41:58 in datetime 1551350518 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-07 05:48:18 in datetime 1551955698 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-14 06:00:00 in datetime 1552557600 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-21 05:46:55 in datetime 1553161615 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-28 06:20:41 in datetime 1553768441 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-04 05:43:51 in datetime 1554371031 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-11 05:40:28 in datetime 1554975628 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-18 05:34:15 in datetime 1555580055 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-25 05:38:44 in datetime 1556185124 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-02 06:22:10 in datetime 1556792530 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-09 06:20:49 in datetime 1557397249 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-16 05:46:03 in datetime 1557999963 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-23 05:42:08 in datetime 1558604528 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-30 09:11:41 in datetime 1559221901 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-06 05:39:50 in datetime 1559813990 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-13 06:22:35 in datetime 1560421355 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-20 05:36:48 in datetime 1561023408 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-27 06:23:35 in datetime 1561631015 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-04 06:22:29 in datetime 1562235749 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-11 05:41:09 in datetime 1562838069 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-18 05:41:41 in datetime 1563442901 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-25 05:42:17 in datetime 1564047737 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-01 05:43:29 in datetime 1564652609 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-07 23:49:21 in datetime 1565236161 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-14 23:48:09 in datetime 1565840889 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-21 23:49:55 in datetime 1566445795 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-28 23:49:58 in datetime 1567050598 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-04 23:49:59 in datetime 1567655399 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-11 23:49:56 in datetime 1568260196 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-18 23:50:34 in datetime 1568865034 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-25 23:50:13 in datetime 1569469813 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-02 23:50:11 in datetime 1570074611 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-09 23:48:58 in datetime 1570679338 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-16 23:56:10 in datetime 1571284570 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-23 23:49:53 in datetime 1571888993 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-30 23:49:23 in datetime 1572493763 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-06 23:50:06 in datetime 1573102206 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-13 23:50:14 in datetime 1573707014 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-20 23:49:41 in datetime 1574311781 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-27 22:32:15 in datetime 1574911935 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-04 23:49:11 in datetime 1575521351 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-11 23:49:00 in datetime 1576126140 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-18 23:47:46 in datetime 1576730866 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-25 23:48:40 in datetime 1577335720 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-01 23:49:54 in datetime 1577940594 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-08 23:49:49 in datetime 1578545389 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-15 23:50:55 in datetime 1579150255 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-22 23:53:21 in datetime 1579755201 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-29 23:51:26 in datetime 1580359886 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-12 23:48:17 in datetime 1581569297 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-19 23:56:09 in datetime 1582174569 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-26 23:53:05 in datetime 1582779185 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-04 23:51:11 in datetime 1583383871 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-11 23:50:13 in datetime 1583985013 2020-03-13 13:17:24 DEBUG NessusAPI - request:Requesting to url https://:/scans/23 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/23 HTTP/1.1" 200 42991 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-18 07:39:35 in datetime 1534592375 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-30 05:54:18 in datetime 1543575258 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-06 05:53:45 in datetime 1546772025 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-30 08:24:28 in datetime 1548854668 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-06 06:19:47 in datetime 1549451987 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-13 06:17:09 in datetime 1550056629 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-20 04:25:07 in datetime 1550654707 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-27 05:01:11 in datetime 1551261671 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-06 05:10:30 in datetime 1551867030 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-13 04:24:02 in datetime 1552465442 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-20 05:06:35 in datetime 1553072795 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-27 04:12:12 in datetime 1553674332 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-03 04:58:17 in datetime 1554281897 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-10 05:03:16 in datetime 1554886996 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-17 05:02:38 in datetime 1555491758 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-24 05:03:49 in datetime 1556096629 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-01 05:03:04 in datetime 1556701384 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-08 05:01:28 in datetime 1557306088 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-15 05:01:54 in datetime 1557910914 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-22 05:02:53 in datetime 1558515773 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-29 05:05:21 in datetime 1559120721 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-05 05:08:17 in datetime 1559725697 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-12 05:07:40 in datetime 1560330460 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-19 23:36:53 in datetime 1561001813 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-26 05:10:08 in datetime 1561540208 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-03 05:06:02 in datetime 1562144762 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-10 05:12:54 in datetime 1562749974 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-17 04:23:30 in datetime 1563351810 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-24 05:04:56 in datetime 1563959096 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-31 04:55:39 in datetime 1564563339 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-07 01:03:21 in datetime 1565154201 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-14 00:55:28 in datetime 1565758528 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-21 00:51:38 in datetime 1566363098 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-28 00:54:48 in datetime 1566968088 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-04 00:31:36 in datetime 1567571496 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-11 00:56:52 in datetime 1568177812 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-18 00:54:55 in datetime 1568782495 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-25 00:43:49 in datetime 1569386629 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-02 00:49:42 in datetime 1569991782 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-09 00:48:02 in datetime 1570596482 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-16 00:50:00 in datetime 1571201400 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-23 00:48:13 in datetime 1571806093 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-30 00:46:21 in datetime 1572410781 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-06 00:50:01 in datetime 1573019401 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-13 00:47:25 in datetime 1573624045 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-20 00:42:35 in datetime 1574228555 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-26 22:31:49 in datetime 1574825509 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-04 00:29:34 in datetime 1575437374 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-11 00:53:10 in datetime 1576043590 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-18 00:32:09 in datetime 1576647129 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-25 00:44:24 in datetime 1577252664 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-01 00:45:18 in datetime 1577857518 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-08 00:54:28 in datetime 1578462868 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-15 00:50:23 in datetime 1579067423 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-22 00:52:31 in datetime 1579672351 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-29 00:49:34 in datetime 1580276974 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-12 00:45:33 in datetime 1581486333 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-19 00:50:21 in datetime 1582091421 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-26 00:54:11 in datetime 1582696451 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-04 00:57:42 in datetime 1583301462 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-11 00:32:29 in datetime 1583901149 2020-03-13 13:17:24 DEBUG NessusAPI - request:Requesting to url https://:/scans/21 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/21 HTTP/1.1" 200 39264 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-17 05:11:10 in datetime 1534497070 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-29 05:46:40 in datetime 1543488400 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-05 05:48:55 in datetime 1546685335 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-24 06:18:56 in datetime 1548328736 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-03 23:07:24 in datetime 1549253244 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-11 05:36:39 in datetime 1549881399 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-18 05:30:30 in datetime 1550485830 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-25 05:22:15 in datetime 1551090135 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-04 05:44:26 in datetime 1551696266 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-11 05:22:52 in datetime 1552296172 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-18 05:37:52 in datetime 1552901872 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-25 05:07:49 in datetime 1553504869 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 05:09:02 in datetime 1554109742 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-08 05:08:10 in datetime 1554714490 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-15 05:09:02 in datetime 1555319342 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-22 05:14:05 in datetime 1555924445 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-29 05:14:15 in datetime 1556529255 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-06 05:10:02 in datetime 1557133802 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-13 05:18:53 in datetime 1557739133 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-20 05:47:06 in datetime 1558345626 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-27 05:15:40 in datetime 1558948540 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-03 05:10:45 in datetime 1559553045 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-10 05:53:39 in datetime 1560160419 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-17 05:07:54 in datetime 1560762474 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-24 05:19:58 in datetime 1561367998 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-01 06:03:52 in datetime 1561975432 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-08 05:21:08 in datetime 1562577668 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-15 05:58:51 in datetime 1563184731 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-22 05:15:45 in datetime 1563786945 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-29 05:16:42 in datetime 1564391802 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-04 23:48:23 in datetime 1564976903 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-11 23:50:17 in datetime 1565581817 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-18 23:49:10 in datetime 1566186550 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-25 23:49:00 in datetime 1566791340 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-01 23:49:39 in datetime 1567396179 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-08 23:48:59 in datetime 1568000939 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-15 23:49:07 in datetime 1568605747 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-22 23:48:10 in datetime 1569210490 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-29 23:49:02 in datetime 1569815342 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-06 23:49:06 in datetime 1570420146 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-13 23:49:44 in datetime 1571024984 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-20 23:50:28 in datetime 1571629828 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-27 23:51:55 in datetime 1572234715 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-03 23:51:31 in datetime 1572843091 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-10 23:50:59 in datetime 1573447859 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-17 23:49:15 in datetime 1574052555 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-01 22:31:32 in datetime 1575257492 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-08 23:51:40 in datetime 1575867100 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-15 23:50:20 in datetime 1576471820 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-22 23:49:53 in datetime 1577076593 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-29 23:48:35 in datetime 1577681315 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-05 23:49:13 in datetime 1578286153 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-12 23:48:59 in datetime 1578890939 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-19 23:48:57 in datetime 1579495737 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-26 23:49:47 in datetime 1580100587 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-02 23:51:39 in datetime 1580705499 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-10 01:03:54 in datetime 1581314634 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-16 23:54:55 in datetime 1581915295 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-23 22:49:20 in datetime 1582516160 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-01 23:57:08 in datetime 1583125028 2020-03-13 13:17:24 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-09 00:06:38 in datetime 1583726798 2020-03-13 13:17:24 DEBUG NessusAPI - request:Requesting to url https://:/scans/25 2020-03-13 13:17:24 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:25 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/25 HTTP/1.1" 200 26100 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-19 04:34:49 in datetime 1534667689 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-01 05:19:28 in datetime 1543659568 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-07 05:22:38 in datetime 1546856558 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-03 23:07:24 in datetime 1549253244 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-11 01:04:34 in datetime 1549865074 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-18 00:52:08 in datetime 1550469128 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-25 01:18:27 in datetime 1551075507 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-04 01:20:49 in datetime 1551680449 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-11 02:01:56 in datetime 1552284116 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-18 01:25:40 in datetime 1552886740 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-25 01:20:04 in datetime 1553491204 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 01:10:41 in datetime 1554095441 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-08 01:52:32 in datetime 1554702752 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-15 01:14:07 in datetime 1555305247 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-22 01:54:39 in datetime 1555912479 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-29 01:52:58 in datetime 1556517178 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-06 01:31:53 in datetime 1557120713 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-13 01:20:35 in datetime 1557724835 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-20 01:59:18 in datetime 1558331958 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-27 01:57:13 in datetime 1558936633 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-03 02:03:34 in datetime 1559541814 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-10 01:24:49 in datetime 1560144289 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-17 01:42:41 in datetime 1560750161 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-24 02:00:40 in datetime 1561356040 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-01 02:03:28 in datetime 1561961008 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-08 02:04:05 in datetime 1562565845 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-15 01:26:30 in datetime 1563168390 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-22 01:42:20 in datetime 1563774140 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-29 02:22:16 in datetime 1564381336 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-04 18:06:21 in datetime 1564956381 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-11 19:49:59 in datetime 1565567399 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-18 19:32:25 in datetime 1566171145 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-25 19:32:32 in datetime 1566775952 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-01 19:30:40 in datetime 1567380640 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-08 19:31:18 in datetime 1567985478 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-15 19:40:41 in datetime 1568590841 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-22 19:41:25 in datetime 1569195685 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-29 19:56:21 in datetime 1569801381 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-06 19:38:34 in datetime 1570405114 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-13 19:37:48 in datetime 1571009868 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-20 19:30:47 in datetime 1571614247 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-27 19:40:05 in datetime 1572219605 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-03 19:37:12 in datetime 1572827832 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-10 19:35:23 in datetime 1573432523 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-17 19:36:30 in datetime 1574037390 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-01 18:00:54 in datetime 1575241254 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-08 19:33:52 in datetime 1575851632 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-15 19:36:15 in datetime 1576456575 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-07 07:27:20 in datetime 1581078440 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-09 19:35:49 in datetime 1581294949 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-16 18:08:31 in datetime 1581894511 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-23 19:36:17 in datetime 1582504577 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-01 19:36:48 in datetime 1583109408 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-08 19:43:38 in datetime 1583711018 2020-03-13 13:17:25 DEBUG NessusAPI - request:Requesting to url https://:/scans/29 2020-03-13 13:17:25 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:25 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/29 HTTP/1.1" 200 4819 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-21 04:13:06 in datetime 1534839186 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-03 05:04:41 in datetime 1543831481 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-09 05:06:36 in datetime 1547028396 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-03 21:14:40 in datetime 1549246480 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-10 21:12:38 in datetime 1549851158 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-17 21:14:02 in datetime 1550456042 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-24 21:14:50 in datetime 1551060890 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-03 21:14:18 in datetime 1551665658 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-10 21:14:14 in datetime 1552266854 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-17 21:14:14 in datetime 1552871654 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-24 21:12:26 in datetime 1553476346 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-31 21:10:24 in datetime 1554081024 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-07 21:10:52 in datetime 1554685852 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-14 21:11:18 in datetime 1555290678 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-21 21:10:43 in datetime 1555895443 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-28 21:11:09 in datetime 1556500269 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-05 21:11:07 in datetime 1557105067 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-12 21:10:22 in datetime 1557709822 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-19 21:11:17 in datetime 1558314677 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-26 21:09:24 in datetime 1558919364 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-02 21:11:12 in datetime 1559524272 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-09 21:12:18 in datetime 1560129138 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-16 21:10:12 in datetime 1560733812 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-23 21:10:46 in datetime 1561338646 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-30 21:12:06 in datetime 1561943526 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-07 21:09:44 in datetime 1562548184 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-14 21:10:09 in datetime 1563153009 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-21 21:09:41 in datetime 1563757781 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-28 21:09:32 in datetime 1564362572 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-04 15:09:06 in datetime 1564945746 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-11 15:09:28 in datetime 1565550568 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-18 15:09:09 in datetime 1566155349 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-25 15:09:39 in datetime 1566760179 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-01 15:09:04 in datetime 1567364944 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-08 15:09:51 in datetime 1567969791 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-15 15:09:40 in datetime 1568574580 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-22 15:09:40 in datetime 1569179380 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-29 15:09:09 in datetime 1569784149 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-06 15:09:37 in datetime 1570388977 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-13 15:12:25 in datetime 1570993945 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-20 15:09:38 in datetime 1571598578 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-27 15:09:25 in datetime 1572203365 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-03 15:09:06 in datetime 1572811746 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-10 15:09:15 in datetime 1573416555 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-17 15:09:48 in datetime 1574021388 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-01 15:01:13 in datetime 1575230473 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-08 15:09:28 in datetime 1575835768 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-15 15:09:41 in datetime 1576440581 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-22 15:09:19 in datetime 1577045359 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-29 15:09:42 in datetime 1577650182 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-05 15:09:16 in datetime 1578254956 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-12 15:09:57 in datetime 1578859797 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-19 15:18:32 in datetime 1579465112 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-26 15:10:02 in datetime 1580069402 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-02 15:09:54 in datetime 1580674194 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-09 15:09:46 in datetime 1581278986 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-16 15:09:28 in datetime 1581883768 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-23 15:09:06 in datetime 1582488546 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-01 15:09:40 in datetime 1583093380 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-08 15:09:46 in datetime 1583694586 2020-03-13 13:17:25 DEBUG NessusAPI - request:Requesting to url https://:/scans/17 2020-03-13 13:17:25 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:25 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/17 HTTP/1.1" 200 51478 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-14 05:40:37 in datetime 1534239637 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-06 06:11:53 in datetime 1544094713 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-19 05:19:21 in datetime 1547893161 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-03 06:09:44 in datetime 1549192184 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-10 06:05:31 in datetime 1549796731 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-17 06:03:02 in datetime 1550401382 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-24 05:58:59 in datetime 1551005939 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-03 05:56:57 in datetime 1551610617 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-10 06:57:07 in datetime 1552215427 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-17 05:54:21 in datetime 1552816461 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-24 05:26:14 in datetime 1553419574 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-31 05:28:50 in datetime 1554024530 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-07 05:25:07 in datetime 1554629107 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-14 05:26:49 in datetime 1555234009 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-21 05:31:27 in datetime 1555839087 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-28 05:29:00 in datetime 1556443740 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-05 05:27:56 in datetime 1557048476 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-12 05:26:21 in datetime 1557653181 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-19 05:28:36 in datetime 1558258116 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-26 05:25:07 in datetime 1558862707 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-02 05:55:21 in datetime 1559469321 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-09 05:51:17 in datetime 1560073877 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-16 05:37:12 in datetime 1560677832 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-23 05:49:30 in datetime 1561283370 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-30 05:49:52 in datetime 1561888192 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-07 05:47:03 in datetime 1562492823 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-14 09:02:41 in datetime 1563109361 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-21 05:50:49 in datetime 1563702649 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-28 05:51:24 in datetime 1564307484 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-04 05:24:42 in datetime 1564910682 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-11 05:24:25 in datetime 1565515465 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-18 05:24:25 in datetime 1566120265 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-25 05:23:55 in datetime 1566725035 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-01 05:25:09 in datetime 1567329909 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-08 05:24:43 in datetime 1567934683 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-15 05:29:54 in datetime 1568539794 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-22 05:29:30 in datetime 1569144570 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-29 05:26:59 in datetime 1569749219 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-06 06:06:01 in datetime 1570356361 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-13 05:24:22 in datetime 1570958662 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-20 05:24:46 in datetime 1571563486 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-27 05:27:41 in datetime 1572168461 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-03 04:29:05 in datetime 1572773345 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-10 05:24:02 in datetime 1573381442 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-17 05:28:04 in datetime 1573986484 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-30 23:03:03 in datetime 1575172983 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-01 14:09:23 in datetime 1575227363 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-08 05:50:17 in datetime 1575802217 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-15 05:54:32 in datetime 1576407272 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-22 05:55:09 in datetime 1577012109 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-29 05:47:37 in datetime 1577616457 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-05 05:46:20 in datetime 1578221180 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-12 06:02:49 in datetime 1578826969 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-19 05:47:22 in datetime 1579430842 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-26 05:53:17 in datetime 1580035997 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-02 05:50:01 in datetime 1580640601 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-09 06:07:00 in datetime 1581246420 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-16 05:50:52 in datetime 1581850252 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-23 05:51:46 in datetime 1582455106 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-01 05:50:37 in datetime 1583059837 2020-03-13 13:17:25 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-08 06:46:09 in datetime 1583664369 2020-03-13 13:17:25 DEBUG NessusAPI - request:Requesting to url https://:/scans/19 2020-03-13 13:17:25 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:26 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/19 HTTP/1.1" 200 121094 2020-03-13 13:17:32 DEBUG chardet.charsetprober - feed:EUC-JP Japanese prober hit error at byte 418698 2020-03-13 13:17:35 DEBUG chardet.charsetprober - feed:EUC-KR Korean prober hit error at byte 418698 2020-03-13 13:17:38 DEBUG chardet.charsetprober - feed:Big5 Chinese prober hit error at byte 418698 2020-03-13 13:17:39 DEBUG chardet.charsetprober - feed:EUC-TW Taiwan prober hit error at byte 418698 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:utf-8 not active 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:SHIFT_JIS Japanese confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:EUC-JP not active 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:GB2312 Chinese confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:EUC-KR not active 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:CP949 Korean confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:Big5 not active 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:EUC-TW not active 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:windows-1251 Russian confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:KOI8-R Russian confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:ISO-8859-5 Russian confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:MacCyrillic Russian confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:IBM866 Russian confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:IBM855 Russian confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:ISO-8859-7 Greek confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:windows-1253 Greek confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:ISO-8859-5 Bulgairan confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:windows-1251 Bulgarian confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:TIS-620 Thai confidence = 0.01 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:ISO-8859-9 Turkish confidence = 0.584563952155 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:windows-1255 Hebrew confidence = 0.0 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:windows-1255 Hebrew confidence = 0.0 2020-03-13 13:17:44 DEBUG chardet.charsetprober - get_confidence:windows-1255 Hebrew confidence = 0.0 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-16 08:56:02 in datetime 1534424162 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-28 08:54:31 in datetime 1543413271 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-04 09:12:47 in datetime 1546611167 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-30 14:43:14 in datetime 1548877394 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-02 16:02:22 in datetime 1549141342 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-09 17:24:35 in datetime 1549751075 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-16 17:49:29 in datetime 1550357369 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-23 15:44:57 in datetime 1550954697 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-02 15:08:27 in datetime 1551557307 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-09 14:57:15 in datetime 1552161435 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-16 15:47:57 in datetime 1552765677 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-14 06:19:13 in datetime 1563099553 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-03 10:52:40 in datetime 1564843960 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-10 10:52:30 in datetime 1565448750 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-17 11:39:54 in datetime 1566056394 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-24 10:34:50 in datetime 1566657290 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-31 12:35:53 in datetime 1567269353 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-07 11:13:49 in datetime 1567869229 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-13 21:11:14 in datetime 1568423474 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-21 11:39:26 in datetime 1569080366 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-28 12:26:52 in datetime 1569688012 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-05 12:35:59 in datetime 1570293359 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-12 11:37:35 in datetime 1570894655 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-19 11:31:10 in datetime 1571499070 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-26 12:49:44 in datetime 1572108584 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-02 11:43:51 in datetime 1572709431 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-09 11:20:36 in datetime 1573316436 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-16 11:27:38 in datetime 1573921658 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-23 17:03:46 in datetime 1574546626 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-29 21:02:05 in datetime 1575079325 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-01 23:43:43 in datetime 1575261823 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-07 17:24:24 in datetime 1575757464 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-14 18:21:31 in datetime 1576365691 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-21 18:24:44 in datetime 1576970684 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-28 18:14:34 in datetime 1577574874 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-04 18:44:03 in datetime 1578181443 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-11 18:16:46 in datetime 1578784606 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-18 18:12:29 in datetime 1579389149 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-01-25 18:23:52 in datetime 1579994632 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-01 19:08:09 in datetime 1580602089 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-08 18:47:54 in datetime 1581205674 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-15 18:20:34 in datetime 158180 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-22 19:22:45 in datetime 1582417365 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-29 19:19:58 in datetime 1583021998 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-03-07 18:17:28 in datetime 1583623048 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/802 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/802 HTTP/1.1" 200 8333 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2020-02-18 16:15:17 in datetime 1582042517 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/33 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/33 HTTP/1.1" 200 3408 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-23 09:22:15 in datetime 1535030535 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-05 12:23:31 in datetime 1544030611 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-20 11:39:27 in datetime 1548002367 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-05 12:20:01 in datetime 1549387201 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-12 12:15:58 in datetime 1549991758 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-19 12:09:43 in datetime 1550596183 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-26 12:08:07 in datetime 1551200887 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-05 12:05:59 in datetime 1551805559 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-12 12:28:00 in datetime 1552408080 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-19 11:50:59 in datetime 1553010659 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-26 11:35:13 in datetime 1553614513 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-02 11:36:52 in datetime 1554219412 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-09 11:51:55 in datetime 1554825115 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-16 11:39:30 in datetime 1555429170 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-23 11:35:27 in datetime 1556033727 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-30 12:12:30 in datetime 1556640750 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-07 11:53:30 in datetime 1557244410 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-14 11:36:21 in datetime 1557848181 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-21 11:41:23 in datetime 1558453283 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-28 12:13:50 in datetime 1559060030 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-04 12:36:57 in datetime 1559666217 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-11 11:48:29 in datetime 1560268109 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-18 11:36:10 in datetime 1560872170 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-25 11:40:03 in datetime 1561477203 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-02 12:09:53 in datetime 1562083793 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-09 12:26:05 in datetime 1562689565 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-16 12:25:34 in datetime 1563294334 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-23 12:21:31 in datetime 1563898891 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-07-30 11:36:49 in datetime 1564501009 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-05 23:19:23 in datetime 1565061563 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-12 23:21:08 in datetime 1565666468 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-19 23:21:46 in datetime 1566271306 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-08-26 23:22:10 in datetime 1566876130 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-02 23:50:57 in datetime 1567482657 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-09 23:50:25 in datetime 1568087425 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-16 23:49:27 in datetime 1568692167 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-23 23:48:13 in datetime 1569296893 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-09-30 23:49:51 in datetime 1569901791 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-07 23:37:02 in datetime 1570505822 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-15 00:01:19 in datetime 1571112079 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-21 23:53:08 in datetime 1571716388 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-28 23:21:40 in datetime 1572319300 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-04 23:20:17 in datetime 1572927617 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-11 23:25:58 in datetime 1573532758 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-18 23:33:55 in datetime 1574138035 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-11-25 23:44:22 in datetime 1574743462 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-02 23:36:01 in datetime 1575347761 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-09 23:02:14 in datetime 1575950534 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-16 23:24:38 in datetime 1576556678 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-23 23:24:08 in datetime 1577161448 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-31 00:08:15 in datetime 1577768895 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/710 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/710 HTTP/1.1" 200 658 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-01 23:46:18 in datetime 1575243978 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-12-01 23:49:18 in datetime 1575244158 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/45 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/45 HTTP/1.1" 200 1274 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-17 11:16:40 in datetime 1534504600 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-17 13:40:05 in datetime 1534513205 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-22 16:14:24 in datetime 1534954464 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-15 10:51:32 in datetime 1542279092 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-20 11:44:53 in datetime 1558352693 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-20 11:54:24 in datetime 1558353264 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-20 18:52:20 in datetime 1558378340 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-21 09:58:06 in datetime 1558432686 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-21 10:10:22 in datetime 1558433422 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-24 15:42:25 in datetime 1558712545 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-12 21:12:12 in datetime 1560373932 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-13 10:02:57 in datetime 1560420177 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-10-04 11:23:50 in datetime 1570188230 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/495 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/495 HTTP/1.1" 200 589 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-06-21 16:36:48 in datetime 1561135008 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/463 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/463 HTTP/1.1" 200 600 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-30 04:21:12 in datetime 1559204472 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/446 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/446 HTTP/1.1" 200 585 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-21 09:19:51 in datetime 1558430391 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/352 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/352 HTTP/1.1" 200 607 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-10 14:18:30 in datetime 1557497910 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/330 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/330 HTTP/1.1" 200 612 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-05-01 14:18:04 in datetime 1556720284 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/108 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/108 HTTP/1.1" 200 659 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-03 09:35:24 in datetime 1543829724 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-26 08:56:54 in datetime 1556269014 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/182 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/182 HTTP/1.1" 200 669 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-28 11:26:03 in datetime 1548674763 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 15:21:41 in datetime 1554132101 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/314 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/314 HTTP/1.1" 200 895 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 11:35:08 in datetime 1554118508 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 11:47:30 in datetime 1554119250 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 11:46:15 in datetime 1554119175 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 11:59:37 in datetime 1554119977 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 12:17:29 in datetime 1554121049 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 14:13:14 in datetime 1554127994 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/323 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/323 HTTP/1.1" 200 652 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 12:17:24 in datetime 1554121044 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-04-01 12:24:47 in datetime 1554121487 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/300 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/300 HTTP/1.1" 200 665 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-25 16:30:25 in datetime 1553531425 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-25 16:45:51 in datetime 1553532351 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/291 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/291 HTTP/1.1" 200 594 2020-03-13 13:17:44 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-22 12:03:49 in datetime 1553256229 2020-03-13 13:17:44 DEBUG NessusAPI - request:Requesting to url https://:/scans/31 2020-03-13 13:17:44 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/31 HTTP/1.1" 200 1184 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-22 04:16:05 in datetime 1534925765 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-04 05:08:22 in datetime 1543918102 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-21 04:12:49 in datetime 1548061969 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-24 04:36:09 in datetime 1548322569 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-02 21:19:59 in datetime 1549160399 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-09 21:36:20 in datetime 1549766180 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-16 21:32:59 in datetime 1550370779 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-23 21:19:27 in datetime 1550974767 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-02 21:17:55 in datetime 1551579475 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-09 21:17:01 in datetime 1552184221 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-03-16 21:18:49 in datetime 1552785529 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/243 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/243 HTTP/1.1" 200 659 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-20 14:54:44 in datetime 1550674484 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-20 15:06:40 in datetime 1550675200 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/233 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/233 HTTP/1.1" 200 885 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-19 16:18:30 in datetime 1550593110 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-19 16:39:22 in datetime 1550594362 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-20 14:08:39 in datetime 1550671719 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-20 14:14:40 in datetime 1550672080 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-20 14:29:06 in datetime 1550672946 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-02-20 14:38:27 in datetime 1550673507 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/195 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/195 HTTP/1.1" 200 604 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-30 04:09:30 in datetime 1548839370 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/190 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/190 HTTP/1.1" 200 678 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-29 15:16:06 in datetime 1548774966 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-29 15:35:28 in datetime 1548776128 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/156 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/156 HTTP/1.1" 200 664 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-18 16:49:49 in datetime 1547830189 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-22 16:08:41 in datetime 1548173321 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/168 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/168 HTTP/1.1" 200 589 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-21 14:02:28 in datetime 1548079348 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/164 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/164 HTTP/1.1" 200 596 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-21 11:59:25 in datetime 1548071965 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/130 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/130 HTTP/1.1" 200 594 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-09 19:04:31 in datetime 1547060671 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/126 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/126 HTTP/1.1" 200 590 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2019-01-09 18:46:09 in datetime 1547059569 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/115 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/115 HTTP/1.1" 200 588 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-12-07 15:37:37 in datetime 1544197057 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/101 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/101 HTTP/1.1" 200 593 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-29 18:54:27 in datetime 1543517667 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/87 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/87 HTTP/1.1" 200 717 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-08 09:19:55 in datetime 1541668795 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-08 10:23:03 in datetime 1541672583 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-20 15:13:49 in datetime 1542726829 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/92 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/92 HTTP/1.1" 200 661 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-12 11:31:59 in datetime 1542022319 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-11-15 11:20:12 in datetime 1542280812 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/80 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/80 HTTP/1.1" 200 719 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-10-09 11:25:02 in datetime 1539084302 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-10-09 11:41:24 in datetime 1539085284 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-10-09 12:23:40 in datetime 1539087820 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/74 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/74 HTTP/1.1" 200 593 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-09-27 18:09:39 in datetime 1538071779 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/70 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/70 HTTP/1.1" 200 591 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-09-25 21:59:10 in datetime 1537912750 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/62 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/62 HTTP/1.1" 200 586 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-21 11:02:43 in datetime 1534849363 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/54 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/54 HTTP/1.1" 200 671 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-17 14:14:23 in datetime 1534515263 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-17 14:53:23 in datetime 1534517603 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/48 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/48 HTTP/1.1" 200 578 2020-03-13 13:17:45 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-17 13:14:40 in datetime 1534511680 2020-03-13 13:17:45 DEBUG NessusAPI - request:Requesting to url https://:/scans/41 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:45 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/41 HTTP/1.1" 200 669 2020-03-13 13:17:46 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-17 09:58:22 in datetime 1534499902 2020-03-13 13:17:46 DEBUG NessusAPI - get_utc_from_local:Converted timestamp 2018-08-17 10:28:36 in datetime 1534501716 2020-03-13 13:17:46 DEBUG NessusAPI - request:Requesting to url https://:/scans/132 2020-03-13 13:17:46 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:46 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/132 HTTP/1.1" 200 431 2020-03-13 13:17:46 DEBUG NessusAPI - request:Requesting to url https://:/scans/187 2020-03-13 13:17:46 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:46 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/187 HTTP/1.1" 200 435 2020-03-13 13:17:46 DEBUG NessusAPI - request:Requesting to url https://:/scans/786 2020-03-13 13:17:46 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:46 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/786 HTTP/1.1" 200 419 2020-03-13 13:17:46 INFO vulnWhispererNessus - whisper_nessus:Identified 206 scans to be processed 2020-03-13 13:17:46 INFO vulnWhispererNessus - whisper_nessus:Directory already exist for /home//VulnWhisperer/data/nessus/ - Skipping creation 2020-03-13 13:17:46 INFO vulnWhispererNessus - whisper_nessus:Directory already exist for /home//VulnWhisperer/data/nessus/ - Skipping creation 2020-03-13 13:17:46 INFO vulnWhispererNessus - whisper_nessus:Directory already exist for /home//VulnWhisperer/data/nessus/ - Skipping creation 2020-03-13 13:17:46 INFO vulnWhispererNessus - whisper_nessus:Directory already exist for /home//VulnWhisperer/data/nessus/ - Skipping creation 2020-03-13 13:17:46 INFO vulnWhispererNessus - whisper_nessus:Directory already exist for /home//VulnWhisperer/data/nessus/ Response - Skipping creation 2020-03-13 13:17:46 INFO vulnWhispererNessus - whisper_nessus:Directory already exist for /home//VulnWhisperer/data/nessus/ - Skipping creation 2020-03-13 13:17:46 DEBUG NessusAPI - request:Requesting to url https://:/scans/11/export?history_id=779 2020-03-13 13:17:46 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:46 DEBUG urllib3.connectionpool - _make_request:https://: "POST /scans/11/export?history_id=779 HTTP/1.1" 200 94 2020-03-13 13:17:46 INFO NessusAPI - download_scan:Download for file id 1947738521 2020-03-13 13:17:48 DEBUG NessusAPI - request:Requesting to url https://:/scans/11/export/1947738521/status 2020-03-13 13:17:48 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:48 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/11/export/1947738521/status HTTP/1.1" 200 18 2020-03-13 13:17:48 INFO NessusAPI - download_scan:Done: 2 2020-03-13 13:17:48 DEBUG NessusAPI - request:Requesting to url https://:/scans/11/export/1947738521/download 2020-03-13 13:17:48 DEBUG urllib3.connectionpool - _get_conn:Resetting dropped connection: 2020-03-13 13:17:49 DEBUG urllib3.connectionpool - _make_request:https://: "GET /scans/11/export/1947738521/download HTTP/1.1" 200 None 2020-03-13 13:17:49 DEBUG NessusAPI - request:Returning data.content 2020-03-13 13:17:49 DEBUG NessusAPI - request:Processed 145 chunks ERROR 'utf8' codec can't decode byte 0xa0 in position 6539420: invalid start byte ERROR: 'utf8' codec can't decode byte 0xa0 in position 6539420: invalid start byte

svalo commented 4 years ago

Hi @qmontal, thank for your answer, I'll try to provide the debug log.

The issue anyway was that python wasn't able to properly decode the csv as utf-8 because of a character at some position in the file. As the file was coming from a nessus used in central Europe I tried first using ascii encoding and later on using latin1. It turned out the latter was the good one.

I'm sure my patch doesn't cover all the cases, it was meant as a possible approach to the issue :)

I think It's a bit hazardous to assume the exported CSV would always be encoded as utf-8, on the other hand handling alle the possible encodings would be a nightmare.

I checked whether it's possible to provide a list of supported encoding as HTTP headers to requests but it seems that it's an indication of preference and it's not sure Nessus would honor it.

I'm not even sure the problem would still be present once the project moves to python3 where there are many differences in regards to encoding.

svalo commented 4 years ago

@alta01 based on the behaviour you reported it seems that the commit I mentioned in my ticket isn't present as it handles the failures skipping the problematic docs, what does git show returns if run inside the installation folder?