zoukankan      html  css  js  c++  java
  • [学习]WireShark 的过滤功能

    1. 打开 wireShark 过滤显示 协议

    比如显示arp协议

    过滤栏输入arp即可

    支持的协议类型

    TCP
    UDP
    HTTP
    FTP
    ICMP
    SMTP
    等等

    2. 过滤ip地址

    ip.addr eq 10.24.13.6
    
    or
    
    ip.addr == 10.24.13.6
    
    或者是区分 源地址或者是目标地址
    
    ip.src == 10.24.13.6
    或者目标地址
    ip.dst eq  10.24.13.6

    3. 过滤端口 以及增加 and 条件等.

    tcp.port == 80 || ip.src eq 10.24.13.97

     4. mac地址过滤

    eth.dst
    
    eth.src
    
    eth.addr 

    5. http 方法过滤

    http.request.method == "GET"
    http.request.method == "POST"
    http.request.uri == "/img/logo-edu.gif"
    http contains "GET"
    http contains "HTTP/1."
    
    // GET包
    http.request.method == "GET" && http contains "Host: "
    http.request.method == "GET" && http contains "User-Agent: "
    // POST包
    http.request.method == "POST" && http contains "Host: "
    http.request.method == "POST" && http contains "User-Agent: "
    // 响应包
    http contains "HTTP/1.1 200 OK" && http contains "Content-Type: "
    http contains "HTTP/1.0 200 OK" && http contains "Content-Type: "
  • 相关阅读:
    访存模型
    Petri网
    Forward secrecy
    TensorFlow训练神经网络cost一直为0
    解决tensorflow在训练的时候权重是nan问题
    tf.argmax
    Keras教程
    z-score
    隐马尔可夫(HMM)、前/后向算法、Viterbi算法
    受限玻尔兹曼机基础教程
  • 原文地址:https://www.cnblogs.com/jinanxiaolaohu/p/9860581.html
Copyright © 2011-2022 走看看