wireshark-ieth1# Filter by ipip.add==10.10.10.9# Filter by dest ipip.dest==10.10.10.15# Filter by source ipip.src==10.10.16.33# Filter by tcp porttcp.port==25# Filter by ip addr and portip.addr==10.10.14.22andtcp.port==8080# Filter SYN flagtcp.flags.syn==1andtcp.flags.ack==0# Broadcast filtereth.dst==ff:ff:ff:ff:ff:ff
#To find DOS (SYN and ACK)
tcp.flags.syn == 1 , tcp.flags.syn == 1 and tcp.flags.ack == 0
#To find passwords
http.request.method == POST
#More reference
https://www.comparitech.com/net-admin/wireshark-cheat-sheet/
#To find DOS: look for Red and Black packets with around 1-2 simple packets in between and then pick any packet and check the Source and Destination IP with port(As per question)
#To find DOS (SYN and ACK) : tcp.flags.syn == 1 , tcp.flags.syn == 1 and tcp.flags.ack == 0
#To find passwords : http.request.method == POST