Murari is a command-line tool built using Python that empowers cybersecurity professionals to enhance email security and conduct email analysis.
- Email Header Analysis: Murari provides a streamlined approach to email header analysis, extracting metadata such as sender information, email authentication protocol details, IP details and more.
- Efficient Attachment and Link Analysis: Murari equips users with the ability to perform analysis of email attachments and URLs, mitigating potential risks. Using Python libraries and external APIs, this command line tool scans attachments for malicious indicators. By detecting risky links, it helps prevent users from falling victim to phishing attacks.
- VirusTotal Integration: Murari seamlessly integrates with the VirusTotal API, enabling users to check hash and URL reputations against multiple antivirus engines and threat intelligence sources. This integration provides real-time insights into the safety and reputation of email content.
- Cyber Forensic
- Threat Hunting
- SOC, Threat or Malware Analysts
- Cybersecurity Awareness Programs
Note: Python-3 must be installed and ViruTotal api key must be pasted before running this script.
api_key = "<Enter your VirusTotal API key>"
- Clone the Murari repository to your local machine
git clone https://github.com/asimtarapathak/Murari.git
- Extract the file and Navigate to the Murari directory:
cd Murari
- Run cmd and Install the required dependencies using pip:
pip install -r requirements.py
Murari provides two command line options to analyze email headers, attachments and links. Here are some examples:
- For email header file analysing need to give email header file as parameter (.eml file)
python main.py -f <email header file>
- For analysing email attachments and links need to give email message file as parameter (.msg file)
python main.py -o <outlook message file>
- For a complete list of options and their descriptions, run:
python main.py -h
Thank you for choosing Murari! We hope this tool helps you effectively analyze email headers, attachments, and links and enhancing your email security. If you have any questions or need assistance, please don't hesitate to reach out.
Happy analyzing!