├── .idea ├── compiler.xml ├── encodings.xml ├── misc.xml ├── vcs.xml └── workspace.xml ├── README.md ├── debug.log ├── dependency-reduced-pom.xml ├── error.log ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── longofo │ │ │ ├── ArrayUtil.java │ │ │ └── Poracle.java │ └── resources │ │ └── log4j.properties └── test │ └── java │ └── TestLog4j.java └── target ├── PaddingOracleAttack-1.0-SNAPSHOT.jar ├── classes ├── com │ └── longofo │ │ ├── ArrayUtil.class │ │ └── Poracle.class └── log4j.properties ├── debug.log ├── error.log ├── maven-archiver └── pom.properties ├── maven-status └── maven-compiler-plugin │ ├── compile │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── testCompile │ └── default-testCompile │ ├── createdFiles.lst │ └── inputFiles.lst ├── original-PaddingOracleAttack-1.0-SNAPSHOT.jar ├── surefire-reports ├── TEST-TestLog4j.xml └── TestLog4j.txt └── test-classes └── TestLog4j.class /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/README.md -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependency-reduced-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/dependency-reduced-pom.xml -------------------------------------------------------------------------------- /error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/longofo/ArrayUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/src/main/java/com/longofo/ArrayUtil.java -------------------------------------------------------------------------------- /src/main/java/com/longofo/Poracle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/src/main/java/com/longofo/Poracle.java -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /src/test/java/TestLog4j.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/src/test/java/TestLog4j.java -------------------------------------------------------------------------------- /target/PaddingOracleAttack-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/PaddingOracleAttack-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /target/classes/com/longofo/ArrayUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/classes/com/longofo/ArrayUtil.class -------------------------------------------------------------------------------- /target/classes/com/longofo/Poracle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/classes/com/longofo/Poracle.class -------------------------------------------------------------------------------- /target/classes/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/classes/log4j.properties -------------------------------------------------------------------------------- /target/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/debug.log -------------------------------------------------------------------------------- /target/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/maven-archiver/pom.properties -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | TestLog4j.class 2 | -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /target/original-PaddingOracleAttack-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/original-PaddingOracleAttack-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /target/surefire-reports/TEST-TestLog4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/surefire-reports/TEST-TestLog4j.xml -------------------------------------------------------------------------------- /target/surefire-reports/TestLog4j.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/surefire-reports/TestLog4j.txt -------------------------------------------------------------------------------- /target/test-classes/TestLog4j.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longofo/PaddingOracleAttack-Shiro-721/HEAD/target/test-classes/TestLog4j.class --------------------------------------------------------------------------------