UNPKG

n8n-nodes-nessus

Version:

n8n community node for Tenable Nessus vulnerability scanner integration

44 lines 1.36 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NessusApi = void 0; class NessusApi { constructor() { this.name = 'nessusApi'; this.displayName = 'Nessus API'; this.documentationUrl = 'https://developer.tenable.com/reference/navigate'; this.icon = 'file:nessus-icon.svg'; this.properties = [ { displayName: 'Nessus URL', name: 'url', type: 'string', default: '', placeholder: 'https://localhost:8834', }, { displayName: 'Access Key', name: 'accessKey', type: 'string', typeOptions: { password: true }, default: '', }, { displayName: 'Secret Key', name: 'secretKey', type: 'string', typeOptions: { password: true, }, default: '', }, { displayName: 'Allow Self-Signed Certificates', name: 'allowUnauthorizedCerts', type: 'boolean', default: false, }, ]; } } exports.NessusApi = NessusApi; //# sourceMappingURL=NessusApi.credentials.js.map