├── .gitignore ├── README.md ├── bmc_ipmi ├── CVE-2022-2827.yaml ├── README.md ├── lenovo │ └── lenovo-logo-detect.yaml ├── redfish │ ├── redfish-api-detect.yaml │ └── redfish-bmc-default-login.yaml ├── supermicro │ ├── supermicro-ipmi-ui-detect.yaml │ └── supermicro-logo-detect.yaml └── tyan │ ├── megarac-sp-ui-detect.yaml │ ├── tyan-logo-detect.yaml │ ├── tyan-megarac-sp-default-login.yaml │ ├── tyan-rmm-bmc-default-login.yaml │ └── tyan-rmm-ui-detect.yaml ├── cobbler ├── CVE-2018-1000226.yaml ├── CVE-2021-40323.yaml ├── cobbler-default-login.yaml ├── cobbler-exposed-directories.yaml ├── cobbler-version-detect.yaml └── cobbler-webgui.yaml ├── consul ├── CVE-2020-25864.yaml ├── CVE-2022-29153.yaml ├── hashicorp-consul-version.yaml └── hashicorp-consul-webgui.yaml ├── corero ├── corero-cms-default-login.yaml ├── corero-logo.yaml ├── corero-smartwall-cms.yaml ├── corero-smartwall-ssp.yaml ├── corero-smartwall-swa.yaml └── corero-swa-default-login.yaml ├── digitalrebar ├── CVE-20200924a.yaml ├── digitalrebar-provision-default-login.yaml └── digitalrebar-provision-ui.yaml ├── elasticsearch ├── elasticsearch-5-version.yaml ├── elasticsearch-log4j.yaml └── elasticsearch.yaml ├── influxdb ├── CVE-2019-20933.yaml └── influxdb-version.yaml ├── jenkins ├── CVE-2019-10405.yaml ├── CVE-2020-2103.yaml ├── CVE-2022-36883.yaml └── jenkins-version.yaml ├── jfrog ├── artifactory-version-detect.yaml └── jfrog-version-header.yaml ├── kibana └── kibana-panel.yaml ├── netflix-conductor ├── netflix-conductor-ui.yaml └── netflix-conductor-version.yaml ├── puppet ├── CVE-2020-7943.yaml ├── puppetboard-panel.yaml ├── puppetdb-detect.yaml └── puppetserver-detect.yaml ├── splunk ├── splunk-favicon.yaml └── splunk-mgmt-api.yaml ├── swagger └── swagger-version.yaml └── versa-networks ├── versa-analytics-server-detect.yaml ├── versa-director-api-detect.yaml ├── versa-director-ui-detect.yaml ├── versa-flexvnf-server-detect.yaml ├── versa-flexvnf-ui-default-login.yaml ├── versa-flexvnf-ui-detect.yaml └── versa-networks-logo.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/README.md -------------------------------------------------------------------------------- /bmc_ipmi/CVE-2022-2827.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/CVE-2022-2827.yaml -------------------------------------------------------------------------------- /bmc_ipmi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/README.md -------------------------------------------------------------------------------- /bmc_ipmi/lenovo/lenovo-logo-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/lenovo/lenovo-logo-detect.yaml -------------------------------------------------------------------------------- /bmc_ipmi/redfish/redfish-api-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/redfish/redfish-api-detect.yaml -------------------------------------------------------------------------------- /bmc_ipmi/redfish/redfish-bmc-default-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/redfish/redfish-bmc-default-login.yaml -------------------------------------------------------------------------------- /bmc_ipmi/supermicro/supermicro-ipmi-ui-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/supermicro/supermicro-ipmi-ui-detect.yaml -------------------------------------------------------------------------------- /bmc_ipmi/supermicro/supermicro-logo-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/supermicro/supermicro-logo-detect.yaml -------------------------------------------------------------------------------- /bmc_ipmi/tyan/megarac-sp-ui-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/tyan/megarac-sp-ui-detect.yaml -------------------------------------------------------------------------------- /bmc_ipmi/tyan/tyan-logo-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/tyan/tyan-logo-detect.yaml -------------------------------------------------------------------------------- /bmc_ipmi/tyan/tyan-megarac-sp-default-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/tyan/tyan-megarac-sp-default-login.yaml -------------------------------------------------------------------------------- /bmc_ipmi/tyan/tyan-rmm-bmc-default-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/tyan/tyan-rmm-bmc-default-login.yaml -------------------------------------------------------------------------------- /bmc_ipmi/tyan/tyan-rmm-ui-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/bmc_ipmi/tyan/tyan-rmm-ui-detect.yaml -------------------------------------------------------------------------------- /cobbler/CVE-2018-1000226.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/cobbler/CVE-2018-1000226.yaml -------------------------------------------------------------------------------- /cobbler/CVE-2021-40323.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/cobbler/CVE-2021-40323.yaml -------------------------------------------------------------------------------- /cobbler/cobbler-default-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/cobbler/cobbler-default-login.yaml -------------------------------------------------------------------------------- /cobbler/cobbler-exposed-directories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/cobbler/cobbler-exposed-directories.yaml -------------------------------------------------------------------------------- /cobbler/cobbler-version-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/cobbler/cobbler-version-detect.yaml -------------------------------------------------------------------------------- /cobbler/cobbler-webgui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/cobbler/cobbler-webgui.yaml -------------------------------------------------------------------------------- /consul/CVE-2020-25864.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/consul/CVE-2020-25864.yaml -------------------------------------------------------------------------------- /consul/CVE-2022-29153.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/consul/CVE-2022-29153.yaml -------------------------------------------------------------------------------- /consul/hashicorp-consul-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/consul/hashicorp-consul-version.yaml -------------------------------------------------------------------------------- /consul/hashicorp-consul-webgui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/consul/hashicorp-consul-webgui.yaml -------------------------------------------------------------------------------- /corero/corero-cms-default-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/corero/corero-cms-default-login.yaml -------------------------------------------------------------------------------- /corero/corero-logo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/corero/corero-logo.yaml -------------------------------------------------------------------------------- /corero/corero-smartwall-cms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/corero/corero-smartwall-cms.yaml -------------------------------------------------------------------------------- /corero/corero-smartwall-ssp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/corero/corero-smartwall-ssp.yaml -------------------------------------------------------------------------------- /corero/corero-smartwall-swa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/corero/corero-smartwall-swa.yaml -------------------------------------------------------------------------------- /corero/corero-swa-default-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/corero/corero-swa-default-login.yaml -------------------------------------------------------------------------------- /digitalrebar/CVE-20200924a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/digitalrebar/CVE-20200924a.yaml -------------------------------------------------------------------------------- /digitalrebar/digitalrebar-provision-default-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/digitalrebar/digitalrebar-provision-default-login.yaml -------------------------------------------------------------------------------- /digitalrebar/digitalrebar-provision-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/digitalrebar/digitalrebar-provision-ui.yaml -------------------------------------------------------------------------------- /elasticsearch/elasticsearch-5-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/elasticsearch/elasticsearch-5-version.yaml -------------------------------------------------------------------------------- /elasticsearch/elasticsearch-log4j.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/elasticsearch/elasticsearch-log4j.yaml -------------------------------------------------------------------------------- /elasticsearch/elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/elasticsearch/elasticsearch.yaml -------------------------------------------------------------------------------- /influxdb/CVE-2019-20933.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/influxdb/CVE-2019-20933.yaml -------------------------------------------------------------------------------- /influxdb/influxdb-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/influxdb/influxdb-version.yaml -------------------------------------------------------------------------------- /jenkins/CVE-2019-10405.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/jenkins/CVE-2019-10405.yaml -------------------------------------------------------------------------------- /jenkins/CVE-2020-2103.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/jenkins/CVE-2020-2103.yaml -------------------------------------------------------------------------------- /jenkins/CVE-2022-36883.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/jenkins/CVE-2022-36883.yaml -------------------------------------------------------------------------------- /jenkins/jenkins-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/jenkins/jenkins-version.yaml -------------------------------------------------------------------------------- /jfrog/artifactory-version-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/jfrog/artifactory-version-detect.yaml -------------------------------------------------------------------------------- /jfrog/jfrog-version-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/jfrog/jfrog-version-header.yaml -------------------------------------------------------------------------------- /kibana/kibana-panel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/kibana/kibana-panel.yaml -------------------------------------------------------------------------------- /netflix-conductor/netflix-conductor-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/netflix-conductor/netflix-conductor-ui.yaml -------------------------------------------------------------------------------- /netflix-conductor/netflix-conductor-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/netflix-conductor/netflix-conductor-version.yaml -------------------------------------------------------------------------------- /puppet/CVE-2020-7943.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/puppet/CVE-2020-7943.yaml -------------------------------------------------------------------------------- /puppet/puppetboard-panel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/puppet/puppetboard-panel.yaml -------------------------------------------------------------------------------- /puppet/puppetdb-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/puppet/puppetdb-detect.yaml -------------------------------------------------------------------------------- /puppet/puppetserver-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/puppet/puppetserver-detect.yaml -------------------------------------------------------------------------------- /splunk/splunk-favicon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/splunk/splunk-favicon.yaml -------------------------------------------------------------------------------- /splunk/splunk-mgmt-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/splunk/splunk-mgmt-api.yaml -------------------------------------------------------------------------------- /swagger/swagger-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/swagger/swagger-version.yaml -------------------------------------------------------------------------------- /versa-networks/versa-analytics-server-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/versa-networks/versa-analytics-server-detect.yaml -------------------------------------------------------------------------------- /versa-networks/versa-director-api-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/versa-networks/versa-director-api-detect.yaml -------------------------------------------------------------------------------- /versa-networks/versa-director-ui-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/versa-networks/versa-director-ui-detect.yaml -------------------------------------------------------------------------------- /versa-networks/versa-flexvnf-server-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/versa-networks/versa-flexvnf-server-detect.yaml -------------------------------------------------------------------------------- /versa-networks/versa-flexvnf-ui-default-login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/versa-networks/versa-flexvnf-ui-default-login.yaml -------------------------------------------------------------------------------- /versa-networks/versa-flexvnf-ui-detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/versa-networks/versa-flexvnf-ui-detect.yaml -------------------------------------------------------------------------------- /versa-networks/versa-networks-logo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-sh0/nuclei_templates/HEAD/versa-networks/versa-networks-logo.yaml --------------------------------------------------------------------------------