scorelab / OpenMF

An Open Source Mobile Forensics Investigation Tool for Android Platform
Apache License 2.0
146 stars 94 forks source link

Data visualization between two cases #223

Closed swapnalshahil closed 3 years ago

swapnalshahil commented 3 years ago

Description

Create some APIs to do analysis between two cases if required. Presentation of observed analytics between two cases using graphs and tables.

Fixes #219

Type of change

How Has This Been Tested?

https://user-images.githubusercontent.com/58564017/128397987-31a78878-abd8-4f84-bcd4-a187b2b6ca75.mp4

Checklist:

swapnalshahil commented 3 years ago
1. http://127.0.0.1:5000/commonreport/calls

This API is responsible for getting common
contact details between two cases.

method = ['POST']
{
    "case_one": "case1",
    "case_two": "case2"
}

2. http://127.0.0.1:5000/commonreport/coordinates

This API is responsible for getting common
location details between two cases.

method = ['POST']
{
    "case_one": "case1",
    "case_two": "case2"
}
2021-08-03 (1) 2021-08-03 (2)
swapnalshahil commented 3 years ago
3. http://127.0.0.1:5000/commonreport/browser

This API is responsible for fetching common browser
searched history details between two cases.

method = ['POST']
{
    "case_one": "case1",
    "case_two": "case2"
}
4. http://127.0.0.1:5000/commonreport/sms

This API is responsible for fetching common message
details between two cases.

method = ['POST']
{
    "case_one": "case1",
    "case_two": "case2"
}
2021-08-04 2021-08-04 (2)
swapnalshahil commented 3 years ago

@shivanshu1333 sir! Please review!πŸ™‚

shivanshuraj1333 commented 3 years ago

Demo looks good, looking at the implementation right now, will review it by EOD

swapnalshahil commented 3 years ago

Landing page for analytics.

2021-08-06
swapnalshahil commented 3 years ago

Now everything is up to date! πŸ˜