Visual Chain of Evi...
 
Notifications
Clear all

Visual Chain of Evidence

4 Posts
3 Users
0 Likes
326 Views
(@markin0s)
Posts: 2
New Member
Topic starter
 

I follow a studie for digital forensics. My teachers want the chain of evidence made visual. Is there anybody have tip and trips to make a visual chain of evidence?

is there a way that i can be automatic based on evidence id. You have a file with evidence id 1
And in that file find evidence and gave id 1.1. Make this visual en can make visual.

 
Posted : 27/03/2017 4:33 am
passcodeunlock
(@passcodeunlock)
Posts: 792
Prominent Member
 

The simplest is to create a spreadsheet with timeline and case numbering, then draw a chart, if that is visual enough ?!

Or maybe you are looking for some evidence management programs ?

 
Posted : 27/03/2017 12:12 pm
MDCR
 MDCR
(@mdcr)
Posts: 376
Reputable Member
 

I follow a studie for digital forensics. My teachers want the chain of evidence made visual. Is there anybody have tip and trips to make a visual chain of evidence?

is there a way that i can be automatic based on evidence id. You have a file with evidence id 1
And in that file find evidence and gave id 1.1. Make this visual en can make visual.

Graphviz.

You can create a script that takes data and create a textfile (.dot) like he one below and pass it to an executable in the graphviz package (neato.exe)

graph {
a -- b -- d -- c -- f[color=red,penwidth=3.0];
b -- c;
d -- e;
e -- f;
a -- d;
}

It will then create stuff like this


There is plenty of examples on the net, and it's easy to get started, use something like neato in the grapviz package to generate the above images.

http//www.graphviz.org/Documentation/dotguide.pdf
http//www.graphviz.org/Download.php

 
Posted : 27/03/2017 12:59 pm
(@markin0s)
Posts: 2
New Member
Topic starter
 

What a great answers!! Im very happy! I searched a lot on the web, but nothing found what is usefull. i will try this.

Thanks a lot!

 
Posted : 27/03/2017 2:17 pm
Share: