Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/faizan-khanx/image-forensics
https://github.com/faizan-khanx/image-forensics
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/faizan-khanx/image-forensics
- Owner: Faizan-Khanx
- License: unlicense
- Created: 2024-08-21T04:23:45.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-21T04:28:03.000Z (3 months ago)
- Last Synced: 2024-08-21T05:39:08.820Z (3 months ago)
- Language: Python
- Size: 4.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Aperi'Solve
[![Website](https://img.shields.io/website?url=https%3A%2F%2Faperisolve.com)](https://aperisolve.com/)
[![Rawsec's CyberSecurity Inventory](https://inventory.raw.pm/img/badges/Rawsec-inventoried-FF5050_flat.svg)](https://inventory.raw.pm/tools.html#Aperi'Solve)Try it now: https://www.aperisolve.com
# I . What is Aperi'Solve?
Aperi'Solve is a platform which performs layer analysis on image.
The platform also uses "*zsteg*", "*steghide*", "*outguess*", "*exiftool*", "*binwalk*", "*foremost*" and "*strings*" for deeper steganography analysis.# II . Installation
Even if Aperi'Solve is available at the URL https://www.aperisolve.com, you can install a cli alias with the following command:
```bash
sudo sh -c"$(curl -fs https://www.aperisolve.com/install.sh)"
aperisolve image.png
```# III . Why Aperi'Solve
Aperi'Solve has been created in order to have an "easy to use" platform which performs common steganalysis tests such as LSB or `steghide`. The platform is also a quick alternative for people who didn't manage to install `zsteg` (ruby gem) properly.# IV . Features
Aperi'Solve is based on Python3 with Flask and PIL module, the platform currently supports the following images format: `.png`, `.jpg`, `.gif`, `.bmp`, `.jpeg`, `.jfif`, `.jpe`, `.tiff`.The platform allow you to:
- **Visualise each bit layer** of each channel for a given image (ie. LSB of Red channel).
- **Browse** and **Download each bit layer image**.
- **Visualise `zsteg` informations** such as text encoded on LSB
- **Download `zsteg` files** such as mp3 encoded on LSB
- **Download `steghide` files** using a defined password
- **Download `outguess` files** using a defined password
- **Visualise `exiftool` informations** such as geolocation or author
- **Visualise `binwalk` informations**
- **Download `binwalk` files** such as zip in png headers
- **Download `foremost` files** such as zip in png headers
- **Visualise `strings` output**# V . Application
The Aperi'Solve platform is a *Flask* web service (/web) (python 3.7) with backend daemons (/backend) which perform analysis.
Both of the two part has its own docker container.
# VI . Run with Docker-Compose
Simply run the following command:
```bash
docker-compose build
docker-compose up
```Then check your browser at [http://localhost:5000/](http://localhost:5000).
---
# TODO
- Statistics on homepage
- "Probable flag" with regex
- Implement "out of the box" png check (increase size of png) ?
- ...