Tags: forensic 

Rating:

# What is the name of WhatsApp user which has phone number +37062166565
> What is the name of WhatsApp user which has phone number +37062166565?

## About the Challenge
We need to find the name of WhatsApp user

## How to Solve?
We can find the email by exporting the SQLite Database first from `/userdata/root/data/com.whatsapp/databases/wa.db`

![exports](images/exports.png)

Open the SQLite database using `DB Browser for SQlite` software and import the database. In the `wa_contacts` table, we can see the name of WhatsApp user

![contacts](images/contacts.png)

```
Marcus
```

Original writeup (https://github.com/daffainfo/ctf-writeup/tree/main/VU%20CYBERTHON%202023/What%20is%20the%20name%20of%20WhatsApp%20user%20which%20has%20phone%20number%20%2B37062166565).