免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1946 | 回复: 0
打印 上一主题 下一主题

cap格式简单分析 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-12-18 14:56 |只看该作者 |倒序浏览

                [color="#ff0000"]分析一、
文件头部   : D4 C3 B2 A1 02 00 04 00 00 00 00 00 00 00 00 00
              FF FF 00 00 01 00 00 00
数据包头部1: 3B B7 0F 4B 25 52 01 00 [color="#0000ff"]A2 00 00 00 A2
00 00 00
数据       : 00 0F FE 0A ...67 F2 95 长度:0xA2 = 162
数据包头部2: 3B B7 0F 4B 4D 06 04 00[color="#0000ff"] A2 00 00 00 A2
00 00 00
数据       : 00 1E ... 长度:0xA2 = 162

[color="#ff0000"]分析二、
[color="#000000"]文件头部
        [color="#ff00ff"]标识        [color="#00ffff"]版本(guess)
[color="#ff00ff"]        D4 C3 B2 A1 02 00 04
00 00 00 00 00 00 00 00 00
        FF FF 00 00 01 00 00 00
                                [color="#0000ff"]理论长度    [color="#00ff00"]实际长度
头部1: BD 77 10 4B 11 AB 01 00 [color="#0000ff"]3C 00 00 00 [color="#00ff00"]3C 00 00 00
数据 : 00 1D ...



[color="#ff0000"]Eth协议:
[color="#008000"]6字节目的      6字节源地址      
[color="#ff0000"]2字节协议类型
[color="#008000"]00 1E 90 EB BA 00 0F FE 0A
D2 C8 [color="#ff0000"]08 00

协议类型:
IP --- 0x08 00


[color="#ff0000"]IP协议:
长度 通常为20字节,例外由首4位确定
载荷类型的位置:第10字节
UDP 17 0x11
TCP  6 0x06
ICMP 1 0x01

typedef struct ip_hdr                //定义IP首部
{
    unsigned
char    h_verlen;        //4位IP版本号,4位首部长度
    unsigned
char    tos;            //8位服务类型TOS
    unsigned
short    total_len;        //16位总长度(字节)
    unsigned
short    ident;            //16位标识
    unsigned
short    frag_and_flags;    //3位标志位
    unsigned
char    ttl;            //8位生存时间 TTL
    unsigned
char    proto;            //8位协议 (TCP, UDP 或其他)
    unsigned
short    checksum;        //16位IP首部校验和
    unsigned
int    sourceIP;        //32位源IP地址
    unsigned
int    destIP;            //32位目的IP地址
}IP_HEADER, *PIP_HEADER;

[color="#ff0000"]UDP 协议:
[color="#ff0000"]8个字节
源端口 2 目的端口2 长度2 校验2

[color="#ff0000"]TCP协议:
[color="#ff0000"]长度:20
typedef struct tcp_hdr                //定义TCP首部
{
    unsigned
short    th_sport;        //16位源端口
    unsigned
short    th_dport;        //16位目的端口
    unsigned
int    th_seq;            //32位序列号
    unsigned
int    th_ack;            //32位确认号
    unsigned
char    th_lenres;        //4位首部长度/6位保留字
    unsigned
char    th_flags;        //6位标志位
    unsigned
short    th_win;            //16位窗口大小
    unsigned
short    th_sum;            //16位校验和
    unsigned
short    th_urp;            //16位紧急数据偏移量
}TCP_HEADER, *PTCP_HEADER;

常见端口:
53 domain(DNS)
80 http协议
1863 msnp协议


RTP协议分析:
RTP 固定头中的各字段
RTP 头有以下格式 :
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
2 3 4 5 6 7 8 9 0
1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|V=2|P|X|
CC  |M| [color="#ff0000"]    PT      | sequence number              
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                        timestamp                           
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
synchronization source (SSRC)
identifier                    |
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
contributing source (CSRC) identifiers                      |
| ....                                                        
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/108358/showart_2125033.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP