zoukankan      html  css  js  c++  java
  • 【HTTP】Wireshark过滤规则

    参考:http://jingyan.baidu.com/article/454316ab593170f7a6c03a60.html

    语句特点:协议.属性 

    一、IP过滤:

    包括来源IP或者目标IP等于某个IP比如:

    ip.src eq 192.168.10.130
    ip.src addr eq 192.168.0.208 来源IP ip.dst addr==192.168.0.208
    ip.dst addr eq 192.168.0.208 目标IP

    二、端口过滤:

    tcp.port eq 80 // 不管端口是来源的还是目标的都显示       
    tcp.port == 80       
    tcp.port eq 2722       
    tcp.port eq 80 or udp.port eq 80       
    tcp.dstport == 80 // 只显tcp协议的目标端口80       
    tcp.srcport == 80 // 只显tcp协议的来源端口80过滤端口范围
    tcp.port >= 1 and tcp.port <= 80

    三、协议过滤:

    tcp udp arp icmp http smtp ftp dns ssl等等

    排除ssl包:

    !ssl
    not ssl

    四、包长度过滤:

    udp.length == 26  //这个长度是指udp本身固定长度8加上udp下面那块数据包之和
    tcp.len >= 7  //指的是ip数据包(tcp下面那块数据),不包括tcp本身
    ip.len == 94  //除了以太网头固定长度14,其它都算是ip.len,即从ip本身到最后
    frame.len == 119 //整个数据包长度,从eth开始到最后

    五、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: ”

    六、连接符

    and / or

    七、表达式

    !(arp.src==192.168.1.1) and !(arp.dst.proto_ipv4==192.168.1.243)
  • 相关阅读:
    Codeforces 812E Sagheer and Apple Tree
    bzoj 4765: 普通计算姬
    bzoj 4552: [Tjoi2016&Heoi2016]排序
    bzoj 1096: [ZJOI2007]仓库建设
    bzoj 1030: [JSOI2007]文本生成器
    bzoj 1095: [ZJOI2007]Hide 捉迷藏
    JS实现HashMap
    A4纸表格打印
    JAVA字符串格式化-String.format()的使用
    证书打印CSS知识点总结
  • 原文地址:https://www.cnblogs.com/dplearning/p/5742057.html
Copyright © 2011-2022 走看看