Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

errors:{"issuetype":"The issue type selected is invalid."}} #28

Closed
dil-ddsouza opened this issue Apr 1, 2020 · 21 comments
Closed

errors:{"issuetype":"The issue type selected is invalid."}} #28

dil-ddsouza opened this issue Apr 1, 2020 · 21 comments
Labels
documentation Improvements or additions to documentation question Further information is requested

Comments

@dil-ddsouza
Copy link

Hi Steven,

We were successful when we used the script on our test jira instance. However now when we moved to our production Jira instance, we get this error when running the script. I have made sure that the settings is like for like with the test jira project:

2020-04-01 09:29:22,961 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/issue?update_history=False HTTP/1.1" 400 None
2020-04-01 09:29:22,963 restfly.errors.BadRequestError ERROR [400: POST] https://production.atlassian.net/rest/api/3/issue?update_history=False body=b'{"errorMessages":[],"errors":{"issuetype":"The issue type selected is invalid."}}'

Any help and guidance would be appreciated.

@SteveMcGrath
Copy link
Collaborator

You'll likely need to manually select the issue types. Refer to the info here:

#23 (comment)

@dil-ddsouza
Copy link
Author

dil-ddsouza commented Apr 1, 2020

Hi Steve,

Thanks for that. So I made the following changes:

issue_types:
  - name: Task
    jira_id: 18
    type: standard
    search:
      - Tenable Plugin ID
  - name: Sub-task
    type: subtask
    jira_id: 19
    search:
      - Tenable Platform
      - Tenable Plugin ID
      - Tenable Asset UUID
      - Device IPv4 Addresses
      - Device IPv6 Addresses
      - Vulnerability Port
      - Vulnerability Protocol

screen:
  jira_ids:
    - 14632
    - 14633

However I know receive the following error:

restfly.errors.BadRequestError: [400: PUT] https://production.atlassian.net/rest/api/3/issue/296794?notifyUsers=true&overrideScreenSecurity=false&overrideEditableFlag=false body=b'{"errorMessages":[],"errors":{"summary":"Field \'summary\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16101":"Field \'customfield_16101\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16100":"Field \'customfield_16100\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16099":"Field \'customfield_16099\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16098":"Field \'customfield_16098\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16105":"Field \'customfield_16105\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16104":"Field \'customfield_16104\' cannot be set. It is not on the appropriate screen, or unknown.","description":"Field \'description\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16107":"Field \'customfield_16107\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16106":"Field \'customfield_16106\' cannot be set. It is not on the appropriate screen, or unknown."}}'

@dil-ddsouza
Copy link
Author

I wonder if I should remove the name bit from the config file?

screen:
jira_ids:
- 14632
- 14633

name:
- Task Management Edit/View Issue Screen
- Task Management Create Issue Screen

tabs:

@SteveMcGrath
Copy link
Collaborator

That error says that the custom fields aren't associated to those screens. Did you attempt to let the code figure out the screen jira_ids?

@dil-ddsouza
Copy link
Author

Yeah, the first change that I made was just the task and sub task ids but received the same error.
So thought of adding the screen id's too later on. However still received the same error.

@dil-ddsouza
Copy link
Author

dil-ddsouza commented Apr 1, 2020

Looking at the debug log, it correctly recognises the screens:
2020-04-01 10:57:46,487 tenable_jira.transform.Tio2Jira INFO Using JIRA Screens [14632, 14633]
2020-04-01 10:57:46,589 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens/14632/tabs HTTP/1.1" 200 None
2020-04-01 10:57:46,755 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens/14632/tabs/15054/fields HTTP/1.1" 200 None

@SteveMcGrath
Copy link
Collaborator

try different issuetype IDs (if you have multiple Task and SubTask issuetypes). Most if the issues I have seen with Jira have been around Issuetypes and how widely the issuetype names are duplicated.

@dil-ddsouza
Copy link
Author

Hey Steve,

I just checked and we only have one of each i.e. 1 task and 1 subtask issue type and their ids are 18 and 19 respectively

@SteveMcGrath
Copy link
Collaborator

what are the debug logs saying? The only other issue is that the screen selection is wrong.

Field \'customfield_16099\' cannot be set. It is not on the appropriate screen, or unknown.

@dil-ddsouza
Copy link
Author

2020-04-01 11:20:08,929 root INFO Tenable2JiraCloud Version 1.1.3
2020-04-01 11:20:08,930 root INFO Using configuration file config.yaml
2020-04-01 11:20:08,930 root INFO Running on Python 3.6.8 Linux/x86_64
2020-04-01 11:20:08,931 tenable.sc.TenableSC DEBUG {"method": "GET", "url": "https://tenable.sc:443/rest/system", "params": {}, "body": {}}
2020-04-01 11:20:08,935 urllib3.connectionpool DEBUG Starting new HTTPS connection (1): tenable.sc:443
2020-04-01 11:20:09,514 urllib3.connectionpool DEBUG https://tenable.sc:443 "GET /rest/system HTTP/1.1" 200 None
2020-04-01 11:20:09,653 tenable.sc.TenableSC DEBUG {"method": "POST", "url": "https://tenable.sc:443/rest/token", "params": "REDACTED", "body": "REDACTED"}
2020-04-01 11:20:10,102 urllib3.connectionpool DEBUG https://tenable.sc:443 "POST /rest/token HTTP/1.1" 200 264
2020-04-01 11:20:10,107 urllib3.connectionpool DEBUG Starting new HTTPS connection (1): production.atlassian.net
2020-04-01 11:20:10,423 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/project/VULN HTTP/1.1" 200 None
2020-04-01 11:20:10,911 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/field HTTP/1.1" 200 None
2020-04-01 11:20:11,087 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/issuetype HTTP/1.1" 200 None
2020-04-01 11:20:11,092 tenable_jira.jira.Jira DEBUG uri=https://diligentbrands.atlassian.net/rest/api/3/screens, query={'startAt': 0, 'maxResults': 100}, body={}
2020-04-01 11:20:11,164 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens?startAt=0&maxResults=100 HTTP/1.1" 200 None
2020-04-01 11:20:11,166 tenable_jira.jira.Jira DEBUG uri=https://diligentbrands.atlassian.net/rest/api/3/screens, query={'startAt': 100, 'maxResults': 100}, body={}
2020-04-01 11:20:11,226 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens?startAt=100&maxResults=100 HTTP/1.1" 200 None
2020-04-01 11:20:11,229 tenable_jira.jira.Jira DEBUG uri=https://diligentbrands.atlassian.net/rest/api/3/screens, query={'startAt': 200, 'maxResults': 100}, body={}
2020-04-01 11:20:11,313 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens?startAt=200&maxResults=100 HTTP/1.1" 200 None
2020-04-01 11:20:11,315 tenable_jira.jira.Jira DEBUG uri=https://diligentbrands.atlassian.net/rest/api/3/screens, query={'startAt': 300, 'maxResults': 100}, body={}
2020-04-01 11:20:11,445 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens?startAt=300&maxResults=100 HTTP/1.1" 200 None
2020-04-01 11:20:11,448 tenable_jira.jira.Jira DEBUG uri=https://diligentbrands.atlassian.net/rest/api/3/screens, query={'startAt': 400, 'maxResults': 100}, body={}
2020-04-01 11:20:11,544 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens?startAt=400&maxResults=100 HTTP/1.1" 200 None
2020-04-01 11:20:11,546 tenable_jira.jira.Jira DEBUG uri=https://diligentbrands.atlassian.net/rest/api/3/screens, query={'startAt': 500, 'maxResults': 100}, body={}
2020-04-01 11:20:11,654 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens?startAt=500&maxResults=100 HTTP/1.1" 200 None
2020-04-01 11:20:11,657 tenable_jira.transform.Tio2Jira INFO Using JIRA Screens [14632, 14633]
2020-04-01 11:20:11,708 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens/14632/tabs HTTP/1.1" 200 None
2020-04-01 11:20:11,922 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens/14632/tabs/15054/fields HTTP/1.1" 200 None
2020-04-01 11:20:11,925 tenable_jira.transform.Tio2Jira INFO CVEs already exists in 14632:15054
2020-04-01 11:20:11,925 tenable_jira.transform.Tio2Jira INFO Tenable VPR Score already exists in 14632:15054
2020-04-01 11:20:11,925 tenable_jira.transform.Tio2Jira INFO CVSSv2 Base Score already exists in 14632:15054
2020-04-01 11:20:11,925 tenable_jira.transform.Tio2Jira INFO Patch Publish Date already exists in 14632:15054
2020-04-01 11:20:11,925 tenable_jira.transform.Tio2Jira INFO CVSSv2 Temporal Score already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO CVSSv3 Base Score already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO CVSSv3 Temporal Score already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Tenable Plugin ID already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Tenable Plugin Family already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Tenable Plugin Name already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Vulnerability Severity already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Vulnerability First Seen already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Vulnerability Last Seen already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Vulnerability Last Fixed already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Vulnerability State already exists in 14632:15054
2020-04-01 11:20:11,926 tenable_jira.transform.Tio2Jira INFO Vulnerability Port already exists in 14632:15054
2020-04-01 11:20:11,927 tenable_jira.transform.Tio2Jira INFO Vulnerability Protocol already exists in 14632:15054
2020-04-01 11:20:12,074 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens/14632/tabs/15055/fields HTTP/1.1" 200 None
2020-04-01 11:20:12,075 tenable_jira.transform.Tio2Jira INFO Tenable Asset UUID already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Tenable Platform already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Device Hostname already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Device NetBIOS Name already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Device DNS Name already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Device IPv4 Addresses already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Device IPv6 Addresses already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Device MAC Addresses already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Device Network ID already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Vulnerability Repository ID already exists in 14632:15055
2020-04-01 11:20:12,076 tenable_jira.transform.Tio2Jira INFO Vulnerability Repository Name already exists in 14632:15055
2020-04-01 11:20:12,138 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens/14633/tabs HTTP/1.1" 200 None
2020-04-01 11:20:12,369 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens/14633/tabs/15056/fields HTTP/1.1" 200 None
2020-04-01 11:20:12,371 tenable_jira.transform.Tio2Jira INFO CVEs already exists in 14633:15056
2020-04-01 11:20:12,371 tenable_jira.transform.Tio2Jira INFO Tenable VPR Score already exists in 14633:15056
2020-04-01 11:20:12,372 tenable_jira.transform.Tio2Jira INFO CVSSv2 Base Score already exists in 14633:15056
2020-04-01 11:20:12,372 tenable_jira.transform.Tio2Jira INFO Patch Publish Date already exists in 14633:15056
2020-04-01 11:20:12,372 tenable_jira.transform.Tio2Jira INFO CVSSv2 Temporal Score already exists in 14633:15056
2020-04-01 11:20:12,372 tenable_jira.transform.Tio2Jira INFO CVSSv3 Base Score already exists in 14633:15056
2020-04-01 11:20:12,372 tenable_jira.transform.Tio2Jira INFO CVSSv3 Temporal Score already exists in 14633:15056
2020-04-01 11:20:12,373 tenable_jira.transform.Tio2Jira INFO Tenable Plugin ID already exists in 14633:15056
2020-04-01 11:20:12,373 tenable_jira.transform.Tio2Jira INFO Tenable Plugin Family already exists in 14633:15056
2020-04-01 11:20:12,373 tenable_jira.transform.Tio2Jira INFO Tenable Plugin Name already exists in 14633:15056
2020-04-01 11:20:12,373 tenable_jira.transform.Tio2Jira INFO Vulnerability Severity already exists in 14633:15056
2020-04-01 11:20:12,373 tenable_jira.transform.Tio2Jira INFO Vulnerability First Seen already exists in 14633:15056
2020-04-01 11:20:12,374 tenable_jira.transform.Tio2Jira INFO Vulnerability Last Seen already exists in 14633:15056
2020-04-01 11:20:12,374 tenable_jira.transform.Tio2Jira INFO Vulnerability Last Fixed already exists in 14633:15056
2020-04-01 11:20:12,374 tenable_jira.transform.Tio2Jira INFO Vulnerability State already exists in 14633:15056
2020-04-01 11:20:12,374 tenable_jira.transform.Tio2Jira INFO Vulnerability Port already exists in 14633:15056
2020-04-01 11:20:12,374 tenable_jira.transform.Tio2Jira INFO Vulnerability Protocol already exists in 14633:15056
2020-04-01 11:20:12,547 urllib3.connectionpool DEBUG https://production.atlassian.net "GET /rest/api/3/screens/14633/tabs/15057/fields HTTP/1.1" 200 None
2020-04-01 11:20:12,551 tenable_jira.transform.Tio2Jira INFO Tenable Asset UUID already exists in 14633:15057
2020-04-01 11:20:12,551 tenable_jira.transform.Tio2Jira INFO Tenable Platform already exists in 14633:15057
2020-04-01 11:20:12,551 tenable_jira.transform.Tio2Jira INFO Device Hostname already exists in 14633:15057
2020-04-01 11:20:12,551 tenable_jira.transform.Tio2Jira INFO Device NetBIOS Name already exists in 14633:15057
2020-04-01 11:20:12,551 tenable_jira.transform.Tio2Jira INFO Device DNS Name already exists in 14633:15057
2020-04-01 11:20:12,551 tenable_jira.transform.Tio2Jira INFO Device IPv4 Addresses already exists in 14633:15057
2020-04-01 11:20:12,551 tenable_jira.transform.Tio2Jira INFO Device IPv6 Addresses already exists in 14633:15057
2020-04-01 11:20:12,552 tenable_jira.transform.Tio2Jira INFO Device MAC Addresses already exists in 14633:15057
2020-04-01 11:20:12,552 tenable_jira.transform.Tio2Jira INFO Device Network ID already exists in 14633:15057
2020-04-01 11:20:12,552 tenable_jira.transform.Tio2Jira INFO Vulnerability Repository ID already exists in 14633:15057
2020-04-01 11:20:12,552 tenable_jira.transform.Tio2Jira INFO Vulnerability Repository Name already exists in 14633:15057
2020-04-01 11:20:12,552 tenable.sc.TenableSC DEBUG {"method": "GET", "url": "https://tenable.sc:443/rest/query/22708?fields=filters", "params": {}, "body": {}}
2020-04-01 11:20:12,847 urllib3.connectionpool DEBUG https://tenable.sc:443 "GET /rest/query/22708?fields=filters HTTP/1.1" 200 349
2020-04-01 11:20:12,848 tenable.sc.TenableSC DEBUG {"method": "POST", "url": "https://tenable.sc:443/rest/analysis", "params": {}, "body": {"type": "vuln", "sourceType": "cumulative", "query": {"tool": "vulndetails", "type": "vuln", "filters": [{"filterName": "severity", "operator": "=", "value": [{"id": "4", "name": "Critical", "description": "Critical Severity"}, {"id": "3", "name": "High", "description": "High Severity"}]}, {"filterName": "lastSeen", "operator": "=", "value": "1585353600-1585754412"}], "startOffset": 0, "endOffset": 1000}}}
2020-04-01 11:20:19,257 urllib3.connectionpool DEBUG https://tenable.sc:443 "POST /rest/analysis HTTP/1.1" 200 None
2020-04-01 11:20:23,427 tenable_jira.transform.Tio2Jira DEBUG Label Detected. Config={'jira_field': 'CVEs', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Task', 'Sub-Task'], 'tio_field': 'plugin.cve', 'tsc_field': 'cve', 'jira_id': 'customfield_16098'} value=CVE-1999-0517
2020-04-01 11:20:23,457 tenable_jira.transform.Tio2Jira DEBUG Label Detected. Config={'jira_field': 'Device MAC Addresses', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Sub-task'], 'tio_field': 'asset.mac_address', 'tsc_field': 'macAddress', 'jira_id': 'customfield_16109'} value=b8:f7:32:02:20:b4
2020-04-01 11:20:23,457 tenable_jira.transform.Tio2Jira DEBUG Label Detected. Config={'jira_field': 'Device IPv4 Addresses', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Sub-task'], 'tio_field': 'asset.ipv4', 'tsc_field': 'ip', 'jira_id': 'customfield_16110'} value=10.1.0.90
2020-04-01 11:20:23,460 tenable_jira.jira.Jira DEBUG uri=https://diligentbrands.atlassian.net/rest/api/3/search, query={}, body={"jql": "project = "VULN" and issuetype = "Task" and status not in (Closed, Done, Resolved) and "Tenable Plugin ID" ~ "41028""}
2020-04-01 11:20:24,058 urllib3.connectionpool DEBUG https://production.atlassian.net "POST /rest/api/3/search HTTP/1.1" 200 None
2020-04-01 11:20:24,060 tenable_jira.jira.Jira INFO UPDATED VULN-1 [41028] SNMP Agent Default Community Name (public)
2020-04-01 11:20:24,061 tenable_jira.jira.Jira DEBUG uri=https://diligentbrands.atlassian.net/rest/api/3/issue/296794, query={'notifyUsers': 'true', 'overrideScreenSecurity': 'false', 'overrideEditableFlag': 'false'}, body={"fields": {"project": {"key": "VULN"}, "issuetype": {"id": 18}, "customfield_16098": ["CVE-1999-0517"], "customfield_16099": "7.5", "customfield_16100": "1969-12-31T23:59:59.000+0000", "customfield_16101": "5.5", "customfield_16104": "41028", "customfield_16105": "SNMP", "customfield_16106": "SNMP Agent Default Community Name (public)", "customfield_16107": "High", "summary": "[41028] SNMP Agent Default Community Name (public)", "description": {"version": 1, "type": "doc", "content": [{"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Description"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "It is possible to obtain the default community name of the remote SNMP server.\n\nAn attacker may use this information to gain more knowledge about the remote host, or to change the configuration of the remote system (if the default community allows such modifications)."}]}, {"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Solution"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "Disable the SNMP service on the remote host if you do not use it.\nEither filter incoming UDP packets going to this port, or change the default community string."}]}]}}}
2020-04-01 11:20:24,322 urllib3.connectionpool DEBUG https://production.atlassian.net "PUT /rest/api/3/issue/296794?notifyUsers=true&overrideScreenSecurity=false&overrideEditableFlag=false HTTP/1.1" 400 None
2020-04-01 11:20:24,327 restfly.errors.BadRequestError ERROR [400: PUT] https://diligentbrands.atlassian.net/rest/api/3/issue/296794?notifyUsers=true&overrideScreenSecurity=false&overrideEditableFlag=false body=b'{"errorMessages":[],"errors":{"summary":"Field 'summary' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16101":"Field 'customfield_16101' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16100":"Field 'customfield_16100' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16099":"Field 'customfield_16099' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16098":"Field 'customfield_16098' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16105":"Field 'customfield_16105' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16104":"Field 'customfield_16104' cannot be set. It is not on the appropriate screen, or unknown.","description":"Field 'description' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16107":"Field 'customfield_16107' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16106":"Field 'customfield_16106' cannot be set. It is not on the appropriate screen, or unknown."}}'

@dil-ddsouza
Copy link
Author

what are the debug logs saying? The only other issue is that the screen selection is wrong.

Field \'customfield_16099\' cannot be set. It is not on the appropriate screen, or unknown.

I tried looking at that and I can't see anything wrong with the screen selection i.e. it's the right screen for the project created by the script itself

@dil-ddsouza
Copy link
Author

Oh another thing what I forgot to mention was that it creates 2 issues and then throws up that error on a particular vulnerability.

I created a new group manually and then tried running the script, again same issue, it stops at a particular vulnerbility. I will attach the debug log below

@SteveMcGrath
Copy link
Collaborator

thats really odd.

@dil-ddsouza
Copy link
Author

dil-ddsouza commented Apr 1, 2020

2020-04-01 12:51:47,450 root INFO Tenable2JiraCloud Version 1.1.3
2020-04-01 12:51:47,451 root INFO Using configuration file config.yaml
2020-04-01 12:51:47,451 root INFO Running on Python 3.6.8 Linux/x86_64
2020-04-01 12:51:47,453 tenable.sc.TenableSC DEBUG {"method": "GET", "url": "https://tenable.sc:443/rest/system", "params": {}, "body": {}}
2020-04-01 12:51:47,460 urllib3.connectionpool DEBUG Starting new HTTPS connection (1): tenable.sc:443
2020-04-01 12:51:47,721 urllib3.connectionpool DEBUG https://tenable.sc:443 "GET /rest/system HTTP/1.1" 200 None
2020-04-01 12:51:47,803 tenable.sc.TenableSC DEBUG {"method": "POST", "url": "https://tenable.sc:443/rest/token", "params": "REDACTED", "body": "REDACTED"}
2020-04-01 12:51:48,182 urllib3.connectionpool DEBUG https://tenable.sc:443 "POST /rest/token HTTP/1.1" 200 264
2020-04-01 12:51:48,186 urllib3.connectionpool DEBUG Starting new HTTPS connection (1): production.atlassian.net:443
2020-04-01 12:51:48,414 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/project/CVULN HTTP/1.1" 200 None
2020-04-01 12:51:48,787 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/field HTTP/1.1" 200 None
2020-04-01 12:51:48,936 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/issuetype HTTP/1.1" 200 None
2020-04-01 12:51:48,940 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens, query={'startAt': 0, 'maxResults': 100}, body={}
2020-04-01 12:51:49,003 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens?startAt=0&maxResults=100 HTTP/1.1" 200 None
2020-04-01 12:51:49,005 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens, query={'startAt': 100, 'maxResults': 100}, body={}
2020-04-01 12:51:49,097 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens?startAt=100&maxResults=100 HTTP/1.1" 200 None
2020-04-01 12:51:49,101 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens, query={'startAt': 200, 'maxResults': 100}, body={}
2020-04-01 12:51:49,251 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens?startAt=200&maxResults=100 HTTP/1.1" 200 None
2020-04-01 12:51:49,254 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens, query={'startAt': 300, 'maxResults': 100}, body={}
2020-04-01 12:51:49,310 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens?startAt=300&maxResults=100 HTTP/1.1" 200 None
2020-04-01 12:51:49,312 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens, query={'startAt': 400, 'maxResults': 100}, body={}
2020-04-01 12:51:49,384 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens?startAt=400&maxResults=100 HTTP/1.1" 200 None
2020-04-01 12:51:49,386 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens, query={'startAt': 500, 'maxResults': 100}, body={}
2020-04-01 12:51:49,447 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens?startAt=500&maxResults=100 HTTP/1.1" 200 None
2020-04-01 12:51:49,448 tenable_jira.transform.Tio2Jira INFO Using JIRA Screens [14635, 14636]
2020-04-01 12:51:49,498 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens/14635/tabs HTTP/1.1" 200 None
2020-04-01 12:51:49,506 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs, query={}, body={"name": "Vulnerability"}
2020-04-01 12:51:49,597 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs HTTP/1.1" 200 None
2020-04-01 12:51:49,655 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:49,663 tenable_jira.transform.Tio2Jira INFO Adding CVEs to Screen 14635:15065
2020-04-01 12:51:49,663 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16098"}
2020-04-01 12:51:49,829 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:49,831 tenable_jira.transform.Tio2Jira INFO Adding Tenable VPR Score to Screen 14635:15065
2020-04-01 12:51:49,831 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16124"}
2020-04-01 12:51:50,004 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:50,007 tenable_jira.transform.Tio2Jira INFO Adding CVSSv2 Base Score to Screen 14635:15065
2020-04-01 12:51:50,007 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16099"}
2020-04-01 12:51:50,232 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:50,234 tenable_jira.transform.Tio2Jira INFO Adding Patch Publish Date to Screen 14635:15065
2020-04-01 12:51:50,234 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16100"}
2020-04-01 12:51:50,411 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:50,413 tenable_jira.transform.Tio2Jira INFO Adding CVSSv2 Temporal Score to Screen 14635:15065
2020-04-01 12:51:50,413 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16101"}
2020-04-01 12:51:50,601 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:50,604 tenable_jira.transform.Tio2Jira INFO Adding CVSSv3 Base Score to Screen 14635:15065
2020-04-01 12:51:50,604 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16102"}
2020-04-01 12:51:50,775 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:50,777 tenable_jira.transform.Tio2Jira INFO Adding CVSSv3 Temporal Score to Screen 14635:15065
2020-04-01 12:51:50,777 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16103"}
2020-04-01 12:51:51,004 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:51,005 tenable_jira.transform.Tio2Jira INFO Adding Tenable Plugin ID to Screen 14635:15065
2020-04-01 12:51:51,005 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16104"}
2020-04-01 12:51:51,153 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:51,155 tenable_jira.transform.Tio2Jira INFO Adding Tenable Plugin Family to Screen 14635:15065
2020-04-01 12:51:51,156 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16105"}
2020-04-01 12:51:51,362 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:51,365 tenable_jira.transform.Tio2Jira INFO Adding Tenable Plugin Name to Screen 14635:15065
2020-04-01 12:51:51,365 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16106"}
2020-04-01 12:51:51,559 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:51,562 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Severity to Screen 14635:15065
2020-04-01 12:51:51,562 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16107"}
2020-04-01 12:51:51,758 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:51,760 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability First Seen to Screen 14635:15065
2020-04-01 12:51:51,760 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16116"}
2020-04-01 12:51:51,993 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:51,995 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Last Seen to Screen 14635:15065
2020-04-01 12:51:51,996 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16117"}
2020-04-01 12:51:52,152 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:52,155 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Last Fixed to Screen 14635:15065
2020-04-01 12:51:52,155 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16118"}
2020-04-01 12:51:52,298 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:52,299 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability State to Screen 14635:15065
2020-04-01 12:51:52,300 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16119"}
2020-04-01 12:51:52,521 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:52,530 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Port to Screen 14635:15065
2020-04-01 12:51:52,530 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16120"}
2020-04-01 12:51:52,756 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:52,759 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Protocol to Screen 14635:15065
2020-04-01 12:51:52,759 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15065/fields, query={}, body={"fieldId": "customfield_16121"}
2020-04-01 12:51:52,927 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15065/fields HTTP/1.1" 200 None
2020-04-01 12:51:52,929 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs, query={}, body={"name": "Asset"}
2020-04-01 12:51:52,981 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs HTTP/1.1" 200 None
2020-04-01 12:51:53,042 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:53,047 tenable_jira.transform.Tio2Jira INFO Adding Tenable Asset UUID to Screen 14635:15066
2020-04-01 12:51:53,047 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16108"}
2020-04-01 12:51:53,211 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:53,213 tenable_jira.transform.Tio2Jira INFO Adding Tenable Platform to Screen 14635:15066
2020-04-01 12:51:53,213 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16097"}
2020-04-01 12:51:53,370 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:53,372 tenable_jira.transform.Tio2Jira INFO Adding Device Hostname to Screen 14635:15066
2020-04-01 12:51:53,372 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16112"}
2020-04-01 12:51:53,535 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:53,538 tenable_jira.transform.Tio2Jira INFO Adding Device NetBIOS Name to Screen 14635:15066
2020-04-01 12:51:53,538 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16113"}
2020-04-01 12:51:53,700 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:53,702 tenable_jira.transform.Tio2Jira INFO Adding Device DNS Name to Screen 14635:15066
2020-04-01 12:51:53,702 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16114"}
2020-04-01 12:51:53,854 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:53,856 tenable_jira.transform.Tio2Jira INFO Adding Device IPv4 Addresses to Screen 14635:15066
2020-04-01 12:51:53,856 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16110"}
2020-04-01 12:51:54,051 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:54,053 tenable_jira.transform.Tio2Jira INFO Adding Device IPv6 Addresses to Screen 14635:15066
2020-04-01 12:51:54,053 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16111"}
2020-04-01 12:51:54,227 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:54,229 tenable_jira.transform.Tio2Jira INFO Adding Device MAC Addresses to Screen 14635:15066
2020-04-01 12:51:54,229 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16109"}
2020-04-01 12:51:54,394 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:54,396 tenable_jira.transform.Tio2Jira INFO Adding Device Network ID to Screen 14635:15066
2020-04-01 12:51:54,397 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16115"}
2020-04-01 12:51:54,569 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:54,571 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Repository ID to Screen 14635:15066
2020-04-01 12:51:54,571 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16122"}
2020-04-01 12:51:54,765 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:54,769 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Repository Name to Screen 14635:15066
2020-04-01 12:51:54,769 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14635/tabs/15066/fields, query={}, body={"fieldId": "customfield_16123"}
2020-04-01 12:51:54,927 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14635/tabs/15066/fields HTTP/1.1" 200 None
2020-04-01 12:51:54,984 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens/14636/tabs HTTP/1.1" 200 None
2020-04-01 12:51:54,986 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs, query={}, body={"name": "Vulnerability"}
2020-04-01 12:51:55,040 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs HTTP/1.1" 200 None
2020-04-01 12:51:55,098 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:55,100 tenable_jira.transform.Tio2Jira INFO Adding CVEs to Screen 14636:15067
2020-04-01 12:51:55,100 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16098"}
2020-04-01 12:51:55,329 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:55,332 tenable_jira.transform.Tio2Jira INFO Adding Tenable VPR Score to Screen 14636:15067
2020-04-01 12:51:55,332 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16124"}
2020-04-01 12:51:55,538 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:55,540 tenable_jira.transform.Tio2Jira INFO Adding CVSSv2 Base Score to Screen 14636:15067
2020-04-01 12:51:55,540 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16099"}
2020-04-01 12:51:55,747 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:55,749 tenable_jira.transform.Tio2Jira INFO Adding Patch Publish Date to Screen 14636:15067
2020-04-01 12:51:55,749 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16100"}
2020-04-01 12:51:55,963 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:55,966 tenable_jira.transform.Tio2Jira INFO Adding CVSSv2 Temporal Score to Screen 14636:15067
2020-04-01 12:51:55,966 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16101"}
2020-04-01 12:51:56,144 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:56,146 tenable_jira.transform.Tio2Jira INFO Adding CVSSv3 Base Score to Screen 14636:15067
2020-04-01 12:51:56,146 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16102"}
2020-04-01 12:51:56,290 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:56,292 tenable_jira.transform.Tio2Jira INFO Adding CVSSv3 Temporal Score to Screen 14636:15067
2020-04-01 12:51:56,292 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16103"}
2020-04-01 12:51:56,525 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:56,528 tenable_jira.transform.Tio2Jira INFO Adding Tenable Plugin ID to Screen 14636:15067
2020-04-01 12:51:56,528 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16104"}
2020-04-01 12:51:56,731 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:56,733 tenable_jira.transform.Tio2Jira INFO Adding Tenable Plugin Family to Screen 14636:15067
2020-04-01 12:51:56,734 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16105"}
2020-04-01 12:51:56,885 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:56,887 tenable_jira.transform.Tio2Jira INFO Adding Tenable Plugin Name to Screen 14636:15067
2020-04-01 12:51:56,887 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16106"}
2020-04-01 12:51:57,060 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:57,062 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Severity to Screen 14636:15067
2020-04-01 12:51:57,062 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16107"}
2020-04-01 12:51:57,218 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:57,222 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability First Seen to Screen 14636:15067
2020-04-01 12:51:57,222 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16116"}
2020-04-01 12:51:57,395 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:57,397 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Last Seen to Screen 14636:15067
2020-04-01 12:51:57,398 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16117"}
2020-04-01 12:51:57,565 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:57,567 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Last Fixed to Screen 14636:15067
2020-04-01 12:51:57,567 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16118"}
2020-04-01 12:51:57,739 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:57,741 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability State to Screen 14636:15067
2020-04-01 12:51:57,742 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16119"}
2020-04-01 12:51:57,980 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:57,982 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Port to Screen 14636:15067
2020-04-01 12:51:57,983 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16120"}
2020-04-01 12:51:58,195 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:58,197 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Protocol to Screen 14636:15067
2020-04-01 12:51:58,197 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15067/fields, query={}, body={"fieldId": "customfield_16121"}
2020-04-01 12:51:58,415 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15067/fields HTTP/1.1" 200 None
2020-04-01 12:51:58,417 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs, query={}, body={"name": "Asset"}
2020-04-01 12:51:58,483 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs HTTP/1.1" 200 None
2020-04-01 12:51:58,573 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "GET /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:51:58,575 tenable_jira.transform.Tio2Jira INFO Adding Tenable Asset UUID to Screen 14636:15068
2020-04-01 12:51:58,576 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16108"}
2020-04-01 12:51:58,796 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:51:58,799 tenable_jira.transform.Tio2Jira INFO Adding Tenable Platform to Screen 14636:15068
2020-04-01 12:51:58,799 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16097"}
2020-04-01 12:51:58,971 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:51:58,974 tenable_jira.transform.Tio2Jira INFO Adding Device Hostname to Screen 14636:15068
2020-04-01 12:51:58,974 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16112"}
2020-04-01 12:51:59,146 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:51:59,148 tenable_jira.transform.Tio2Jira INFO Adding Device NetBIOS Name to Screen 14636:15068
2020-04-01 12:51:59,148 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16113"}
2020-04-01 12:51:59,317 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:51:59,320 tenable_jira.transform.Tio2Jira INFO Adding Device DNS Name to Screen 14636:15068
2020-04-01 12:51:59,320 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16114"}
2020-04-01 12:51:59,505 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:51:59,507 tenable_jira.transform.Tio2Jira INFO Adding Device IPv4 Addresses to Screen 14636:15068
2020-04-01 12:51:59,507 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16110"}
2020-04-01 12:51:59,721 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:51:59,723 tenable_jira.transform.Tio2Jira INFO Adding Device IPv6 Addresses to Screen 14636:15068
2020-04-01 12:51:59,723 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16111"}
2020-04-01 12:51:59,968 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:51:59,970 tenable_jira.transform.Tio2Jira INFO Adding Device MAC Addresses to Screen 14636:15068
2020-04-01 12:51:59,970 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16109"}
2020-04-01 12:52:00,202 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:52:00,203 tenable_jira.transform.Tio2Jira INFO Adding Device Network ID to Screen 14636:15068
2020-04-01 12:52:00,204 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16115"}
2020-04-01 12:52:00,360 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:52:00,362 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Repository ID to Screen 14636:15068
2020-04-01 12:52:00,362 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16122"}
2020-04-01 12:52:00,546 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:52:00,548 tenable_jira.transform.Tio2Jira INFO Adding Vulnerability Repository Name to Screen 14636:15068
2020-04-01 12:52:00,548 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/screens/14636/tabs/15068/fields, query={}, body={"fieldId": "customfield_16123"}
2020-04-01 12:52:00,698 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/screens/14636/tabs/15068/fields HTTP/1.1" 200 None
2020-04-01 12:52:00,700 tenable.sc.TenableSC DEBUG {"method": "GET", "url": "https://tenable.sc:443/rest/query/22708?fields=filters", "params": {}, "body": {}}
2020-04-01 12:52:01,039 urllib3.connectionpool DEBUG https://tenable.sc:443 "GET /rest/query/22708?fields=filters HTTP/1.1" 200 349
2020-04-01 12:52:01,041 tenable.sc.TenableSC DEBUG {"method": "POST", "url": "https://tenable.sc:443/rest/analysis", "params": {}, "body": {"type": "vuln", "sourceType": "cumulative", "query": {"tool": "vulndetails", "type": "vuln", "filters": [{"filterName": "severity", "operator": "=", "value": [{"id": "4", "name": "Critical", "description": "Critical Severity"}, {"id": "3", "name": "High", "description": "High Severity"}]}, {"filterName": "lastSeen", "operator": "=", "value": "1585353600-1585759920"}], "startOffset": 0, "endOffset": 1000}}}
2020-04-01 12:52:08,120 urllib3.connectionpool DEBUG https://tenable.sc:443 "POST /rest/analysis HTTP/1.1" 200 None
2020-04-01 12:52:09,098 tenable_jira.transform.Tio2Jira DEBUG Label Detected.  Config={'jira_field': 'CVEs', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Task', 'Sub-Task'], 'tio_field': 'plugin.cve', 'tsc_field': 'cve', 'jira_id': 'customfield_16098'} value=CVE-1999-0517
2020-04-01 12:52:09,128 tenable_jira.transform.Tio2Jira DEBUG Label Detected.  Config={'jira_field': 'Device MAC Addresses', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Sub-task'], 'tio_field': 'asset.mac_address', 'tsc_field': 'macAddress', 'jira_id': 'customfield_16109'} value=b8:f7:32:02:20:b4
2020-04-01 12:52:09,128 tenable_jira.transform.Tio2Jira DEBUG Label Detected.  Config={'jira_field': 'Device IPv4 Addresses', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Sub-task'], 'tio_field': 'asset.ipv4', 'tsc_field': 'ip', 'jira_id': 'customfield_16110'} value=10.1.1.1
2020-04-01 12:52:09,131 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/search, query={}, body={"jql": "project = \"CVULN\" and issuetype = \"Task\" and status not in (Closed, Done, Resolved) and \"Tenable Plugin ID\" ~ \"41028\""}
2020-04-01 12:52:09,451 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/search HTTP/1.1" 200 None
2020-04-01 12:52:09,453 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/issue, query={'update_history': False}, body={"fields": {"project": {"key": "CVULN"}, "issuetype": {"id": 18}, "customfield_16098": ["CVE-1999-0517"], "customfield_16099": "7.5", "customfield_16100": "1969-12-31T23:59:59.000+0000", "customfield_16101": "5.5", "customfield_16104": "41028", "customfield_16105": "SNMP", "customfield_16106": "SNMP Agent Default Community Name (public)", "customfield_16107": "High", "summary": "[41028] SNMP Agent Default Community Name (public)", "description": {"version": 1, "type": "doc", "content": [{"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Description"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "It is possible to obtain the default community name of the remote SNMP server.\n\nAn attacker may use this information to gain more knowledge about the remote host, or to change the configuration of the remote system (if the default community allows such modifications)."}]}, {"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Solution"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "Disable the SNMP service on the remote host if you do not use it.\nEither filter incoming UDP packets going to this port, or change the default community string."}]}]}}}
2020-04-01 12:52:10,046 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/issue?update_history=False HTTP/1.1" 201 None
2020-04-01 12:52:10,047 tenable_jira.jira.Jira INFO CREATED CVULN-1 [41028] SNMP Agent Default Community Name (public)
2020-04-01 12:52:10,048 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/search, query={}, body={"jql": "project = \"CVULN\" and issuetype = \"Sub-task\" and status not in (Closed, Done, Resolved) and \"Tenable Platform\" ~ \"Tenable.sc\" and \"Tenable Plugin ID\" ~ \"41028\" and \"Tenable Asset UUID\" is EMPTY and \"Device IPv4 Addresses\" = 10.1.1.1 and \"Device IPv6 Addresses\" is EMPTY and \"Vulnerability Port\" ~ \"161\" and \"Vulnerability Protocol\" ~ \"UDP\""}
2020-04-01 12:52:10,450 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/search HTTP/1.1" 200 None
2020-04-01 12:52:10,453 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/issue, query={'update_history': False}, body={"fields": {"project": {"key": "CVULN"}, "issuetype": {"id": 19}, "customfield_16097": "Tenable.sc", "customfield_16099": "7.5", "customfield_16100": "1969-12-31T23:59:59.000+0000", "customfield_16101": "5.5", "customfield_16104": "41028", "customfield_16105": "SNMP", "customfield_16106": "SNMP Agent Default Community Name (public)", "customfield_16107": "High", "customfield_16109": ["b8:f7:32:02:20:b4"], "customfield_16110": ["10.1.1.1"], "customfield_16116": "2019-12-15T22:26:39.000+0000", "customfield_16117": "2020-03-29T06:14:20.000+0000", "customfield_16120": "161", "customfield_16121": "UDP", "customfield_16122": "145", "customfield_16123": "Test Vulns", "summary": "[10.1.1.1/161/UDP] [41028] SNMP Agent Default Community Name (public)", "description": {"version": 1, "type": "doc", "content": [{"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Description"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "It is possible to obtain the default community name of the remote SNMP server.\n\nAn attacker may use this information to gain more knowledge about the remote host, or to change the configuration of the remote system (if the default community allows such modifications)."}]}, {"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Solution"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "Disable the SNMP service on the remote host if you do not use it.\nEither filter incoming UDP packets going to this port, or change the default community string."}]}, {"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Output"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "No Output"}]}]}, "parent": {"key": "CVULN-1"}}}
2020-04-01 12:52:11,189 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/issue?update_history=False HTTP/1.1" 201 None
2020-04-01 12:52:11,191 tenable_jira.jira.Jira INFO CREATED CVULN-2 [10.1.1.1/161/UDP] [41028] SNMP Agent Default Community Name (public)
2020-04-01 12:52:11,191 tenable_jira.transform.Tio2Jira DEBUG Label Detected.  Config={'jira_field': 'CVEs', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Task', 'Sub-Task'], 'tio_field': 'plugin.cve', 'tsc_field': 'cve', 'jira_id': 'customfield_16098'} value=CVE-1999-0517
2020-04-01 12:52:11,193 tenable_jira.transform.Tio2Jira DEBUG Label Detected.  Config={'jira_field': 'Device MAC Addresses', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Sub-task'], 'tio_field': 'asset.mac_address', 'tsc_field': 'macAddress', 'jira_id': 'customfield_16109'} value=b8:f7:32:02:20:b4
2020-04-01 12:52:11,193 tenable_jira.transform.Tio2Jira DEBUG Label Detected.  Config={'jira_field': 'Device IPv4 Addresses', 'type': 'labels', 'searcher': 'labelsearcher', 'issue_type': ['Sub-task'], 'tio_field': 'asset.ipv4', 'tsc_field': 'ip', 'jira_id': 'customfield_16110'} value=10.1.0.91
2020-04-01 12:52:11,195 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/search, query={}, body={"jql": "project = \"CVULN\" and issuetype = \"Task\" and status not in (Closed, Done, Resolved) and \"Tenable Plugin ID\" ~ \"41028\""}
2020-04-01 12:52:11,883 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "POST /rest/api/3/search HTTP/1.1" 200 None
2020-04-01 12:52:11,886 tenable_jira.jira.Jira INFO UPDATED CVULN-1 [41028] SNMP Agent Default Community Name (public)
2020-04-01 12:52:11,886 tenable_jira.jira.Jira DEBUG uri=https://production.atlassian.net/rest/api/3/issue/296834, query={'notifyUsers': 'true', 'overrideScreenSecurity': 'false', 'overrideEditableFlag': 'false'}, body={"fields": {"project": {"key": "CVULN"}, "issuetype": {"id": 18}, "customfield_16098": ["CVE-1999-0517"], "customfield_16099": "7.5", "customfield_16100": "1969-12-31T23:59:59.000+0000", "customfield_16101": "5.5", "customfield_16104": "41028", "customfield_16105": "SNMP", "customfield_16106": "SNMP Agent Default Community Name (public)", "customfield_16107": "High", "summary": "[41028] SNMP Agent Default Community Name (public)", "description": {"version": 1, "type": "doc", "content": [{"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Description"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "It is possible to obtain the default community name of the remote SNMP server.\n\nAn attacker may use this information to gain more knowledge about the remote host, or to change the configuration of the remote system (if the default community allows such modifications)."}]}, {"type": "heading", "attrs": {"level": 1}, "content": [{"type": "text", "text": "Solution"}]}, {"type": "paragraph", "content": [{"type": "text", "text": "Disable the SNMP service on the remote host if you do not use it.\nEither filter incoming UDP packets going to this port, or change the default community string."}]}]}}}
2020-04-01 12:52:12,111 urllib3.connectionpool DEBUG https://production.atlassian.net:443 "PUT /rest/api/3/issue/296834?notifyUsers=true&overrideScreenSecurity=false&overrideEditableFlag=false HTTP/1.1" 400 None
2020-04-01 12:52:12,113 restfly.errors.BadRequestError ERROR [400: PUT] https://production.atlassian.net/rest/api/3/issue/296834?notifyUsers=true&overrideScreenSecurity=false&overrideEditableFlag=false body=b'{"errorMessages":[],"errors":{"summary":"Field \'summary\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16101":"Field \'customfield_16101\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16100":"Field \'customfield_16100\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16099":"Field \'customfield_16099\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16098":"Field \'customfield_16098\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16105":"Field \'customfield_16105\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16104":"Field \'customfield_16104\' cannot be set. It is not on the appropriate screen, or unknown.","description":"Field \'description\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16107":"Field \'customfield_16107\' cannot be set. It is not on the appropriate screen, or unknown.","customfield_16106":"Field \'customfield_16106\' cannot be set. It is not on the appropriate screen, or unknown."}}'

@dil-ddsouza
Copy link
Author

Do you know if there are any specific api related permissions that need to be turned on for creating issues?

I don't know, I am thinking it creates the first few issues and then realises "Oh hold on! this person doesn't have permissions!, we need to block the rest" - sorry if it sounds a bit stupid but I seriously can't think of anything else

@dil-ddsouza
Copy link
Author

Hey Steve,

Relieve!!!! I cracked it, it was a permission thing causing this. I went in and gave the API user all the permissions relating to issues and that did the trick.
Thanks for all your help with this

@SteveMcGrath
Copy link
Collaborator

awesome! mind detailing what perms you needed to give the user? I can update our docs to leverage that.

@dil-ddsouza
Copy link
Author

Sure! I gave the following permissions:
Assignable User
Assign Issues
Close Issues
Create Issues
Delete Issues
Edit Issues
Link Issues
Modify Reporter
Move Issues
Resolve Issues
Schedule Issues
Set Issue Security
Transition Issues

or you could just use the 'Grant Permissions' wizard within Jira cloud and grant all permissions related to 'Issues'

@ninneman
Copy link

ninneman commented Apr 1, 2020

@dil-ddsouza did you assign the API user these permissions directly, or via group membership?

@dil-ddsouza
Copy link
Author

Via the group permission option, which allows the grant permissions wizard

@SteveMcGrath SteveMcGrath added documentation Improvements or additions to documentation question Further information is requested labels Apr 8, 2020
SteveMcGrath added a commit that referenced this issue Apr 17, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@pbsjt
Copy link

pbsjt commented Oct 29, 2020

Sure! I gave the following permissions:
Assignable User
Assign Issues
Close Issues
Create Issues
Delete Issues
Edit Issues
Link Issues
Modify Reporter
Move Issues
Resolve Issues
Schedule Issues
Set Issue Security
Transition Issues

or you could just use the 'Grant Permissions' wizard within Jira cloud and grant all permissions related to 'Issues'

Since you determined the user didn't have proper privileges, did you initially create a user with site admin privileges as mentioned in this guide? JIRA admin profiles seem convoluted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants