├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── compatibilty_request.md │ ├── feature_request.md │ ├── new_release.md │ └── regression_testing.md └── pull_request_template.md ├── .gitignore ├── .nvmrc ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASING.md ├── SECURITY.md ├── SplunkAppForWazuh ├── README.md ├── appserver │ ├── controllers │ │ ├── __init__.py │ │ ├── api.py │ │ ├── config.py │ │ ├── manager.py │ │ ├── queue.py │ │ ├── report.py │ │ ├── report_vars.py │ │ └── users.py │ └── static │ │ ├── css │ │ ├── images │ │ │ ├── app_advanced_settings.svg │ │ │ ├── app_apm.svg │ │ │ ├── app_aws.svg │ │ │ ├── app_ciscat.svg │ │ │ ├── app_dashboard.svg │ │ │ ├── app_devtools.svg │ │ │ ├── app_discover.svg │ │ │ ├── app_index_pattern.svg │ │ │ ├── app_logging.svg │ │ │ ├── app_monitoring.svg │ │ │ ├── app_saved_objects.svg │ │ │ ├── app_sca.svg │ │ │ ├── app_security.svg │ │ │ ├── app_timelion.svg │ │ │ ├── app_visualize.svg │ │ │ ├── docker-black.svg │ │ │ ├── docker.png │ │ │ ├── docker.svg │ │ │ ├── groups.png │ │ │ ├── groups.svg │ │ │ ├── loupe.png │ │ │ ├── mitre.svg │ │ │ ├── osquery.svg │ │ │ ├── reporting.png │ │ │ ├── reporting.svg │ │ │ ├── ruleset.png │ │ │ ├── ruleset.svg │ │ │ ├── sca.png │ │ │ ├── sca_no_scans.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_desc_disabled.png │ │ │ └── wazuh │ │ │ │ ├── png │ │ │ │ ├── logo.png │ │ │ │ ├── wazuh_white_full_edge.png │ │ │ │ └── wazuh_white_iso_edge.png │ │ │ │ └── svg │ │ │ │ ├── wazuh_white_full.svg │ │ │ │ └── wazuh_white_iso.svg │ │ ├── styles │ │ │ ├── animated.css │ │ │ ├── common.css │ │ │ ├── component.css │ │ │ ├── dropzone.css │ │ │ ├── height.css │ │ │ ├── jquery-ui.css │ │ │ ├── kbn.css │ │ │ ├── layout.css │ │ │ ├── loader.css │ │ │ ├── media-queries.css │ │ │ ├── table_decorations.css │ │ │ ├── toast.css │ │ │ ├── typography.css │ │ │ ├── variables.css │ │ │ ├── wazuh_decorations.css │ │ │ ├── wz-add-filter-chip.css │ │ │ ├── wz-multiple-selector.css │ │ │ ├── wz_tooltips.css │ │ │ └── xml-editor.css │ │ └── thirdPartyStyles │ │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ └── material │ │ │ ├── animate.css │ │ │ ├── material.css │ │ │ ├── oxygen.css │ │ │ └── passion.css │ │ └── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── config │ │ ├── index.js │ │ ├── module.js │ │ └── routes │ │ │ ├── agents-states.js │ │ │ ├── management-states.js │ │ │ ├── overview-states.js │ │ │ ├── security-states.js │ │ │ └── settings-states.js │ │ ├── controllers │ │ ├── agents │ │ │ ├── agents │ │ │ │ ├── agents.html │ │ │ │ └── agentsCtrl.js │ │ │ ├── audit │ │ │ │ ├── agents-audit.html │ │ │ │ └── agentsAuditCtrl.js │ │ │ ├── ciscat │ │ │ │ ├── agents-ciscat.html │ │ │ │ └── agentsCiscatCtrl.js │ │ │ ├── configuration-assessment │ │ │ │ ├── agents-ca.html │ │ │ │ └── agentsConfigurationAssessmentsCtrl.js │ │ │ ├── configuration │ │ │ │ └── agentConfigCtrl.js │ │ │ ├── cve │ │ │ │ ├── agents-cve.html │ │ │ │ └── agentsCveCtrl.js │ │ │ ├── docker │ │ │ │ ├── agents-docker.html │ │ │ │ └── agentsDockerCtrl.js │ │ │ ├── fim │ │ │ │ ├── agents-fim.html │ │ │ │ └── agentsFimCtrl.js │ │ │ ├── gdpr │ │ │ │ ├── agents-gdpr.html │ │ │ │ └── agentsGdprCtrl.js │ │ │ ├── general │ │ │ │ ├── agents-general.html │ │ │ │ └── agentsGeneralCtrl.js │ │ │ ├── hipaa │ │ │ │ ├── agents-hipaa.html │ │ │ │ └── agentsHipaaCtrl.js │ │ │ ├── index.js │ │ │ ├── inventory │ │ │ │ ├── inventory.html │ │ │ │ └── inventoryCtrl.js │ │ │ ├── nist │ │ │ │ ├── agents-nist.html │ │ │ │ └── agentsNistCtrl.js │ │ │ ├── osquery │ │ │ │ ├── osquery.html │ │ │ │ └── osqueryCtrl.js │ │ │ ├── overview │ │ │ │ ├── agentsOverviewCtrl.js │ │ │ │ └── overview.html │ │ │ ├── pcidss │ │ │ │ ├── agents-pci.html │ │ │ │ └── agentsPciCtrl.js │ │ │ ├── policy-monitoring │ │ │ │ ├── agents-pm.html │ │ │ │ └── agentsPolicyMonitoringCtrl.js │ │ │ ├── scap │ │ │ │ ├── agents-openscap.html │ │ │ │ └── agentsOpenScapCtrl.js │ │ │ ├── virustotal │ │ │ │ ├── agents-virustotal.html │ │ │ │ └── agentsVirusTotalCtrl.js │ │ │ └── vulnerabilities │ │ │ │ ├── agents-vulnerabilities.html │ │ │ │ └── agentsVulnerabilitiesCtrl.js │ │ ├── dev-tools │ │ │ ├── dev-tools.html │ │ │ └── devToolsCtrl.js │ │ ├── discover │ │ │ ├── discover.html │ │ │ └── discoverCtrl.js │ │ ├── index.js │ │ ├── main │ │ │ └── mainCtrl.js │ │ ├── management │ │ │ ├── cdb │ │ │ │ ├── manager-cdb-id.html │ │ │ │ ├── manager-cdb.html │ │ │ │ ├── managerCdbCtrl.js │ │ │ │ └── managerCdbIdCtrl.js │ │ │ ├── configuration │ │ │ │ ├── active-response │ │ │ │ │ ├── active-response.html │ │ │ │ │ └── agents-active-response.html │ │ │ │ ├── agentless │ │ │ │ │ └── agentless.html │ │ │ │ ├── alerts │ │ │ │ │ └── alerts.html │ │ │ │ ├── amazon-s3 │ │ │ │ │ └── amazon-s3.html │ │ │ │ ├── azure-logs │ │ │ │ │ └── azure-logs.html │ │ │ │ ├── both-configuration.html │ │ │ │ ├── breadcrumbs │ │ │ │ │ └── breadcrumbs.html │ │ │ │ ├── cis-cat │ │ │ │ │ └── cis-cat.html │ │ │ │ ├── client-buffer │ │ │ │ │ └── client-buffer.html │ │ │ │ ├── client │ │ │ │ │ └── client.html │ │ │ │ ├── cluster │ │ │ │ │ └── cluster.html │ │ │ │ ├── configurationCtrl.js │ │ │ │ ├── database-output │ │ │ │ │ └── database-output.html │ │ │ │ ├── docker-listener │ │ │ │ │ └── docker-listener.html │ │ │ │ ├── global-configuration │ │ │ │ │ └── global-configuration.html │ │ │ │ ├── integrations │ │ │ │ │ └── integrations.html │ │ │ │ ├── integrity-monitoring │ │ │ │ │ └── integrity-monitoring.html │ │ │ │ ├── log-collection │ │ │ │ │ └── log-collection.html │ │ │ │ ├── open-scap │ │ │ │ │ └── open-scap.html │ │ │ │ ├── osquery │ │ │ │ │ └── osquery.html │ │ │ │ ├── policy-monitoring │ │ │ │ │ └── policy-monitoring.html │ │ │ │ ├── registration-service │ │ │ │ │ └── registration-service.html │ │ │ │ ├── ruleset │ │ │ │ │ └── ruleset.html │ │ │ │ ├── syscollector │ │ │ │ │ └── syscollector.html │ │ │ │ ├── vulnerabilities │ │ │ │ │ └── vulnerabilities.html │ │ │ │ ├── wazuh-commands │ │ │ │ │ └── wazuh-commands.html │ │ │ │ └── welcome │ │ │ │ │ └── welcome.html │ │ │ ├── decoders │ │ │ │ ├── manager-decoders-id.html │ │ │ │ ├── manager-decoders.html │ │ │ │ ├── managerDecodersCtrl.js │ │ │ │ └── managerDecodersIdCtrl.js │ │ │ ├── edition │ │ │ │ ├── edition.html │ │ │ │ └── editionCtrl.js │ │ │ ├── groups │ │ │ │ ├── groups.html │ │ │ │ └── groupsCtrl.js │ │ │ ├── index.js │ │ │ ├── logs │ │ │ │ ├── manager-logs.html │ │ │ │ └── managerLogsCtrl.js │ │ │ ├── monitoring │ │ │ │ ├── monitoring.html │ │ │ │ └── monitoringCtrl.js │ │ │ ├── reporting │ │ │ │ ├── reporting.html │ │ │ │ └── reportingCtrl.js │ │ │ ├── rules │ │ │ │ ├── manager-ruleset-id.html │ │ │ │ ├── manager-ruleset.html │ │ │ │ ├── managerRulesetCtrl.js │ │ │ │ ├── managerRulesetIdCtrl.js │ │ │ │ └── ruleset.js │ │ │ ├── status │ │ │ │ ├── status.html │ │ │ │ └── statusCtrl.js │ │ │ └── welcome │ │ │ │ └── manager-welcome.html │ │ ├── module.js │ │ ├── overview │ │ │ ├── audit │ │ │ │ ├── overview-audit.html │ │ │ │ └── overviewAuditCtrl.js │ │ │ ├── aws │ │ │ │ ├── aws.html │ │ │ │ └── awsCtrl.js │ │ │ ├── ciscat │ │ │ │ ├── ciscatCtrl.js │ │ │ │ └── overview-ciscat.html │ │ │ ├── docker │ │ │ │ ├── dockerCtrl.js │ │ │ │ └── overview-docker.html │ │ │ ├── fim │ │ │ │ ├── overview-fim.html │ │ │ │ └── overviewFimCtrl.js │ │ │ ├── gdpr │ │ │ │ ├── overview-gdpr.html │ │ │ │ └── overviewGdprCtrl.js │ │ │ ├── general │ │ │ │ ├── overview-general.html │ │ │ │ └── overviewGeneralCtrl.js │ │ │ ├── hipaa │ │ │ │ ├── overview-hipaa.html │ │ │ │ └── overviewHipaaCtrl.js │ │ │ ├── index.js │ │ │ ├── mitre-ids │ │ │ │ ├── lib │ │ │ │ │ └── discover-search-helper.js │ │ │ │ ├── overview-mitre-ids.html │ │ │ │ └── overviewMitreIdsCtrl.js │ │ │ ├── mitre │ │ │ │ ├── overview-mitre.html │ │ │ │ └── overviewMitreCtrl.js │ │ │ ├── nist │ │ │ │ ├── overview-nist.html │ │ │ │ └── overviewNistCtrl.js │ │ │ ├── osquery │ │ │ │ ├── osquery.html │ │ │ │ └── osqueryCtrl.js │ │ │ ├── pci │ │ │ │ ├── overview-pci.html │ │ │ │ └── overviewPciCtrl.js │ │ │ ├── policy-monitoring │ │ │ │ ├── overview-pm.html │ │ │ │ └── overviewPolicyMonitoringCtrl.js │ │ │ ├── sca │ │ │ │ ├── overview-sca.html │ │ │ │ └── overviewSCACtrl.js │ │ │ ├── scap │ │ │ │ ├── overview-openscap.html │ │ │ │ └── overviewOpenScapCtrl.js │ │ │ ├── virustotal │ │ │ │ ├── overview-virustotal.html │ │ │ │ └── overviewVirusTotalCtrl.js │ │ │ ├── vulnerabilities │ │ │ │ ├── overview-vulnerabilities.html │ │ │ │ └── overviewVulnerabilitiesCtrl.js │ │ │ └── welcome │ │ │ │ ├── overview-welcome.html │ │ │ │ └── overviewWelcomeCtrl.js │ │ ├── security │ │ │ ├── index.js │ │ │ ├── main │ │ │ │ ├── security.html │ │ │ │ └── securityCtrl.js │ │ │ ├── policies │ │ │ │ ├── policies.html │ │ │ │ └── policiesCtrl.js │ │ │ ├── roles-mapping │ │ │ │ ├── rolesMapping.html │ │ │ │ └── rolesMappingCtrl.js │ │ │ ├── roles │ │ │ │ ├── roles.html │ │ │ │ └── rolesCtrl.js │ │ │ └── users │ │ │ │ ├── users.html │ │ │ │ └── usersCtrl.js │ │ └── settings │ │ │ ├── about │ │ │ ├── about.html │ │ │ └── aboutCtrl.js │ │ │ ├── api │ │ │ ├── api.html │ │ │ └── settingsApiCtrl.js │ │ │ ├── configuration │ │ │ ├── configuration.html │ │ │ └── settingsConfigCtrl.js │ │ │ ├── index.js │ │ │ ├── index │ │ │ ├── index.html │ │ │ └── settingsIndexCtrl.js │ │ │ ├── logs │ │ │ ├── logs.html │ │ │ └── logsCtrl.js │ │ │ └── main │ │ │ ├── settings.html │ │ │ └── settingsCtrl.js │ │ ├── dashboardMain.js │ │ ├── directives │ │ ├── index.js │ │ ├── module.js │ │ ├── wz-add-filter-chip │ │ │ ├── wz-add-filter-chip.html │ │ │ └── wz-add-filter-chip.js │ │ ├── wz-alert-metrics │ │ │ ├── wz-alert-metrics.html │ │ │ └── wz-alert-metrics.js │ │ ├── wz-bar │ │ │ ├── wz-bar.html │ │ │ └── wz-bar.js │ │ ├── wz-card-slider │ │ │ ├── wz-card-slider.html │ │ │ └── wz-card-slider.js │ │ ├── wz-config-item │ │ │ ├── wz-config-item.css │ │ │ ├── wz-config-item.html │ │ │ └── wz-config-item.js │ │ ├── wz-config-viewer │ │ │ ├── wz-config-viewer.html │ │ │ └── wz-config-viewer.js │ │ ├── wz-data-table │ │ │ ├── wz-data-table.html │ │ │ └── wz-data-table.js │ │ ├── wz-discover │ │ │ ├── wz-discover.html │ │ │ └── wz-discover.js │ │ ├── wz-dynamic │ │ │ └── wz-dynamic.js │ │ ├── wz-enter │ │ │ └── wz-enter.js │ │ ├── wz-forbidden │ │ │ ├── wz-forbidden.html │ │ │ └── wz-forbidden.js │ │ ├── wz-head-toaster │ │ │ ├── wz-head-toaster.html │ │ │ └── wz-head-toaster.js │ │ ├── wz-iframe-onload │ │ │ └── wz-iframe-onload.js │ │ ├── wz-kbn-switch │ │ │ ├── wz-kbn-switch.html │ │ │ └── wz-kbn-switch.js │ │ ├── wz-logtest │ │ │ ├── wz-logtest.html │ │ │ └── wz-logtest.js │ │ ├── wz-menu │ │ │ ├── wz-menu.css │ │ │ ├── wz-menu.html │ │ │ └── wz-menu.js │ │ ├── wz-multiple-selector │ │ │ ├── wz-multiple-selector.html │ │ │ └── wz-multiple-selector.js │ │ ├── wz-no-config │ │ │ ├── wz-no-config.html │ │ │ └── wz-no-config.js │ │ ├── wz-rbac-prompt │ │ │ └── wz-rbac-prompt.js │ │ ├── wz-register-agent │ │ │ ├── wz-register-agent.html │ │ │ └── wz-register-agent.js │ │ ├── wz-svg │ │ │ ├── wz-svg.html │ │ │ └── wz-svg.js │ │ ├── wz-table-server-side │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── check-gap.js │ │ │ │ ├── click-action.js │ │ │ │ ├── data.js │ │ │ │ ├── init.js │ │ │ │ ├── listeners.js │ │ │ │ ├── pagination.js │ │ │ │ ├── parse-value.js │ │ │ │ ├── rows.js │ │ │ │ └── sort.js │ │ │ ├── wz-table-server-side-directive.js │ │ │ └── wz-table-server-side.html │ │ ├── wz-table │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── check-gap.js │ │ │ │ ├── click-action.js │ │ │ │ ├── data.js │ │ │ │ ├── init.js │ │ │ │ ├── listeners.js │ │ │ │ ├── pagination.js │ │ │ │ ├── parse-value.js │ │ │ │ ├── rows.js │ │ │ │ └── sort.js │ │ │ ├── wz-table-directive.js │ │ │ └── wz-table.html │ │ ├── wz-tag-filter │ │ │ ├── wz-tag-filter.css │ │ │ ├── wz-tag-filter.html │ │ │ └── wz-tag-filter.js │ │ ├── wz-upload-files │ │ │ ├── wz-upload-files.html │ │ │ └── wz-upload-files.js │ │ ├── wz-welcome-card │ │ │ ├── wz-welcome-card.html │ │ │ └── wz-welcome-card.js │ │ └── wz-xml-file-editor │ │ │ ├── wz-xml-file-editor.html │ │ │ └── wz-xml-file-editor.js │ │ ├── factories │ │ ├── index.js │ │ ├── module.js │ │ └── userPermissions.js │ │ ├── filters │ │ ├── index.js │ │ ├── module.js │ │ └── order-object │ │ │ └── order-object.js │ │ ├── jQuery.js │ │ ├── libs │ │ ├── angular-chart.js │ │ ├── angular.js │ │ ├── animate.js │ │ ├── aria.js │ │ ├── chart.js │ │ ├── charts │ │ │ ├── angular-chart.js │ │ │ └── chart.js │ │ ├── codemirror-conv │ │ │ ├── brace-fold.js │ │ │ ├── codemirror.css │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ ├── formatting.js │ │ │ ├── index.js │ │ │ ├── javascript.js │ │ │ ├── json-lint.js │ │ │ ├── lib │ │ │ │ └── codemirror.js │ │ │ ├── mark-selection.js │ │ │ ├── querystring-browser │ │ │ │ └── bundle.js │ │ │ ├── search-cursor.js │ │ │ ├── show-hint.css │ │ │ ├── show-hint.js │ │ │ ├── ttcn.css │ │ │ └── xml.js │ │ ├── dropzone │ │ │ └── dropzone.js │ │ ├── file-saver │ │ │ └── file-saver.js │ │ ├── jquery-3.5.0.min.js │ │ ├── jquery-ui.js │ │ ├── json2xml │ │ │ └── jsontoxml.js │ │ ├── material.js │ │ ├── messages.js │ │ ├── moment.js │ │ ├── required-dom-to-image │ │ │ ├── dist │ │ │ │ └── dom-to-image.min.js │ │ │ └── src │ │ │ │ └── dom-to-image.js │ │ └── router.js │ │ ├── main.js │ │ ├── models │ │ ├── apiRequestFactory.js │ │ ├── apiResponseFactory.js │ │ ├── index.js │ │ └── module.js │ │ ├── run │ │ ├── index.js │ │ ├── module.js │ │ └── run.js │ │ ├── services │ │ ├── api-manager │ │ │ └── apiMgrService.js │ │ ├── apiIndexStorageService │ │ │ └── apiIndexStorageService.js │ │ ├── app-version │ │ │ └── appVersionService.js │ │ ├── beautifier │ │ │ └── beautifier-json.js │ │ ├── cdb-editor │ │ │ └── cdb-editor.js │ │ ├── checkDaemons │ │ │ └── checkDaemonsService.js │ │ ├── csv-request │ │ │ └── csvRequestService.js │ │ ├── currentDataService │ │ │ └── currentDataService.js │ │ ├── dataService │ │ │ └── dataService.js │ │ ├── date-diff │ │ │ └── dateDiffService.js │ │ ├── file-editor │ │ │ └── file-editor.js │ │ ├── filterService │ │ │ └── filterService.js │ │ ├── group-handler │ │ │ └── group-handler.js │ │ ├── index.js │ │ ├── key-equivalence │ │ │ └── keyEquivalenceService.js │ │ ├── module.js │ │ ├── navigation │ │ │ └── navigationService.js │ │ ├── notificationService │ │ │ └── notificationService.js │ │ ├── rawTableData │ │ │ └── rawTableDataService.js │ │ ├── reporting │ │ │ └── reportingService.js │ │ ├── requestService │ │ │ └── requestService.js │ │ ├── requirementService │ │ │ └── requirementService.js │ │ ├── restartService │ │ │ └── restartService.js │ │ ├── security │ │ │ ├── policy │ │ │ │ └── policyService.js │ │ │ ├── role │ │ │ │ └── roleService.js │ │ │ ├── rule │ │ │ │ └── ruleService.js │ │ │ ├── securityService.js │ │ │ └── user │ │ │ │ └── userService.js │ │ ├── sourceTypeStorageService │ │ │ └── sourceTypeStorageService.js │ │ ├── splunk-services │ │ │ └── splunk-users.js │ │ ├── splunkStoreService │ │ │ └── splunkStoreService.js │ │ ├── tableFilterService │ │ │ └── tableFilterService.js │ │ ├── token-model │ │ │ └── urlTokenModelService.js │ │ ├── validationService │ │ │ └── validationService.js │ │ ├── vis2png │ │ │ └── vis2png.js │ │ ├── visualizations │ │ │ ├── chart │ │ │ │ ├── area-chart.js │ │ │ │ ├── bar-chart.js │ │ │ │ ├── column-chart.js │ │ │ │ ├── gauge-chart.js │ │ │ │ ├── linear-chart.js │ │ │ │ ├── pie-chart.js │ │ │ │ └── single-value.js │ │ │ ├── inputs │ │ │ │ ├── dropdown-input.js │ │ │ │ └── time-picker.js │ │ │ ├── map │ │ │ │ └── map.js │ │ │ ├── search │ │ │ │ └── search-handler.js │ │ │ ├── table │ │ │ │ └── table.js │ │ │ └── viz │ │ │ │ └── viz.js │ │ └── xml-beautifier │ │ │ └── xml-beautifier.js │ │ └── utils │ │ ├── config-handler.js │ │ ├── excluded-devtools-autocomplete-keys.js │ │ ├── filter-handler.js │ │ ├── query-config.js │ │ └── remove-hash-key.js ├── bin │ ├── API_model.py │ ├── PIL │ │ ├── BdfFontFile.py │ │ ├── BlpImagePlugin.py │ │ ├── BmpImagePlugin.py │ │ ├── BufrStubImagePlugin.py │ │ ├── ContainerIO.py │ │ ├── CurImagePlugin.py │ │ ├── DcxImagePlugin.py │ │ ├── DdsImagePlugin.py │ │ ├── EpsImagePlugin.py │ │ ├── ExifTags.py │ │ ├── FitsStubImagePlugin.py │ │ ├── FliImagePlugin.py │ │ ├── FontFile.py │ │ ├── FpxImagePlugin.py │ │ ├── FtexImagePlugin.py │ │ ├── GbrImagePlugin.py │ │ ├── GdImageFile.py │ │ ├── GifImagePlugin.py │ │ ├── GimpGradientFile.py │ │ ├── GimpPaletteFile.py │ │ ├── GribStubImagePlugin.py │ │ ├── Hdf5StubImagePlugin.py │ │ ├── IcnsImagePlugin.py │ │ ├── IcoImagePlugin.py │ │ ├── ImImagePlugin.py │ │ ├── Image.py │ │ ├── ImageChops.py │ │ ├── ImageCms.py │ │ ├── ImageColor.py │ │ ├── ImageDraw.py │ │ ├── ImageDraw2.py │ │ ├── ImageEnhance.py │ │ ├── ImageFile.py │ │ ├── ImageFilter.py │ │ ├── ImageFont.py │ │ ├── ImageGrab.py │ │ ├── ImageMath.py │ │ ├── ImageMode.py │ │ ├── ImageMorph.py │ │ ├── ImageOps.py │ │ ├── ImagePalette.py │ │ ├── ImagePath.py │ │ ├── ImageQt.py │ │ ├── ImageSequence.py │ │ ├── ImageShow.py │ │ ├── ImageStat.py │ │ ├── ImageTk.py │ │ ├── ImageTransform.py │ │ ├── ImageWin.py │ │ ├── ImtImagePlugin.py │ │ ├── IptcImagePlugin.py │ │ ├── Jpeg2KImagePlugin.py │ │ ├── JpegImagePlugin.py │ │ ├── JpegPresets.py │ │ ├── McIdasImagePlugin.py │ │ ├── MicImagePlugin.py │ │ ├── MpegImagePlugin.py │ │ ├── MpoImagePlugin.py │ │ ├── MspImagePlugin.py │ │ ├── PSDraw.py │ │ ├── PaletteFile.py │ │ ├── PalmImagePlugin.py │ │ ├── PcdImagePlugin.py │ │ ├── PcfFontFile.py │ │ ├── PcxImagePlugin.py │ │ ├── PdfImagePlugin.py │ │ ├── PdfParser.py │ │ ├── PixarImagePlugin.py │ │ ├── PngImagePlugin.py │ │ ├── PpmImagePlugin.py │ │ ├── PsdImagePlugin.py │ │ ├── PyAccess.py │ │ ├── SgiImagePlugin.py │ │ ├── SpiderImagePlugin.py │ │ ├── SunImagePlugin.py │ │ ├── TarIO.py │ │ ├── TgaImagePlugin.py │ │ ├── TiffImagePlugin.py │ │ ├── TiffTags.py │ │ ├── WalImageFile.py │ │ ├── WebPImagePlugin.py │ │ ├── WmfImagePlugin.py │ │ ├── XVThumbImagePlugin.py │ │ ├── XbmImagePlugin.py │ │ ├── XpmImagePlugin.py │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _binary.py │ │ ├── _tkinter_finder.py │ │ ├── _util.py │ │ ├── _version.py │ │ └── features.py │ ├── api_info │ │ ├── __init__.py │ │ ├── endpoints.json │ │ └── security-actions.json │ ├── cache.py │ ├── check_daemons.py │ ├── check_queue.py │ ├── db.py │ ├── edit_config.py │ ├── fpdf │ │ ├── __init__.py │ │ ├── font │ │ │ ├── Roboto-Light.cw127.pkl │ │ │ ├── Roboto-Light.pkl │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Regular.pkl │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.pkl │ │ │ └── Roboto-Thin.ttf │ │ ├── fonts.py │ │ ├── fpdf.py │ │ ├── html.py │ │ ├── php.py │ │ ├── py3k.py │ │ ├── template.py │ │ └── ttfonts.py │ ├── get_agents_status.py │ ├── get_api_by_id.py │ ├── jobs_queue.py │ ├── jsonbak │ │ ├── __init__.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── scanner.py │ │ └── tool.py │ ├── log.py │ ├── requestsbak │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ ├── requirements │ │ ├── __init__.py │ │ ├── gdpr_requirements.py │ │ ├── hipaa_requirements.py │ │ ├── nist_requirements.py │ │ └── pci_requirements.py │ ├── tailer │ │ └── __init__.py │ ├── utils │ │ ├── __init__.py │ │ ├── config.py │ │ ├── dict.py │ │ └── params.py │ ├── wazuh_api.py │ └── wazuhtoken.py ├── default │ ├── app.conf │ ├── collections.conf │ ├── config.conf │ ├── data │ │ └── ui │ │ │ ├── html │ │ │ └── index.html │ │ │ └── nav │ │ │ └── default.xml │ ├── inputs.conf │ ├── package.conf │ ├── props.conf │ ├── transforms.conf │ └── web.conf ├── metadata │ └── default.meta └── static │ ├── appIcon.png │ ├── appIconAlt.png │ ├── appIconAlt_2x.png │ ├── appIcon_2x.png │ ├── appLogo.png │ └── appLogo_2x.png ├── SplunkOverview.png ├── package.json ├── scripts ├── generate-api-info │ ├── generate-api-info.js │ └── generate-api-info.sh ├── generate-build-version.js └── release │ ├── bump.js │ ├── lib │ ├── logger.js │ ├── read-manifest-package.js │ ├── update-manifest-package.js │ └── update-manifest-plugin.js │ └── tag.js ├── setup ├── forwarder │ ├── inputs.conf │ ├── outputs.conf │ └── props.conf └── indexer │ ├── indexes.conf │ └── inputs.conf └── tests ├── external_files └── jsonOfuscatedResponses.js ├── manager.js └── ofuscate.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/compatibilty_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.github/ISSUE_TEMPLATE/compatibilty_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.github/ISSUE_TEMPLATE/new_release.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/regression_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.github/ISSUE_TEMPLATE/regression_testing.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.22.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SplunkAppForWazuh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/README.md -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/controllers/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/controllers/api.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/controllers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/controllers/config.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/controllers/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/controllers/manager.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/controllers/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/controllers/queue.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/controllers/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/controllers/report.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/controllers/report_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/controllers/report_vars.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/controllers/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/controllers/users.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_advanced_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_advanced_settings.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_apm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_apm.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_aws.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_ciscat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_ciscat.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_dashboard.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_devtools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_devtools.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_discover.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_index_pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_index_pattern.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_logging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_logging.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_monitoring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_monitoring.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_saved_objects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_saved_objects.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_sca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_sca.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_security.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_timelion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_timelion.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/app_visualize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/app_visualize.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/docker-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/docker-black.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/docker.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/docker.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/groups.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/groups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/groups.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/loupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/loupe.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/mitre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/mitre.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/osquery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/osquery.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/reporting.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/reporting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/reporting.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/ruleset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/ruleset.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/ruleset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/ruleset.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/sca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/sca.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/sca_no_scans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/sca_no_scans.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/sort_asc.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/sort_both.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/sort_desc.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/wazuh/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/wazuh/png/logo.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/wazuh/png/wazuh_white_full_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/wazuh/png/wazuh_white_full_edge.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/wazuh/png/wazuh_white_iso_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/wazuh/png/wazuh_white_iso_edge.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/wazuh/svg/wazuh_white_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/wazuh/svg/wazuh_white_full.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/images/wazuh/svg/wazuh_white_iso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/images/wazuh/svg/wazuh_white_iso.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/animated.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/animated.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/common.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/component.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/dropzone.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/height.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/height.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/jquery-ui.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/kbn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/kbn.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/layout.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/loader.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/media-queries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/media-queries.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/table_decorations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/table_decorations.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/toast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/toast.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/typography.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/variables.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/wazuh_decorations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/wazuh_decorations.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/wz-add-filter-chip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/wz-add-filter-chip.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/wz-multiple-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/wz-multiple-selector.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/wz_tooltips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/wz_tooltips.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/styles/xml-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/styles/xml-editor.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/material/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/material/animate.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/material/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/material/material.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/material/oxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/material/oxygen.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/material/passion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/css/thirdPartyStyles/material/passion.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/app.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/bootstrap.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/config/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/config/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/config/module.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/config/routes/agents-states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/config/routes/agents-states.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/config/routes/management-states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/config/routes/management-states.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/config/routes/overview-states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/config/routes/overview-states.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/config/routes/security-states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/config/routes/security-states.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/config/routes/settings-states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/config/routes/settings-states.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/agents/agents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/agents/agents.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/agents/agentsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/agents/agentsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/audit/agents-audit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/audit/agents-audit.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/audit/agentsAuditCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/audit/agentsAuditCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/ciscat/agents-ciscat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/ciscat/agents-ciscat.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/ciscat/agentsCiscatCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/ciscat/agentsCiscatCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/configuration-assessment/agents-ca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/configuration-assessment/agents-ca.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/configuration-assessment/agentsConfigurationAssessmentsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/configuration-assessment/agentsConfigurationAssessmentsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/configuration/agentConfigCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/configuration/agentConfigCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/cve/agents-cve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/cve/agents-cve.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/cve/agentsCveCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/cve/agentsCveCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/docker/agents-docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/docker/agents-docker.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/docker/agentsDockerCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/docker/agentsDockerCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/fim/agents-fim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/fim/agents-fim.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/fim/agentsFimCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/fim/agentsFimCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/gdpr/agents-gdpr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/gdpr/agents-gdpr.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/gdpr/agentsGdprCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/gdpr/agentsGdprCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/general/agents-general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/general/agents-general.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/general/agentsGeneralCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/general/agentsGeneralCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/hipaa/agents-hipaa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/hipaa/agents-hipaa.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/hipaa/agentsHipaaCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/hipaa/agentsHipaaCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/inventory/inventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/inventory/inventory.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/inventory/inventoryCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/inventory/inventoryCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/nist/agents-nist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/nist/agents-nist.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/nist/agentsNistCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/nist/agentsNistCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/osquery/osquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/osquery/osquery.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/osquery/osqueryCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/osquery/osqueryCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/overview/agentsOverviewCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/overview/agentsOverviewCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/overview/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/overview/overview.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/pcidss/agents-pci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/pcidss/agents-pci.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/pcidss/agentsPciCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/pcidss/agentsPciCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/policy-monitoring/agents-pm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/policy-monitoring/agents-pm.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/policy-monitoring/agentsPolicyMonitoringCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/policy-monitoring/agentsPolicyMonitoringCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/scap/agents-openscap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/scap/agents-openscap.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/scap/agentsOpenScapCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/scap/agentsOpenScapCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/virustotal/agents-virustotal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/virustotal/agents-virustotal.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/virustotal/agentsVirusTotalCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/virustotal/agentsVirusTotalCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/vulnerabilities/agents-vulnerabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/vulnerabilities/agents-vulnerabilities.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/agents/vulnerabilities/agentsVulnerabilitiesCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/agents/vulnerabilities/agentsVulnerabilitiesCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/dev-tools/dev-tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/dev-tools/dev-tools.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/dev-tools/devToolsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/dev-tools/devToolsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/discover/discover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/discover/discover.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/discover/discoverCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/discover/discoverCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/main/mainCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/main/mainCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/cdb/manager-cdb-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/cdb/manager-cdb-id.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/cdb/manager-cdb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/cdb/manager-cdb.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/cdb/managerCdbCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/cdb/managerCdbCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/cdb/managerCdbIdCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/cdb/managerCdbIdCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/active-response/active-response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/active-response/active-response.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/active-response/agents-active-response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/active-response/agents-active-response.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/agentless/agentless.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/agentless/agentless.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/alerts/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/alerts/alerts.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/amazon-s3/amazon-s3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/amazon-s3/amazon-s3.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/azure-logs/azure-logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/azure-logs/azure-logs.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/both-configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/both-configuration.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/breadcrumbs/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/breadcrumbs/breadcrumbs.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/cis-cat/cis-cat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/cis-cat/cis-cat.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/client-buffer/client-buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/client-buffer/client-buffer.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/client/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/client/client.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/cluster/cluster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/cluster/cluster.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/configurationCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/configurationCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/database-output/database-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/database-output/database-output.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/docker-listener/docker-listener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/docker-listener/docker-listener.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/global-configuration/global-configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/global-configuration/global-configuration.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/integrations/integrations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/integrations/integrations.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/integrity-monitoring/integrity-monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/integrity-monitoring/integrity-monitoring.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/log-collection/log-collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/log-collection/log-collection.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/open-scap/open-scap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/open-scap/open-scap.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/osquery/osquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/osquery/osquery.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/policy-monitoring/policy-monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/policy-monitoring/policy-monitoring.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/registration-service/registration-service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/registration-service/registration-service.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/ruleset/ruleset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/ruleset/ruleset.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/syscollector/syscollector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/syscollector/syscollector.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/vulnerabilities/vulnerabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/vulnerabilities/vulnerabilities.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/wazuh-commands/wazuh-commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/wazuh-commands/wazuh-commands.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/welcome/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/configuration/welcome/welcome.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/decoders/manager-decoders-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/decoders/manager-decoders-id.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/decoders/manager-decoders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/decoders/manager-decoders.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/decoders/managerDecodersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/decoders/managerDecodersCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/decoders/managerDecodersIdCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/decoders/managerDecodersIdCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/edition/edition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/edition/edition.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/edition/editionCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/edition/editionCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/groups/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/groups/groups.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/groups/groupsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/groups/groupsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/logs/manager-logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/logs/manager-logs.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/logs/managerLogsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/logs/managerLogsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/monitoring/monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/monitoring/monitoring.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/monitoring/monitoringCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/monitoring/monitoringCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/reporting/reporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/reporting/reporting.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/reporting/reportingCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/reporting/reportingCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/rules/manager-ruleset-id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/rules/manager-ruleset-id.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/rules/manager-ruleset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/rules/manager-ruleset.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/rules/managerRulesetCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/rules/managerRulesetCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/rules/managerRulesetIdCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/rules/managerRulesetIdCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/rules/ruleset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/rules/ruleset.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/status/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/status/status.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/status/statusCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/status/statusCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/management/welcome/manager-welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/management/welcome/manager-welcome.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/module.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/audit/overview-audit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/audit/overview-audit.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/audit/overviewAuditCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/audit/overviewAuditCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/aws/aws.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/aws/aws.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/aws/awsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/aws/awsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/ciscat/ciscatCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/ciscat/ciscatCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/ciscat/overview-ciscat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/ciscat/overview-ciscat.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/docker/dockerCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/docker/dockerCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/docker/overview-docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/docker/overview-docker.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/fim/overview-fim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/fim/overview-fim.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/fim/overviewFimCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/fim/overviewFimCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/gdpr/overview-gdpr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/gdpr/overview-gdpr.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/gdpr/overviewGdprCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/gdpr/overviewGdprCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/general/overview-general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/general/overview-general.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/general/overviewGeneralCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/general/overviewGeneralCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/hipaa/overview-hipaa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/hipaa/overview-hipaa.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/hipaa/overviewHipaaCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/hipaa/overviewHipaaCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre-ids/lib/discover-search-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre-ids/lib/discover-search-helper.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre-ids/overview-mitre-ids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre-ids/overview-mitre-ids.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre-ids/overviewMitreIdsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre-ids/overviewMitreIdsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre/overview-mitre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre/overview-mitre.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre/overviewMitreCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/mitre/overviewMitreCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/nist/overview-nist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/nist/overview-nist.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/nist/overviewNistCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/nist/overviewNistCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/osquery/osquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/osquery/osquery.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/osquery/osqueryCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/osquery/osqueryCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/pci/overview-pci.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/pci/overview-pci.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/pci/overviewPciCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/pci/overviewPciCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/policy-monitoring/overview-pm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/policy-monitoring/overview-pm.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/policy-monitoring/overviewPolicyMonitoringCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/policy-monitoring/overviewPolicyMonitoringCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/sca/overview-sca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/sca/overview-sca.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/sca/overviewSCACtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/sca/overviewSCACtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/scap/overview-openscap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/scap/overview-openscap.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/scap/overviewOpenScapCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/scap/overviewOpenScapCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/virustotal/overview-virustotal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/virustotal/overview-virustotal.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/virustotal/overviewVirusTotalCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/virustotal/overviewVirusTotalCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/vulnerabilities/overview-vulnerabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/vulnerabilities/overview-vulnerabilities.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/vulnerabilities/overviewVulnerabilitiesCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/vulnerabilities/overviewVulnerabilitiesCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/welcome/overview-welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/welcome/overview-welcome.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/overview/welcome/overviewWelcomeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/overview/welcome/overviewWelcomeCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/main/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/main/security.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/main/securityCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/main/securityCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/policies/policies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/policies/policies.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/policies/policiesCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/policies/policiesCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/roles-mapping/rolesMapping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/roles-mapping/rolesMapping.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/roles-mapping/rolesMappingCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/roles-mapping/rolesMappingCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/roles/roles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/roles/roles.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/roles/rolesCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/roles/rolesCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/users/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/users/users.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/security/users/usersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/security/users/usersCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/about/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/about/about.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/about/aboutCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/about/aboutCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/api/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/api/api.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/api/settingsApiCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/api/settingsApiCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/configuration/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/configuration/configuration.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/configuration/settingsConfigCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/configuration/settingsConfigCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/index/index.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/index/settingsIndexCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/index/settingsIndexCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/logs/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/logs/logs.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/logs/logsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/logs/logsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/main/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/main/settings.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/controllers/settings/main/settingsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/controllers/settings/main/settingsCtrl.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/dashboardMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/dashboardMain.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/module.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-add-filter-chip/wz-add-filter-chip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-add-filter-chip/wz-add-filter-chip.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-add-filter-chip/wz-add-filter-chip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-add-filter-chip/wz-add-filter-chip.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-alert-metrics/wz-alert-metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-alert-metrics/wz-alert-metrics.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-alert-metrics/wz-alert-metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-alert-metrics/wz-alert-metrics.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-bar/wz-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-bar/wz-bar.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-bar/wz-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-bar/wz-bar.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-card-slider/wz-card-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-card-slider/wz-card-slider.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-card-slider/wz-card-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-card-slider/wz-card-slider.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-config-item/wz-config-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-config-item/wz-config-item.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-config-item/wz-config-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-config-item/wz-config-item.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-config-item/wz-config-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-config-item/wz-config-item.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-config-viewer/wz-config-viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-config-viewer/wz-config-viewer.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-config-viewer/wz-config-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-config-viewer/wz-config-viewer.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-data-table/wz-data-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-data-table/wz-data-table.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-data-table/wz-data-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-data-table/wz-data-table.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-discover/wz-discover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-discover/wz-discover.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-discover/wz-discover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-discover/wz-discover.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-dynamic/wz-dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-dynamic/wz-dynamic.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-enter/wz-enter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-enter/wz-enter.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-forbidden/wz-forbidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-forbidden/wz-forbidden.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-forbidden/wz-forbidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-forbidden/wz-forbidden.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-head-toaster/wz-head-toaster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-head-toaster/wz-head-toaster.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-head-toaster/wz-head-toaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-head-toaster/wz-head-toaster.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-iframe-onload/wz-iframe-onload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-iframe-onload/wz-iframe-onload.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-kbn-switch/wz-kbn-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-kbn-switch/wz-kbn-switch.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-kbn-switch/wz-kbn-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-kbn-switch/wz-kbn-switch.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-logtest/wz-logtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-logtest/wz-logtest.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-logtest/wz-logtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-logtest/wz-logtest.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-menu/wz-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-menu/wz-menu.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-menu/wz-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-menu/wz-menu.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-menu/wz-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-menu/wz-menu.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-multiple-selector/wz-multiple-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-multiple-selector/wz-multiple-selector.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-multiple-selector/wz-multiple-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-multiple-selector/wz-multiple-selector.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-no-config/wz-no-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-no-config/wz-no-config.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-no-config/wz-no-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-no-config/wz-no-config.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-rbac-prompt/wz-rbac-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-rbac-prompt/wz-rbac-prompt.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-register-agent/wz-register-agent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-register-agent/wz-register-agent.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-register-agent/wz-register-agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-register-agent/wz-register-agent.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-svg/wz-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-svg/wz-svg.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-svg/wz-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-svg/wz-svg.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/check-gap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/check-gap.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/click-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/click-action.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/data.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/init.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/listeners.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/pagination.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/parse-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/parse-value.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/rows.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/lib/sort.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/wz-table-server-side-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/wz-table-server-side-directive.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/wz-table-server-side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table-server-side/wz-table-server-side.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/check-gap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/check-gap.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/click-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/click-action.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/data.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/init.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/listeners.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/pagination.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/parse-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/parse-value.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/rows.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/lib/sort.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/wz-table-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/wz-table-directive.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-table/wz-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-table/wz-table.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-tag-filter/wz-tag-filter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-tag-filter/wz-tag-filter.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-tag-filter/wz-tag-filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-tag-filter/wz-tag-filter.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-tag-filter/wz-tag-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-tag-filter/wz-tag-filter.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-upload-files/wz-upload-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-upload-files/wz-upload-files.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-upload-files/wz-upload-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-upload-files/wz-upload-files.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-welcome-card/wz-welcome-card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-welcome-card/wz-welcome-card.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-welcome-card/wz-welcome-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-welcome-card/wz-welcome-card.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-xml-file-editor/wz-xml-file-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-xml-file-editor/wz-xml-file-editor.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/directives/wz-xml-file-editor/wz-xml-file-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/directives/wz-xml-file-editor/wz-xml-file-editor.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/factories/index.js: -------------------------------------------------------------------------------- 1 | define(['./userPermissions'], function () {}) 2 | -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/factories/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/factories/module.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/factories/userPermissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/factories/userPermissions.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/filters/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/filters/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/filters/module.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/filters/order-object/order-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/filters/order-object/order-object.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/jQuery.js: -------------------------------------------------------------------------------- 1 | define(['localjQuery'], function ($) { 2 | return $.noConflict(true) 3 | }) 4 | -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/angular-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/angular-chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/angular.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/animate.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/aria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/aria.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/charts/angular-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/charts/angular-chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/charts/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/charts/chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/brace-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/brace-fold.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/codemirror.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/foldcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/foldcode.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/foldgutter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/foldgutter.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/foldgutter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/foldgutter.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/formatting.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/javascript.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/json-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/json-lint.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/lib/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/lib/codemirror.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/mark-selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/mark-selection.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/querystring-browser/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/querystring-browser/bundle.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/search-cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/search-cursor.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/show-hint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/show-hint.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/show-hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/show-hint.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/ttcn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/ttcn.css -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/codemirror-conv/xml.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/dropzone/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/dropzone/dropzone.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/file-saver/file-saver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/file-saver/file-saver.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/jquery-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/jquery-3.5.0.min.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/jquery-ui.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/json2xml/jsontoxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/json2xml/jsontoxml.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/material.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/messages.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/moment.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/required-dom-to-image/dist/dom-to-image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/required-dom-to-image/dist/dom-to-image.min.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/required-dom-to-image/src/dom-to-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/required-dom-to-image/src/dom-to-image.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/libs/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/libs/router.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/main.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/models/apiRequestFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/models/apiRequestFactory.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/models/apiResponseFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/models/apiResponseFactory.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/models/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/models/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/models/module.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/run/index.js: -------------------------------------------------------------------------------- 1 | define(['./run'], function () {}) 2 | -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/run/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/run/module.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/run/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/run/run.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/api-manager/apiMgrService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/api-manager/apiMgrService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/apiIndexStorageService/apiIndexStorageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/apiIndexStorageService/apiIndexStorageService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/app-version/appVersionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/app-version/appVersionService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/beautifier/beautifier-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/beautifier/beautifier-json.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/cdb-editor/cdb-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/cdb-editor/cdb-editor.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/checkDaemons/checkDaemonsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/checkDaemons/checkDaemonsService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/csv-request/csvRequestService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/csv-request/csvRequestService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/currentDataService/currentDataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/currentDataService/currentDataService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/dataService/dataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/dataService/dataService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/date-diff/dateDiffService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/date-diff/dateDiffService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/file-editor/file-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/file-editor/file-editor.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/filterService/filterService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/filterService/filterService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/group-handler/group-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/group-handler/group-handler.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/index.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/key-equivalence/keyEquivalenceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/key-equivalence/keyEquivalenceService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/module.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/navigation/navigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/navigation/navigationService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/notificationService/notificationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/notificationService/notificationService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/rawTableData/rawTableDataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/rawTableData/rawTableDataService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/reporting/reportingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/reporting/reportingService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/requestService/requestService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/requestService/requestService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/requirementService/requirementService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/requirementService/requirementService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/restartService/restartService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/restartService/restartService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/security/policy/policyService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/security/policy/policyService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/security/role/roleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/security/role/roleService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/security/rule/ruleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/security/rule/ruleService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/security/securityService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/security/securityService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/security/user/userService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/security/user/userService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/sourceTypeStorageService/sourceTypeStorageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/sourceTypeStorageService/sourceTypeStorageService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/splunk-services/splunk-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/splunk-services/splunk-users.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/splunkStoreService/splunkStoreService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/splunkStoreService/splunkStoreService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/tableFilterService/tableFilterService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/tableFilterService/tableFilterService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/token-model/urlTokenModelService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/token-model/urlTokenModelService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/validationService/validationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/validationService/validationService.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/vis2png/vis2png.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/vis2png/vis2png.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/area-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/area-chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/bar-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/bar-chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/column-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/column-chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/gauge-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/gauge-chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/linear-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/linear-chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/pie-chart.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/single-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/chart/single-value.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/inputs/dropdown-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/inputs/dropdown-input.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/inputs/time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/inputs/time-picker.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/map/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/map/map.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/search/search-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/search/search-handler.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/table/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/table/table.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/visualizations/viz/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/visualizations/viz/viz.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/services/xml-beautifier/xml-beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/services/xml-beautifier/xml-beautifier.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/utils/config-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/utils/config-handler.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/utils/excluded-devtools-autocomplete-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/utils/excluded-devtools-autocomplete-keys.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/utils/filter-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/utils/filter-handler.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/utils/query-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/utils/query-config.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/appserver/static/js/utils/remove-hash-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/appserver/static/js/utils/remove-hash-key.js -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/API_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/API_model.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/BdfFontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/BdfFontFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/BlpImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/BlpImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/BmpImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/BmpImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/BufrStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/BufrStubImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ContainerIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ContainerIO.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/CurImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/CurImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/DcxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/DcxImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/DdsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/DdsImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/EpsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/EpsImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ExifTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ExifTags.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/FitsStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/FitsStubImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/FliImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/FliImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/FontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/FontFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/FpxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/FpxImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/FtexImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/FtexImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/GbrImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/GbrImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/GdImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/GdImageFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/GifImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/GifImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/GimpGradientFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/GimpGradientFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/GimpPaletteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/GimpPaletteFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/GribStubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/GribStubImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/Hdf5StubImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/Hdf5StubImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/IcnsImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/IcnsImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/IcoImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/IcoImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/Image.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageChops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageChops.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageCms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageCms.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageColor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageColor.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageDraw.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageDraw2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageDraw2.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageEnhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageEnhance.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageFilter.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageFont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageFont.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageGrab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageGrab.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageMath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageMath.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageMode.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageMorph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageMorph.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageOps.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImagePalette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImagePalette.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImagePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImagePath.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageQt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageQt.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageSequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageSequence.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageShow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageShow.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageStat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageStat.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageTk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageTk.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageTransform.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImageWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImageWin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/ImtImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/ImtImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/IptcImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/IptcImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/Jpeg2KImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/Jpeg2KImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/JpegImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/JpegImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/JpegPresets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/JpegPresets.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/McIdasImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/McIdasImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/MicImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/MicImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/MpegImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/MpegImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/MpoImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/MpoImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/MspImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/MspImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PSDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PSDraw.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PaletteFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PaletteFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PalmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PalmImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PcdImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PcdImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PcfFontFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PcfFontFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PcxImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PcxImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PdfImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PdfImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PdfParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PdfParser.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PixarImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PixarImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PngImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PngImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PpmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PpmImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PsdImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PsdImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/PyAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/PyAccess.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/SgiImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/SgiImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/SpiderImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/SpiderImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/SunImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/SunImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/TarIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/TarIO.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/TgaImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/TgaImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/TiffImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/TiffImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/TiffTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/TiffTags.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/WalImageFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/WalImageFile.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/WebPImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/WebPImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/WmfImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/WmfImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/XVThumbImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/XVThumbImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/XbmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/XbmImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/XpmImagePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/XpmImagePlugin.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/__init__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/__main__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/_binary.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/_tkinter_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/_tkinter_finder.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/_util.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/_version.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/PIL/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/PIL/features.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/api_info/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/api_info/__init__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/api_info/endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/api_info/endpoints.json -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/api_info/security-actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/api_info/security-actions.json -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/cache.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/check_daemons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/check_daemons.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/check_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/check_queue.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/db.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/edit_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/edit_config.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/__init__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/font/Roboto-Light.cw127.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/font/Roboto-Light.cw127.pkl -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/font/Roboto-Light.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/font/Roboto-Light.pkl -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/font/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/font/Roboto-Light.ttf -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/font/Roboto-Regular.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/font/Roboto-Regular.pkl -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/font/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/font/Roboto-Regular.ttf -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/font/Roboto-Thin.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/font/Roboto-Thin.pkl -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/font/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/font/Roboto-Thin.ttf -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/fonts.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/fpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/fpdf.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/html.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/php.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/php.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/py3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/py3k.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/template.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/fpdf/ttfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/fpdf/ttfonts.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/get_agents_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/get_agents_status.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/get_api_by_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/get_api_by_id.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/jobs_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/jobs_queue.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/jsonbak/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/jsonbak/__init__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/jsonbak/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/jsonbak/decoder.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/jsonbak/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/jsonbak/encoder.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/jsonbak/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/jsonbak/scanner.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/jsonbak/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/jsonbak/tool.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/log.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/__init__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/__version__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/_internal_utils.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/adapters.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/api.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/auth.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/certs.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/compat.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/cookies.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/exceptions.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/help.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/hooks.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/models.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/packages.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/sessions.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/status_codes.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/structures.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requestsbak/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requestsbak/utils.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requirements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requirements/gdpr_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requirements/gdpr_requirements.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requirements/hipaa_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requirements/hipaa_requirements.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requirements/nist_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requirements/nist_requirements.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/requirements/pci_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/requirements/pci_requirements.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/tailer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/tailer/__init__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/utils/__init__.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/utils/config.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/utils/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/utils/dict.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/utils/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/utils/params.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/wazuh_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/wazuh_api.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/bin/wazuhtoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/bin/wazuhtoken.py -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/app.conf -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/collections.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/collections.conf -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/config.conf -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/data/ui/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/data/ui/html/index.html -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/data/ui/nav/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/data/ui/nav/default.xml -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/inputs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/inputs.conf -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/package.conf: -------------------------------------------------------------------------------- 1 | [splunk] 2 | version = 8.2 3 | -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/props.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/props.conf -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/transforms.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/transforms.conf -------------------------------------------------------------------------------- /SplunkAppForWazuh/default/web.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/default/web.conf -------------------------------------------------------------------------------- /SplunkAppForWazuh/metadata/default.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/metadata/default.meta -------------------------------------------------------------------------------- /SplunkAppForWazuh/static/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/static/appIcon.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/static/appIconAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/static/appIconAlt.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/static/appIconAlt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/static/appIconAlt_2x.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/static/appIcon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/static/appIcon_2x.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/static/appLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/static/appLogo.png -------------------------------------------------------------------------------- /SplunkAppForWazuh/static/appLogo_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkAppForWazuh/static/appLogo_2x.png -------------------------------------------------------------------------------- /SplunkOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/SplunkOverview.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generate-api-info/generate-api-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/generate-api-info/generate-api-info.js -------------------------------------------------------------------------------- /scripts/generate-api-info/generate-api-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/generate-api-info/generate-api-info.sh -------------------------------------------------------------------------------- /scripts/generate-build-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/generate-build-version.js -------------------------------------------------------------------------------- /scripts/release/bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/release/bump.js -------------------------------------------------------------------------------- /scripts/release/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/release/lib/logger.js -------------------------------------------------------------------------------- /scripts/release/lib/read-manifest-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/release/lib/read-manifest-package.js -------------------------------------------------------------------------------- /scripts/release/lib/update-manifest-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/release/lib/update-manifest-package.js -------------------------------------------------------------------------------- /scripts/release/lib/update-manifest-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/release/lib/update-manifest-plugin.js -------------------------------------------------------------------------------- /scripts/release/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/scripts/release/tag.js -------------------------------------------------------------------------------- /setup/forwarder/inputs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/setup/forwarder/inputs.conf -------------------------------------------------------------------------------- /setup/forwarder/outputs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/setup/forwarder/outputs.conf -------------------------------------------------------------------------------- /setup/forwarder/props.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/setup/forwarder/props.conf -------------------------------------------------------------------------------- /setup/indexer/indexes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/setup/indexer/indexes.conf -------------------------------------------------------------------------------- /setup/indexer/inputs.conf: -------------------------------------------------------------------------------- 1 | [splunktcp-ssl://9997] 2 | connection_host = ip 3 | -------------------------------------------------------------------------------- /tests/external_files/jsonOfuscatedResponses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/tests/external_files/jsonOfuscatedResponses.js -------------------------------------------------------------------------------- /tests/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/tests/manager.js -------------------------------------------------------------------------------- /tests/ofuscate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazuh/wazuh-splunk/HEAD/tests/ofuscate.js --------------------------------------------------------------------------------