├── .cent.yaml ├── LICENSE ├── README.md ├── final-report.txt ├── nuclei-templates ├── community │ ├── CVE-2021-44228.yaml │ ├── CVE-2021-45046.yaml │ ├── apache-ofbiz-log4j-rce.yaml │ ├── apache-solr-log4j-rce.yaml │ ├── mobileiron-log4j-jndi-rce.yaml │ ├── unifi-network-log4j-rce.yaml │ ├── vmware-horizon-log4j-jndi-rce.yaml │ └── vmware-vcenter-log4j-jndi-rce.yaml └── custom │ ├── custom_nuclei-1.yaml │ ├── custom_nuclei-2.yaml │ ├── custom_nuclei-3.yaml │ ├── custom_nuclei-4.yaml │ ├── custom_nuclei-5.yaml │ ├── custom_nuclei-6.yaml │ ├── custom_nuclei-7.yaml │ ├── custom_nuclei-8.yaml │ └── custom_nuclei-9.yaml ├── payloads ├── manual.txt ├── new-line.txt ├── null-bytes.txt └── tab.txt ├── services.txt ├── workflow.gif └── workflow.png /.cent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/.cent.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/README.md -------------------------------------------------------------------------------- /final-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/final-report.txt -------------------------------------------------------------------------------- /nuclei-templates/community/CVE-2021-44228.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/community/CVE-2021-44228.yaml -------------------------------------------------------------------------------- /nuclei-templates/community/CVE-2021-45046.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/community/CVE-2021-45046.yaml -------------------------------------------------------------------------------- /nuclei-templates/community/apache-ofbiz-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/community/apache-ofbiz-log4j-rce.yaml -------------------------------------------------------------------------------- /nuclei-templates/community/apache-solr-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/community/apache-solr-log4j-rce.yaml -------------------------------------------------------------------------------- /nuclei-templates/community/mobileiron-log4j-jndi-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/community/mobileiron-log4j-jndi-rce.yaml -------------------------------------------------------------------------------- /nuclei-templates/community/unifi-network-log4j-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/community/unifi-network-log4j-rce.yaml -------------------------------------------------------------------------------- /nuclei-templates/community/vmware-horizon-log4j-jndi-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/community/vmware-horizon-log4j-jndi-rce.yaml -------------------------------------------------------------------------------- /nuclei-templates/community/vmware-vcenter-log4j-jndi-rce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/community/vmware-vcenter-log4j-jndi-rce.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-1.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-2.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-3.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-4.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-5.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-6.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-7.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-8.yaml -------------------------------------------------------------------------------- /nuclei-templates/custom/custom_nuclei-9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/nuclei-templates/custom/custom_nuclei-9.yaml -------------------------------------------------------------------------------- /payloads/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/payloads/manual.txt -------------------------------------------------------------------------------- /payloads/new-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/payloads/new-line.txt -------------------------------------------------------------------------------- /payloads/null-bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/payloads/null-bytes.txt -------------------------------------------------------------------------------- /payloads/tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/payloads/tab.txt -------------------------------------------------------------------------------- /services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/services.txt -------------------------------------------------------------------------------- /workflow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/workflow.gif -------------------------------------------------------------------------------- /workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trickest/log4j/HEAD/workflow.png --------------------------------------------------------------------------------