An program analysis tool to find cryptographic misuse in Java and Android.
- Download and Install JDK 7.
- Set
JAVA7_HOME
environment variable. - Download and Install Gradle.
- Download and Install JDK (version >= 7).
- Set
JAVA_HOME
environment variable. - Download and Install Gradle.
- Download and Install JDK (version >= 7).
- Set
JAVA_HOME
environment variable. - Download and Install Android SDK
- Set
ANDROID_SDK_HOME
- Download and Install Gradle.
- Run
cd /path/to/rigorityj
- Run
gradle clean build
You need to run RigorityJ on JDK 7 to analyze source codes. If the project does not have any external dependencies then run,
cd /path/to/rigorityj && /usr/local/jdk1.7.0_80/bin/java -jar main/build/libs/main.jar "source" "/path/to/project/root" ""
If the project have external dependencies then first gather the dependencies under a folder that is relative to the project root (e.g., “build/dependencies”), then run
cd /path/to/rigorityj && /usr/local/jdk1.7.0_80/bin/java -jar main/build/libs/main.jar "source" "/path/to/project/root" "build/dependencies"
Note that if you have multiple subprojects with external dependencies, then you have to gather all the corresponding subproject dependencies under a path that is relative to each of the subprojects.
cd /path/to/rigorityj && java -jar main/build/libs/main.jar "jar" "/path/to/jar/my-jar.jar" ""
cd /path/to/rigorityj && java -jar main/build/libs/main.jar "apk" "/path/to/apk/my-apk.apk"
If you have any questions or suggestions, please email to rigorityj@gmail.com.
Copyright © 2018 RigorityJ
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 3.0 for more details.
You should have received a copy of the GNU General Public License 3.0 along with this program. If not, see https://www.gnu.org/licenses/gpl-3.0.html.