https://github.com/compcode1/wireshark-nmap-email
This project analyzes the transmission of emails between two devices on the same network:
https://github.com/compcode1/wireshark-nmap-email
email nmap wireshark
Last synced: about 1 year ago
JSON representation
This project analyzes the transmission of emails between two devices on the same network:
- Host: GitHub
- URL: https://github.com/compcode1/wireshark-nmap-email
- Owner: Compcode1
- License: gpl-3.0
- Created: 2025-03-18T20:17:44.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-18T20:51:31.000Z (about 1 year ago)
- Last Synced: 2025-03-18T21:34:03.245Z (about 1 year ago)
- Topics: email, nmap, wireshark
- Language: Jupyter Notebook
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This project analyzed **email transmission security using Nmap & Wireshark**, focusing on:
- **DNS resolution of Gmail’s mail servers**
- **TLS and QUIC encryption behavior**
- **Nmap scanning of Gmail’s SMTP/IMAP/POP3 servers**
- **IPv4 vs. IPv6 security settings**
- **Network security misconfigurations and potential attack vectors**
---
## **1️⃣ Key Findings**
### **🟢 DNS Resolution Analysis**
- Gmail’s mail server (`smtp.gmail.com`) resolved via DNS queries.
- The MacBook → Gmail resolution step was **not fully captured** due to network limitations.
### **🟢 Email Encryption: TLS vs. QUIC**
- Gmail’s web interface (browser-based) used **QUIC** encryption.
- Gmail’s mail servers (SMTP/IMAP) used **TLS 1.0, 1.1, 1.2, and 1.3**.
- **TLS 1.0 & 1.1 remain enabled, despite security deprecations**.
### **🟢 Nmap Scan of Gmail’s Mail Servers**
- **IPv4 and IPv6 scans revealed identical encryption settings.**
- **Legacy ciphers (3DES) were still present**, though unlikely used.
- **IPv6 was prioritized in our network, leading to an initial oversight in scanning.**
---
## **2️⃣ Lessons Learned**
✅ **Ensure Wireshark and Nmap scans are aligned to the correct IP version (IPv4 vs. IPv6).**
✅ **QUIC vs. TLS differences impact visibility in packet captures.**
✅ **Nmap confirms security policies that Wireshark cannot directly observe.**
✅ **Capturing MacBook traffic from the Dell was not straightforward and would require a different setup.**