This is a web-application for organizing and logging information for (ICT-)forensic investigations. It lets different users maintain any number of logbooks and store text-entries within them.
Logboek's primary features are:
- Maintaining forensic journals during your investigation.
- Assigning tasks to people in your team.
- Securely storing (and verifying) evidence files.
Also included are ways to:
- Export journals to CSV, Markdown and PDF.
- Keep a list of suspects.
- Solve mono-alphabatic ciphers.
- PHP >= 5.4
- MySQL >= 5.5
- Clone the project
- Run
composer install
- Copy the configuration folder
app/config/production.example
toapp/config/production
- Use
app/config/local.example
andapp/config/local
for development
- Use
- Edit your configuration
- Generate a secret key with
php artisan key:generate
- Ensure your PHP process/server can write to
app/storage
(chmod -R 755 app/storage
) - Run
php artisan migrate
andphp artisan db:seed
- Point a virtualhost to
<cloned_directory>/public
- Visit the site. The default login is
owner
with passwordchangeme
- You can change this and add more users after logging in
- Celebrate!
This project is released under the GPL v3 license.