Skip to content

Commit

Permalink
added packages and separated report package
Browse files Browse the repository at this point in the history
  • Loading branch information
swsachith@gmail.com authored and swsachith@gmail.com committed May 19, 2015
1 parent 1f8c8cf commit 191dba0
Show file tree
Hide file tree
Showing 81 changed files with 7,510 additions and 7,533 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ ANDROPHSY is an opensource forensic tool for Android smartphones that helps digi
- [x] Evidence presentation

# License information
Please read license agreement carefully [here](https://github.com/scorelab/Androspy/blob/master/LICENSE).
Please read license agreement carefully [here](https://github.com/scorelab/lk.score.androphsy.main.Androspy/blob/master/LICENSE).

# Disclaimer notice
Before go further from this point please read and understand disclaimer notice carefully available [here](https://github.com/scorelab/Androspy/blob/master/disclaimer.txt).
Before go further from this point please read and understand disclaimer notice carefully available [here](https://github.com/scorelab/lk.score.androphsy.main.Androspy/blob/master/disclaimer.txt).

# How to run ANDROPHSY project
This section describes how to setup development environment for ANDROPHSY. Currently ANDROPHSY is compatible with Linux platform only. It was implemented using Java language as an Eclipse project and successfully tested on Ubuntu 12.04 LTS.
Expand Down
2 changes: 1 addition & 1 deletion files/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Mac system to run the root.
# OSX and Linux binaries for 'adb' are in the files directory.
#
echo "--- Samsung i545 VRUEMJ7 Root ---"
echo "--- Samsung i545 VRUEMJ7 lk.score.androphsy.main.Root ---"
echo "--- Based on the CVE-2013-6282 exploit by cubeundcube ---"
echo ""

Expand Down
Binary file removed jar/commons-compress-1.5.jar
Binary file not shown.
Binary file removed jar/eclipse-equinox-common-3.5.0.jar
Binary file not shown.
Binary file removed jar/itext-pdfa-5.5.3-javadoc.jar
Binary file not shown.
Binary file removed jar/itext-pdfa-5.5.3-sources.jar
Binary file not shown.
Binary file removed jar/itext-pdfa-5.5.3.jar
Binary file not shown.
Binary file removed jar/itext-xtra-5.5.3-javadoc.jar
Binary file not shown.
Binary file removed jar/itext-xtra-5.5.3-sources.jar
Binary file not shown.
Binary file removed jar/itext-xtra-5.5.3.jar
Binary file not shown.
Binary file removed jar/itextpdf-5.5.3-javadoc.jar
Binary file not shown.
Binary file removed jar/itextpdf-5.5.3-sources.jar
Binary file not shown.
Binary file removed jar/itextpdf-5.5.3.jar
Binary file not shown.
Binary file removed jar/jasperreports-5.0.4.jar
Binary file not shown.
Binary file removed jar/java-json.jar
Binary file not shown.
Binary file removed jar/mysql-connector-java-5.1.18-bin.jar
Binary file not shown.
Binary file removed jar/org.eclipse.core.commands.jar
Binary file not shown.
Binary file removed jar/sqlite-jdbc-3.8.6.jar
Binary file not shown.
73 changes: 73 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>lk.score</groupId>
<artifactId>Androspy</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>report</module>
</modules>

<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.18</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.8.6</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.6</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-pdfa</artifactId>
<version>5.5.6</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-xtra</artifactId>
<version>5.5.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>5.0.4</version>
</dependency>

<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20141113</version>
</dependency>


<dependency>
<groupId>org.eclipse.core</groupId>
<artifactId>commands</artifactId>
<version>3.3.0-I20070605-0010</version>
</dependency>

<!-- swt dependency -->
<dependency>
<groupId>org.eclipse.swt</groupId>
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
<version>4.3</version>
</dependency>

</dependencies>
</project>
Loading

0 comments on commit 191dba0

Please sign in to comment.