├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml ├── vcs.xml └── workspace.xml ├── README.md ├── pom.xml └── src └── main └── java ├── Evil.java ├── aspectj.java └── groovy.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/Evil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/src/main/java/Evil.java -------------------------------------------------------------------------------- /src/main/java/aspectj.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/src/main/java/aspectj.java -------------------------------------------------------------------------------- /src/main/java/groovy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hosch3n/FastjsonVulns/HEAD/src/main/java/groovy.java --------------------------------------------------------------------------------