Skip to content

BecomingCyber/Wireshark-ICMP-Lab-Day7

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🧪 Wireshark Lab – ICMP Protocol Analysis (Day #7)

Wireshark Lab License Status Student Ready Verified by Mozella L. McCoy-Flowers SOC Analyst Lab

🎯 Objective

This lab introduces the analysis of ICMP packets using Wireshark. It covers how to identify echo requests/replies, apply ICMP-related filters, and interpret important packet fields.

🛠️ Lab Setup

Component Description
OS Windows 10/11, Linux, or macOS
Tool Wireshark (latest version)
File sample-capture.pcapng (optional)

📘 Key Concepts

  • ICMP Types:

    • Echo Request: Type 8
    • Echo Reply: Type 0
  • Packet Fields:
    Type, Code, Checksum, Identifier, Sequence Number, Data

🔍 Filters Used

icmp                     # All ICMP traffic  
icmp.type == 8           # Echo Requests  
icmp.type == 0           # Echo Replies  
icmp.code == 3           # Destination unreachable  
ip.addr == 192.168.1.10  # Host-specific filter

📸 Screenshots

📂 Located in the /images/ folder | ICMP Request and Reply |

🧠 Observations

See ➡️ Click to view observations.md

📁 Project Structure

icmp-wireshark-lab/
├── README.md
├── sample-capture.pcapng
├── images/
├── notes/
├── filters/
└── .gitignore

✅ Conclusion

  • ICMP is essential for network troubleshooting and diagnostics.
  • Wireshark provides a visual way to investigate ICMP-based traffic.
  • Helps identify ping sweeps, scan activity, and unreachable systems.

About

ICMP Protocol Analysis Lab using Wireshark – A hands-on cybersecurity lab focused on capturing and analyzing ICMP Echo Request and Reply packets, interpreting protocol fields, and applying Wireshark filters for investigation.

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors