├── .idea ├── .gitignore ├── CVE-2022-22965-Spring-CachedintrospectionResults-Rce.iml ├── modules.xml └── vcs.xml ├── README.md ├── go.mod ├── go.sum ├── main.go └── url.txt /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangxiaofeng7/CVE-2022-22965-Spring-Core-Rce/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/CVE-2022-22965-Spring-CachedintrospectionResults-Rce.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangxiaofeng7/CVE-2022-22965-Spring-Core-Rce/HEAD/.idea/CVE-2022-22965-Spring-CachedintrospectionResults-Rce.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangxiaofeng7/CVE-2022-22965-Spring-Core-Rce/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangxiaofeng7/CVE-2022-22965-Spring-Core-Rce/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangxiaofeng7/CVE-2022-22965-Spring-Core-Rce/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangxiaofeng7/CVE-2022-22965-Spring-Core-Rce/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangxiaofeng7/CVE-2022-22965-Spring-Core-Rce/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangxiaofeng7/CVE-2022-22965-Spring-Core-Rce/HEAD/main.go -------------------------------------------------------------------------------- /url.txt: -------------------------------------------------------------------------------- 1 | 127.0.0.1:8080 --------------------------------------------------------------------------------