免费注册 查看新帖 |

Chinaunix

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

图解以太网帧格式 [复制链接]

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

  1. #!/usr/bin/perl -w
  2. #############################################
  3. #作者:Minuit
  4. #时间:2007年01月11日 星期四 22时55分37秒
  5. #文件名:ipdump.pl
  6. #描述:以太网数据包捕捉工具
  7. #############################################
  8. use strict;
  9. use Getopt::Std;
  10. use Net::Pcap qw(:datalink :functions);
  11. use NetPacket::IP qw(:ALL);
  12. use NetPacket::TCP qw(:ALL);
  13. use NetPacket::UDP qw(:ALL);
  14. use NetPacket::ARP qw(:ALL);
  15. use NetPacket::ICMP qw(:ALL);
  16. use NetPacket::Ethernet qw(:ALL);
  17. use subs qw(
  18.                                 process usage fmtmac fmtip  showetherhead
  19.                                 showiphead showarphead showtcphead
  20.                                 showudphead showicmphead showigmphead
  21.                    );
  22. use vars qw(
  23.                                 $pcap $err $dev $mask $net $err $filter $filterstr $capture
  24.                                 $optimize $dumpfile $dumper  $packet  $link
  25.                                 %stats %ptk_headr %tcpflags
  26.                                 $eth_obj $ip_obj $arp_obj $tcp_obj $udp_obj $icmp_obj
  27.                                 $igmp_obj %ipver %ethtype %ipproto %arpcode %arphwtype
  28.                                 %icmptype %icmpcode %opts
  29.                         );
  30. %ethtype=(
  31.                         2048=>"ETH_TYPE_IP",
  32.                         2054=>"ETH_TYPE_ARP",
  33.                         32923=>"ETH_TYPE_APPLETALK",
  34.                         33100=>"ETH_TYPE_SNMP",
  35.                         34525=>"ETH_TYPE_IPv6",
  36.                         34827=>"ETH_TYPE_PPP"
  37.                 );
  38. %arpcode=(
  39.                      1=>'ARP_OPCODE_REQUEST',
  40.                          2=>'ARP_OPCODE_REPLY',
  41.                          3=>'RARP_OPCODE_REQUEST',
  42.                          4=>'RARP_OPCODE_REPLY'
  43.                  );
  44. %arphwtype=(
  45.                 0=>"ARPHRD_NETROM",
  46.                 1=>"ARPHRD_ETHER",
  47.                 2=>"ARPHRD_EETHER",
  48.                 3=>"ARPHRD_AX25",
  49.                 4=>"ARPHRD_PRONET",
  50.                 5=>"ARPHRD_CHAOS",
  51.                 6=>"ARPHRD_IEEE802",
  52.                 7=>"ARPHRD_ARCNET",
  53.                 8=>"ARPHRD_APPLETLK",
  54.                 15=>"ARPHRD_DLCI",
  55.                 19=>"ARPHRD_ATM",
  56.                 23=>"ARPHRD_METRICOM",
  57.                 24=>"ARPHRD_IEEE1394",
  58.                 27=>"ARPHRD_EUI64",
  59.                 32=>"ARPHRD_INFINIBAND",
  60.                 256=>"ARPHRD_SLIP",
  61.                 257=>"ARPHRD_CSLIP",
  62.                 258=>"ARPHRD_SLIP6",
  63.                 259=>"ARPHRD_CSLIP6",
  64.                 260=>"ARPHRD_RSRVD",
  65.                 264=>"ARPHRD_ADAPT",
  66.                 270=>"ARPHRD_ROSE",
  67.                 271=>"ARPHRD_X25",
  68.                 272=>"ARPHRD_HWX25",
  69.                 512=>"ARPHRD_PPP",
  70.                 513=>"ARPHRD_CISCO",
  71.                 516=>"ARPHRD_LAPB",
  72.                 517=>"ARPHRD_DDCMP",
  73.                 518=>"ARPHRD_RAWHDLC",
  74.                 768=>"ARPHRD_TUNNEL",
  75.                 769=>"ARPHRD_TUNNEL6",
  76.                 770=>"ARPHRD_FRAD",
  77.                 771=>"ARPHRD_SKIP",
  78.                 772=>"ARPHRD_LOOPBACK",
  79.                 773=>"ARPHRD_LOCALTLK",
  80.                 774=>"ARPHRD_FDDI",
  81.                 775=>"ARPHRD_BIF",
  82.                 776=>"ARPHRD_SIT",
  83.                 777=>"ARPHRD_IPDDP",
  84.                 778=>"ARPHRD_IPGRE",
  85.                 779=>"ARPHRD_PIMREG",
  86.                 780=>"ARPHRD_HIPPI",
  87.                 781=>"ARPHRD_ASH",
  88.                 782=>"ARPHRD_ECONET",
  89.                 783=>"ARPHRD_IRDA",
  90.                 784=>"ARPHRD_FCPP",
  91.                 785=>"ARPHRD_FCAL",
  92.                 786=>"ARPHRD_FCPL",
  93.                 787=>"ARPHRD_FCFABRIC",
  94.                 800=>"ARPHRD_IEEE802_TR",
  95.                 801=>"ARPHRD_IEEE80211",
  96.                 802=>"ARPHRD_IEEE80211_PRISM",
  97.                 803=>"ARPHRD_IEEE80211_RADIOTAP",
  98.                 0xFFFF=>"ARPHRD_VOID",
  99.                 0xFFFE=>"ARPHRD_NONE"
  100.             );
  101. %ipver=(
  102.         4=>'IPv4',
  103.         6=>'IPv6',
  104.            );
  105. %ipproto=(
  106.    0=>'IPPROTO_IP',
  107.    1=>'IPPROTO_ICMP',
  108.    2=>'IPPROTO_IGMP',
  109.    4=>'IPPROTO_IPIP',
  110.    6=>'IPPROTO_TCP',
  111.    17=>'IPPROTO_UDP',
  112.    20=>'ETH_ARP',
  113.    41=>'IPPROTO_IPV6',
  114.    255=>'IPPROTO_RAW',
  115.    );

  116. %tcpflags=(
  117.                 0x01=>'TH_FIN',
  118.                 0x02=>'TH_SYN',
  119.                 0x04=>'TH_RST',
  120.                 0x08=>'TH_PUSH',
  121.                 0x10=>'TH_ACK',
  122.                 0x20=>'TH_URG',
  123.         );

  124. %icmptype=(
  125.                 0=>"ICMP_ECHOREPLY",
  126.                 3=>"ICMP_DEST_UNREACH",
  127.                 4=>"ICMP_SOURCE_QUENCH",
  128.                 5=>"ICMP_REDIRECT",
  129.                 8=>"ICMP_ECHO",
  130.                 11=>"ICMP_TIME_EXCEEDED",
  131.                 12=>"ICMP_PARAMETERPROB",
  132.                 13=>"ICMP_TIMESTAMP",
  133.                 14=>"ICMP_TIMESTAMPREPLY",
  134.                 15=>"ICMP_INFO_REQUEST",
  135.                 16=>"ICMP_INFO_REPLY",
  136.                 17=>"ICMP_ADDRESS",
  137.                 18=>"ICMP_ADDRESSREPLY",
  138.                 18=>"NR_ICMP_TYPES",
  139.         );
  140. %icmpcode=(
  141.                 0=>"ICMP_NET_UNREACH",
  142.                 1=>"ICMP_HOST_UNREACH",
  143.                 2=>"ICMP_PROT_UNREACH",
  144.                 3=>"ICMP_PORT_UNREACH",
  145.                 4=>"ICMP_FRAG_NEEDED",
  146.                 5=>"ICMP_SR_FAILED",
  147.                 6=>"ICMP_NET_UNKNOWN",
  148.                 7=>"ICMP_HOST_UNKNOWN",
  149.                 8=>"ICMP_HOST_ISOLATED",
  150.                 9=>"ICMP_NET_ANO",
  151.                 10=>"ICMP_HOST_ANO",
  152.                 11=>"ICMP_NET_UNR_TOS",
  153.                 12=>"ICMP_HOST_UNR_TOS",
  154.                 13=>"ICMP_PKT_FILTERED",
  155.                 14=>"ICMP_PREC_VIOLATION",
  156.                 15=>"ICMP_PREC_CUTOFF",
  157.                 15=>"NR_ICMP_UNREACH",
  158.          );
  159. ($>||$<) && die "Must have (UID|EUID) == 0 to use $0\n";
  160. getopt('i:s:w:r:h',\%opts);
  161. $opts{i} and $dev=eval { " "=~/$opts{i}/;$opts{i} };
  162. $@ && usage;
  163. $opts{s} and $capture=$opts{s};
  164. $opts{w} and $dumpfile=$opts{w};
  165. if ($opts{r})
  166. {
  167. open(FILE,"-|","tcpdump","-n","-r",$opts{r}) or die "Open file:$!\n";
  168. print <FILE>;
  169. exec "/bin/false";
  170. }
  171. $ARGV[0] and $filterstr=eval{" "=~/$ARGV[0]/;$ARGV[0]};
  172. $@ && usage;
  173. $opts{h} && usage;

  174. $capture||=8192;
  175. $filterstr||="any";
  176. $optimize||=0;
  177. $dev||=lookupdev(\$err) or die "lookupdev:$err\n";
  178. $pcap=open_live($dev,$capture,0,5,\$err) or die "open_live:$err\n";
  179. lookupnet(\$dev,\$net,\$mask,\$err)==-1 or die "lookupnet:$err\n";
  180. compile($pcap, \$filter,\$filterstr,\$optimize,\$net) or die "compile:@{[geterr($pcap)]}";
  181. setfilter($pcap,$filter) or die "setfilter:@{[geterr($pcap)]}";
  182. print map {"$_=$ptk_headr{$_}\n"}keys %ptk_headr;

  183. $SIG{INT}=sub{
  184.                 Net::Pcap::stats($pcap,\%stats);
  185.                 Net::Pcap::close($pcap);
  186.                 print map {"$_=$stats{$_}\n"}keys %stats;
  187.                 exit
  188. };
  189. #datalink($pcap)!=DLT_EN10MB && last;
  190. print <<"EOF";
  191. listening on $dev, link-type @{[datalink_val_to_name(datalink($pcap))]} (@{[datalink_val_to_description(datalink($pcap))]}), capture size $capture bytes
  192. EOF
  193. $dumper=dump_open($pcap, $dumpfile) or die "dump_open:$!\n" if $opts{w};
  194. for(;;)
  195. {
  196. $packet=pcap_next($pcap,\%ptk_headr);
  197. $opts{w} && Net::Pcap::dump($dumper,\%ptk_headr,$packet);
  198. $eth_obj=NetPacket::Ethernet->decode($packet);
  199. showetherhead $eth_obj;
  200. if($eth_obj->{type}==ETH_TYPE_IP) {
  201.      $ip_obj=NetPacket::IP->decode(eth_strip($packet));
  202.          showiphead $ip_obj;
  203.      if($ip_obj->{proto}==IP_PROTO_TCP) {
  204.               #$tcp_obj = NetPacket::TCP->decode(ip_strip(eth_strip($packet)));
  205.                           $tcp_obj = NetPacket::TCP->decode($ip_obj->{data});
  206.                           showtcphead $tcp_obj;
  207.      }elsif($ip_obj->{proto}==IP_PROTO_UDP){
  208.                           $udp_obj = NetPacket::UDP->decode($ip_obj->{data});
  209.                           showudphead $udp_obj;
  210.          }elsif($ip_obj->{proto}==IP_PROTO_ICMP){
  211.                           $icmp_obj=NetPacket::ICMP->decode($ip_obj->{data});
  212.                           showicmphead $icmp_obj;
  213.          }elsif($ip_obj->{proto}==IP_PROTO_IGMP){
  214.                           $igmp_obj = NetPacket::IGMP->decode($ip_obj->{data});
  215.                           showigmphead $igmp_obj;
  216.          }
  217. }elsif($eth_obj->{type}==ETH_TYPE_ARP){
  218.    $arp_obj=NetPacket::ARP->decode($eth_obj->{data},$eth_obj);
  219.    showarphead $arp_obj;
  220. }else{
  221.    print "Unknown ether frame type\n";
  222. }

  223. }
  224. sub showetherhead {
  225.                 my $ether=shift;
  226. format ETHHEADER=
  227.                 |----------------------------------------------------|
  228.                 |               ETHERNET PACKET HEAD                 |
  229.                 |----------------------------------------------------|
  230.                 |Ether Type:@<<<<<<<<<<<<<<<<<<<<<<<<                |
  231.                 $ethtype{$eth_obj->{type}}
  232.                 |----------------------------------------------------|
  233.                 |Src Mac:@<<<<<<<<<<<<<<<<<<<<<<<<<<<                |
  234.                 @{[fmtmac $eth_obj->{src_mac}]}
  235.                 |----------------------------------------------------|
  236.                 |Dest Mac:@<<<<<<<<<<<<<<<<<<<<<<<<<<<               |
  237.                 @{[fmtmac $eth_obj->{dest_mac}]}
  238.                 |----------------------------------------------------|
  239. .
  240. $~='ETHHEADER';
  241. write;
  242. =for
  243. print <<"EOF";
  244. src_mac:@{[fmtmac $eth_obj->{src_mac}]}
  245. dest_mac:@{[fmtmac $eth_obj->{dest_mac}]}
  246. eth_type:$ethtype{$eth_obj->{type}}
  247. EOF
  248. =cut
  249. }

  250. sub showiphead {
  251.       my $ip=shift;
  252. format  IPHEADER=
  253.                 |----------------------------------------------------|
  254.                 |              IP   PACKET  HEAD                     |
  255.                 |----------------------------------------------------|
  256.                 |Version:@<<<<<<<|HLen:@<<<<|Tos:@<<<<<|Pktlen:@<<<<<|
  257.                 $ipver{$ip->{ver}},$ip->{hlen},$ip->{tos},$ip->{len}
  258.                 |----------------------------------------------------|
  259.                 |ID:@<<<<<<<<<<<<|Flag:@<<<<<<<<<<<<<  |offset:@<<<<<|
  260.                 $ip->{id},$ip->{flags},$ip->{foffset}
  261.                 |----------------------------------------------------|
  262.                 |TTL:@<<<<|Proto:@<<<<<<<<<<<<<<<<<<<|Cksum:@<<<<<<<<|
  263.                 $ip->{ttl},$ipproto{$ip->{proto}},$ip->{cksum}
  264.                 |----------------------------------------------------|
  265.                 |Source IP:@<<<<<<<<<<<<<<<<<<<<<<<<<<<              |
  266.                 $ip->{src_ip}
  267.                 |----------------------------------------------------|
  268.                 |Dest   IP:@<<<<<<<<<<<<<<<<<<<<<<<<<<<              |
  269.                 $ip->{dest_ip}
  270.                 |----------------------------------------------------|
  271.                 |                      Options                       |
  272.                 |----------------------------------------------------|
  273.                 |Data:@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< |
  274.                 $ip->{data}
  275.                 |----------------------------------------------------|
  276. .
  277. $~='IPHEADER';
  278. write;
  279. =for
  280.      print <<"EOF";
  281. IP version:$ip->{ver}
  282. ID:$ip->{id}
  283. TTL:$ip->{ttl}
  284. Src ip:$ip->{src_ip}
  285. Dst ip:$ip->{dest_ip}
  286. Header len:$ip->{hlen}
  287. Packet len:$ip->{len}
  288. Proto:$ipproto{$ip->{proto}}
  289. Cksum:$ip->{cksum}
  290. Data:$ip->{data}
  291. EOF
  292. #ip header == ip->{hlen}<<2
  293. =cut
  294. }
  295. sub showarphead {
  296.                 my $arp=shift;
  297. format ARPHEADER=
  298.                 |----------------------------------------------------|
  299.                 |                 ARP PACKET  HEAD                   |
  300.                 |----------------------------------------------------|
  301.                 |Hw type:@<<<<<<<<<<<<<<<<  |Hwlen:@<<<<<<<<<<<<<    |
  302.                 $arphwtype{$arp->{htype}},$arp->{hlen}
  303.                 |----------------------------------------------------|
  304.                 |Proto type:@<<<<<<<<<<<<<<<|Proto len:@<<<<<<<<<<<< |
  305.                 $ethtype{$arp->{proto}},$arp->{plen}
  306.                 |----------------------------------------------------|
  307.                 |Option Code:@<<<<<<<<<<<<<<<<<<<<<<<                |
  308.                 $arpcode{$arp->{opcode}}
  309.                 |----------------------------------------------------|
  310.                 |Src hwaddr:@<<<<<<<<<<<<<<<<<<<<<<<<<               |
  311.                 @{[fmtmac $arp->{sha}]}
  312.                 |----------------------------------------------------|
  313.                 |Src Protoaddr:@<<<<<<<<<<<<<<<<<<<<<<<<             |
  314.                 @{[fmtip $arp->{spa}]}
  315.                 |----------------------------------------------------|
  316.                 |Dest hwaddr:@<<<<<<<<<<<<<<<<<<<<<<<<<<<            |
  317.                 @{[fmtmac $arp->{tha}]}
  318.                 |----------------------------------------------------|
  319.                 |Dest Protoaddr:@<<<<<<<<<<<<<<<<<<<<<<<             |
  320.                 @{[fmtip $arp->{tpa}]}
  321.                 |----------------------------------------------------|
  322. .
  323. $~='ARPHEADER';
  324. write;
  325. =for
  326. print <<"EOF";
  327. Hardware type:$arp->{htype}
  328. Header length:$arp->{hlen}
  329. Protocol type:$arp->{proto}
  330. Protocol length:$arp->{plen}
  331. Src hwaddr:@{[fmtmac $arp->{sha}]}
  332. Src Protocoladdr:@{[fmtip $arp->{spa}]}
  333. Dst hwaddr:@{[fmtmac $arp->{tha}]}
  334. Dst Protocoladdr:@{[fmtip $arp->{tpa}]}
  335. Opcode:$arpcode{$arp->{opcode}}
  336. EOF
  337. =cut
  338. }

  339. sub showtcphead {
  340.                 my $tcp=shift;
  341.                 (my $flags=join "|",map{ $tcp->{flags}&$_&&$tcpflags{$_}||''}keys %tcpflags)=~s/^\|+//;
  342. format TCPHEADER=
  343.                 |----------------------------------------------------|
  344.                 |                   TCP PACKET HEAD                  |
  345.                 |----------------------------------------------------|
  346.                 |Src Port:@<<<<<<<<<<<<<<|Dest Port:@<<<<<<<<<<<<<<<<|
  347.                 $tcp->{src_port},$tcp->{dest_port}
  348.                 |----------------------------------------------------|
  349.                 |Seq Number:@<<<<<<<<<<<<|ACK  Number:@<<<<<<<<<<<<<<|
  350.                 $tcp->{seqnum},$tcp->{acknum}
  351.                 |----------------------------------------------------|
  352.                 |Hlen:@<<<|Reserve:@<<<<|Flags:@<<<<<<<<<|Wsize:@<<<<|
  353.                 $tcp->{hlen},$tcp->{reserved},$flags,$tcp->{winsize}
  354.                 |----------------------------------------------------|
  355.                 |Cksum:@<<<<<<<<<<<<<<<|USG:@<<<<<<<<<<<<<<<<<<<<<<<<|
  356.                 $tcp->{cksum},$tcp->{urg}
  357.                 |----------------------------------------------------|
  358.                 |                      Options                       |
  359.                 |----------------------------------------------------|
  360.                 |Data:  @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< |
  361.                 $tcp->{data}
  362.                 |----------------------------------------------------|
  363. .
  364. $~='TCPHEADER';
  365. write;
  366. =for
  367. print <<"EOF";
  368. Src Port:$tcp->{src_port}
  369. Dest Port:$tcp->{dest_port}
  370. Seq Number:$tcp->{seqnum}
  371. Ack Number:$tcp->{acknum}
  372. Haed Length:$tcp->{hlen}
  373. Reserved:$tcp->{reserved}
  374. Flags:@{[map{ $tcp->{flags}&$_&&$tcpflags{$_}||''}keys %tcpflags] }
  375. Window Size:$tcp->{winsize}
  376. Cksum:$tcp->{cksum}
  377. Urg Ptr:$tcp->{urg}
  378. Options:@{[unpack("B*",$tcp->{options})]}
  379. Data:$tcp->{data}
  380. EOF
  381. =cut
  382. }

  383. sub showudphead {
  384.                 my $udp=shift;
  385. format UDPHEADER=
  386.                 |----------------------------------------------------|
  387.                 |                  UDP  PACKET  HEAD                 |
  388.                 |----------------------------------------------------|
  389.                 |Src Port:@<<<<<<<<<<<<<<|Dest Port:@<<<<<<<<<<<<<<<<|
  390.                 $udp->{src_port},$udp->{dest_port}
  391.                 |----------------------------------------------------|
  392.                 |Head Len:@<<<<<<<<<<<<<<|Cksum:@<<<<<<<<<<<<<<<<    |
  393.                 $udp->{len},$udp->{cksum}
  394.                 |----------------------------------------------------|
  395.                 |Data: @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<  |
  396.                 $udp->{data}
  397.                 |----------------------------------------------------|
  398. .
  399. $~='UDPHEADER';
  400. write;
  401. =for
  402. print <<"EOF";
  403. Src Port:$udp->{src_port}
  404. Dest Port:$udp->{dest_port}
  405. Haed len:$udp->{len}
  406. Udp Cksum:$udp->{cksum}
  407. Data:$udp->{data}
  408. EOF
  409. =cut
  410. }

  411. sub showicmphead {
  412.                 my $icmp=shift;
  413. format ICMPHEADER=
  414.                 |----------------------------------------------------|
  415.                 |                 ICMP PACKET  HEAD                  |
  416.                 |----------------------------------------------------|
  417.                 |Type:@<<<<<<<<<<<<<|Code:@<<<<<<<<<<<<<<|Cksum:@<<<<|
  418.                 $icmptype{$icmp->{type}},$icmpcode{$icmp->{code}},$icmp->{cksum}
  419.                 |----------------------------------------------------|
  420.                 |Data:@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< |
  421.                 $icmp->{data}
  422.                 |----------------------------------------------------|
  423. .
  424. $~='ICMPHEADER';
  425. write;
  426. =for
  427. print <<"EOF";
  428. Type:$icmptype{$icmp->{type}}
  429. Code:$icmpcode{$icmp->{code}}
  430. Cksum:$icmp->{cksum}
  431. Data:$icmp->{data}
  432. EOF
  433. =cut
  434. }

  435. sub showigmphead {
  436.                 my $igmp=shift;
  437. format IGMPHEADER=
  438.                 |----------------------------------------------------|
  439.                 |                    IGMP PACKET HEAD                |
  440.                 |----------------------------------------------------|
  441.                 |Version:@<<<<<<<<<<<<<<|Type:@<<<<<<<<<|Hlen:@<<<<<<|
  442.                 $igmp->{version},$igmp->{type},$igmp->{len}
  443.                 |----------------------------------------------------|
  444.                 |Subtype:@<<<<<<<<<<<<<<|Cksum:@<<<<<<<<<<<<<<       |
  445.                 $igmp->{subtype},$igmp->{cksum}
  446.                 |----------------------------------------------------|
  447.                 |Group addr:@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<     |
  448.                 $igmp->{group_addr}
  449.                 |----------------------------------------------------|
  450.                 |Data:@<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< |
  451.                 $igmp->{data}
  452.                 |----------------------------------------------------|
  453. .
  454. $~='IGMPHEADER';
  455. write;
  456. =for
  457. print <<"EOF";
  458. Version:$igmp->{version}
  459. Type:$igmp->{type}
  460. Haed Length:$igmp->{len}
  461. Subtype:$igmp->{subtype}
  462. Cksum:$igmp->{cksum}
  463. Group_addr:$igmp->{group_addr}
  464. Data:$igmp->{data}
  465. EOF
  466. =cut
  467. }


  468. sub fmtmac {
  469.     join ":",unpack("A2" x 6,shift);
  470. }

  471. sub fmtip {
  472.          sprintf "%d.%d.%d.%d",map { hex($_)} unpack("A2" x 4,shift)
  473. }

  474. sub usage {
  475. print <<"EOF";
  476. Usage:$0 [options] [expression]
  477. \t\t-i specified Listen on interface
  478. \t\t-s max capture packet length
  479. \t\t-w write the packets to file
  480. \t\t-r read  packets from file
  481. \t\t--help help message
  482. EOF
  483. exit;
  484. }
复制代码

[ 本帖最后由 lovesaka 于 2007-1-12 04:01 编辑 ]

Screenshot.png (114.67 KB, 下载次数: 78)

抓图

抓图

论坛徽章:
0
2 [报告]
发表于 2007-01-12 04:42 |只看该作者
前几天网下的模块试试效果突发奇想给格式化了一下就成了现在这个样子看起来效果还不错
我的环境是linux上面的模块大部分不是自带要自己到capm down 一下
代码很简单只要了解一点网络就能懂就不注释了说一下用法

  1. -i  指定抓包的接口
  2. -s 指定最大能捕获多大的数据包
  3. -w 把捕获了的数据包写入文件里
  4. -r  从文件里把数据包读出(偷了一下懒直接用的是tcpdump^_^)
  5. --help 这个不用说你也知道吧不知道发邮件告诉我
  6. [expression] 这个就是要捕获包的表达式也可以不用写默认是任何数据包都吃你也可以像tcpdump那样写一些式子 比如  tcp and port XXX 或者 udp and src xxx.xxx.xxx.xxx 最好去看一下tcpdump怎么用
复制代码

其实这个程序是和tcpdump同一个库生出来的
perl 的模块已经封装得抽像了非常简单有时间大家自己去看看下下来玩玩自己构造一下数据包还是很有意思的
如果程序有问题请提出一起学习啊

论坛徽章:
0
3 [报告]
发表于 2007-01-12 10:09 |只看该作者
不错哦,努力研究的精神值得鼓励.

论坛徽章:
0
4 [报告]
发表于 2007-01-12 16:40 |只看该作者
写得很垃圾多谢版主支持^_^
以后会继续努力呵呵

[ 本帖最后由 lovesaka 于 2007-1-12 16:42 编辑 ]

论坛徽章:
0
5 [报告]
发表于 2007-01-15 15:54 |只看该作者
向你们学习

论坛徽章:
0
6 [报告]
发表于 2007-01-15 16:59 |只看该作者
路过,楼主水平一般,但有郭大侠之风,勤
不过perl提倡懒惰,所以
哈哈!

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
7 [报告]
发表于 2007-01-16 09:20 |只看该作者
楼主愿意分享他的代码..这就很值得鼓励了....
请不要说风凉话...要不你也分享一些代码...
让大夥见识一下...
这样以後你说的话..也不会有那麽多人反驳你了....

论坛徽章:
0
8 [报告]
发表于 2007-01-16 11:32 |只看该作者
http://packetstormsecurity.org/sniffers/iptraffic-v0.01.zip

#!/usr/bin/perl

# iptraffic-v0.09.pl by Randy Nash (nashr@atriskonline.com)
# Copyright (C) 2004-2005 Randy Nash - @RISK Online (www.atriskonline.com)
#
# This is the beginnings of a simple perl sniffer.  It uses standard Perl
# modules to perform protocol decodes and dumps the results to MySQL.


use strict;

use Net:cap;
use Net:capUtils;

# Ethernet related protocols
use NetPacket::Ethernet qw(:ALL);
use NetPacket::ARP qw(:ALL);
use NetPacket::IP qw(:ALL);
use NetPacket::ICMP qw(:ALL);
use NetPacket::IGMP qw(:ALL);
use NetPacket::TCP qw(:ALL);
use NetPacket::UDP qw(:ALL);

# Other protocols
use NetPacket::LLC;
use NetPacket::SpanningTree;

# Miscellaneous
use DBI;
use Socket;
use Term::ReadKey;

# Flush STDOUT
$|=1;

# Vars used for pcap and decoding
my $err="";
my ($device, $cap_descrip);
# var for tracking protocol type
my $proto = "";

# Declaration of functions
sub pcapinit;
sub read_packet;

# Mainprogram starts here
# select the adapter
if (!$ARGV[0])
    {
    my $err;
    my $dev = Net:cap::lookupdev(\$err);
    if (defined $err) {
        die 'Unable to determine network device for monitoring - ', $err;
        exit;
    }

    my ($address, $netmask, $err);
    if (Net:cap::lookupnet($dev, \$address, \$netmask, \$err)) {
        die 'Unable to look up device information for ', $dev, ' - ', $err;
    }
    print STDOUT "Available interfaces; Please select one from the list below:\n\n\t$dev\n\n";
        }
    else
        {
            $device=$ARGV[0];
    }

# Connect To Database
# Use your own hostname, database, username and password here
#
my $database = "iptraffic";
my $hostname = "localhost";
my $username = "root";
my $password = "";
my $dbh = DBI->connect("DBI:mysqldatabasehostname", $username, $password);
die "Cannot log into database...\n" unless $dbh;
print "Connected to $database... \n";

pcapinit;

#Subfunctions only

# Initialize the sniffing
sub pcapinit
    {
        $cap_descrip=Net:cap:pen_live($device, 2000, 1, 1000, \$err);

        if (!$cap_descrip) # If something does not work correctly
            {
                print "\n Error: $err\n\n";
                exit;
            }

        Net:cap::loop($cap_descrip, -1, \&read_packet, "test";
    }

# Read and process packets.
# Currently all DATA fields are dropped to save spaces.
# All field definitions come directly from the PM documentation
#
sub read_packet
    {
        # Ethernet
        my $key=ReadKey(-1);
        my ($arg, $hdr, $pkt)=@_;
        my $eth_obj=NetPacket::Ethernet->decode($pkt);
        $main::proto = "ether";
        $dbh->do("insert into etherpkt (eth_type, eth_srcmac, eth_destmac)
        values ('$eth_obj->{type}','$eth_obj->{src_mac}','$eth_obj->{dest_mac}')
        ";

        # Ether Type = IP
        if ($eth_obj->{type}==ETH_TYPE_IP)
            {
                # Determine IP Protocol within IP
                use NetPacket::Ethernet qw(:strip);
                use NetPacket::IP;
                my $ip_obj=NetPacket::IP->decode(eth_strip($pkt));
                $main::proto = "ip";
                $dbh->do("insert into ippkt (pid, ip_ver, ip_hlen, ip_flags, ip_foffset, ip_tos, ip_len, ip_id, ip_ttl, ip_proto, ip_cksum, ip_srcip, ip_dstip)
                values (LAST_INSERT_ID(),'$ip_obj->{ver}','$ip_obj->{hlen}','$ip_obj->{flags}','$ip_obj->{foffset}','$ip_obj->{tos}','$ip_obj->{len}','$ip_obj->{id}','$ip_obj->{ttl}','$ip_obj->{proto}','$ip_obj->{cksum}','$ip_obj->{src_ip}','$ip_obj->{dest_ip}')
                ";

                # ICMP
                if ($ip_obj->{proto}==IP_PROTO_ICMP)
                    {
                        my $icmp_obj = NetPacket::ICMP->decode($pkt);
                        $main::proto = "icmp";
                        $dbh->do("insert into icmppkt (pid, icmp_type, icmp_code, icmp_cksum)
                        values (LAST_INSERT_ID(),'$icmp_obj->{type}','$icmp_obj->{code}','$icmp_obj->{cksum}')
                        ";
                    }

                # IGMP
                elsif ($ip_obj->{proto}==IP_PROTO_IGMP)
                    {
                        my $ip_obj = NetPacket::IP->decode(eth_strip($pkt));
                        my $igmp_obj = NetPacket::IGMP->decode($ip_obj->{data});
                        $main::proto = "igmp";
                        $dbh->do("insert into igmppkt (pid, igmp_ver, igmp_type, igmp_len, igmp_subtype, igmp_cksum, igmp_group_addr)
                        values (LAST_INSERT_ID(),'$igmp_obj->{version}','$igmp_obj->{type}','$igmp_obj->{len}','$igmp_obj->{subtype}','$igmp_obj->{cksum}','$igmp_obj->{group_addr}')
                        ";
                    }

                # IPIP
                elsif ($ip_obj->{proto}==IP_PROTO_IPIP)
                    {
                        $main::proto = "ipip";
                    }

                # TCP
                elsif ($ip_obj->{proto}==IP_PROTO_TCP)
                    {
                        my $tcp_obj = NetPacket::TCP->decode(ip_strip(eth_strip($pkt)));
                        $main::proto = "tcp";
                        $dbh->do("insert into tcppkt (pid, tcp_sport, tcp_dport, tcp_seqnum, tcp_acknum, tcp_hlen, tcp_res, tcp_flags, tcp_win, tcp_cksum, tcp_urg)
                                  values (LAST_INSERT_ID(),'$tcp_obj->{src_port}','$tcp_obj->{dest_port}','$tcp_obj->{seqnum}','$tcp_obj->{acknum}','$tcp_obj->{hlen}','$tcp_obj->{reserved}','$tcp_obj->{flags}','$tcp_obj->{winsize}','$tcp_obj->{cksum}','$tcp_obj->{urg}')
                        ";
                    }

                # UDP
                elsif ($ip_obj->{proto}==IP_PROTO_UDP)
                    {
                        my $ip_obj = NetPacket::IP->decode(eth_strip($pkt));
                        my $udp_obj = NetPacket::UDP->decode($ip_obj->{data});
                        $main::proto = "udp";
                        $dbh->do("insert into udppkt (pid, udp_sport, udp_dport, udp_len, udp_cksum)
                        values (LAST_INSERT_ID(),'$udp_obj->{src_port}','$udp_obj->{dest_port}','$udp_obj->{len}','$udp_obj->{cksum}')
                        ";
                    }

                # OSPF
                elsif ($ip_obj->{proto}=="89"
                            {
                            $main::proto = "ospf";
                            }




                # Other IP, Multicast, Unicast, etc...
                else
                    {
# INTERNET MULTICAST ADDRESSES
# Reference: ftp://ftp.iana.org/assignments/multicast-addresses/
#
# Host Extensions for IP Multicasting [RFC1112] specifies the extensions
# required of a host implementation of the Internet Protocol (IP) to
# support multicasting.  The multicast addressess are in the range
# 224.0.0.0 through 239.255.255.255. Current addresses are listed below.
#
# The range of addresses between 224.0.0.0 and 224.0.0.255, inclusive,
# is reserved for the use of routing protocols and other low-level
# topology discovery or maintenance protocols, such as gateway discovery
# and group membership reporting.  Multicast routers should not forward
# any multicast datagram with destination addresses in this range,
# regardless of its TTL.

# This section tests for various Multicast protocols that I have started to
# define.  This is VERY incomplete, and only a sample based on the type of
# traffic I can test in my environments.

                        if ($ip_obj->{dest_ip}=~m/^224.0.0.251/)
                            {
                            $main::proto = "mdns";
                            }
# Anything I have not yet accounted for.
                        else
                            {
                            $main::proto = "undef-ip";
                            }
                    }
            }

# Other known protocols
        # ARP
        elsif ($eth_obj->{type}==ETH_TYPE_ARP)
            {
                my $arp_obj = NetPacket::ARP->decode($eth_obj->{data}, $eth_obj);
                $main::proto = "arp";
                $dbh->do("insert into arppkt (pid, arp_htype, arp_proto, arp_hlen, arp_plen, arp_opcode, arp_sha, arp_spa, arp_tha, arp_tpa)
                values (LAST_INSERT_ID(),'$arp_obj->{htype}','$arp_obj->{proto}','$arp_obj->{hlen}','$arp_obj->{plen}','$arp_obj->{opcode}','$arp_obj->{sha}','$arp_obj->{spa}','$arp_obj->{tha}','$arp_obj->{tpa}')
                ";
            }

        # APPLETALK
        elsif ($eth_obj->{type}==ETH_TYPE_APPLETALK)
            {
                 $main::proto = "atalk";
            }

        # SNMP
        elsif ($eth_obj->{type}==ETH_TYPE_SNMP)
            {
                 $main::proto = "snmp";
            }

        # IPv6
        elsif ($eth_obj->{type}==ETH_TYPE_IPv6)
            {
                 $main::proto = "ipv6";
            }

        # PPP
        elsif ($eth_obj->{type}==ETH_TYPE_PPP)
            {
                 $main::proto = "ppp";
            }
        # LOOP (Loopback)
#        ETH_TYPE_LOOP       => 0x9000;
        elsif ($eth_obj->{type}==0x9000)
            {
                 $main::proto = "loop";
            }

        # Unknown
        else
            {
                # Test here for various broadcast/multicast/LLC packets
                my $eth_obj=NetPacket::Ethernet->decode($pkt);

                # AARP (Appletalk Address Resolution Protocol)
                if ($eth_obj->{dest_mac}=~m/^090007ffffff/)
                    {
                        $main::proto = "aarp";
                    }

                # CDP (Cisco Discovery Protocol)
                elsif ($eth_obj->{dest_mac}=~m/^01000ccccccc/)
                    {
                        $main::proto = "cdp/vtp";
                    }

                # CGMP (Cisco Group Management Protocol)
                elsif ($eth_obj->{dest_mac}=~m/^01000cdddddd/)
                    {
                        $main::proto = "cgmp";
                    }

                # DEC MOP (DEC Maintenance Operation Protocol (MOP) Remote Console)
                elsif ($eth_obj->{dest_mac}=~m/^ab0000020000/)
                    {
                        $main::proto = "decmop";
                    }

                # NETLOGON (NETBIOS Multi NETLOGON Query for Primary DC FRAME)
                elsif ($eth_obj->{dest_mac}=~m/^030000000001/)
                    {
                        $main::proto = "netlogon";
                    }

                # STP (Spanning Tree protocol)
                elsif ($eth_obj->{dest_mac}=~m/^0180c200000/)
                    {
                        my $llc_obj=NetPacket::LLC->decode($eth_obj->{data});
                        my $st_obj=NetPacket::SpanningTree->decode($llc_obj->{data});
                        $main::proto = "stp";
                        $dbh->do("insert into stppkt (pid, stp_max_age, stp_message_age, stp_bpdu_flags, stp_bridge_mac, stp_bpdu_type, stp_topology_change, stp_bridge_priority, stp_topology_change_ack, stp_protocol_version, stp_forward_delay, stp_hello_time, stp_port_num, stp_root_priority, stp_root_path_cost, stp_protocol_id, stp_root_mac, stp_port_priority, stp_root_id, stp_port_id, stp_bridge_id)
                        values (LAST_INSERT_ID(),'$st_obj->{max_age}', '$st_obj->{message_age}', '$st_obj->{bpdu_flags}', '$st_obj->{bridge_mac}', '$st_obj->{bpdu_type}', '$st_obj->{topology_change}', '$st_obj->{bridge_priority}', '$st_obj->{topology_change_ack}', '$st_obj->{protocol_version}', '$st_obj->{forward_delay}', '$st_obj->{hello_time}', '$st_obj->{port_num}', '$st_obj->{root_priority}', '$st_obj->{root_path_cost}', '$st_obj->{protocol_id}', '$st_obj->{root_mac}', '$st_obj->{port_priority}', '$st_obj->{root_id}', '$st_obj->{port_id}', '$st_obj->{bridge_id}')
                        ";
                    }

# Broadcast - This is very generic at this time, and includes,
# by default, anything not previously addressed that has a
# destination mac address of ffffffffffff.  This will include,
# for example, IPX packets.  Don't take this designation too
# seriously at this time.

                elsif ($eth_obj->{dest_mac}=~m/^ffffffffffff/)
                    {
                        $main::proto = "broadcast";
                    }

                # Leftover unresolved packets...
                else
                    {
                        $main::proto = "undef-eth";
                    }
            }
        # update pkt_proto in ether_pkt table
        $dbh->do("UPDATE etherpkt SET pkt_proto = '$main::proto' WHERE pid = LAST_INSERT_ID()");

        # Check for keystroke to exit program
        if ($key)
            {
                $dbh->disconnect;
                exit(0);
            }
    }
;

论坛徽章:
0
9 [报告]
发表于 2007-01-16 11:45 |只看该作者
通过数据库之后,便于做长久分析,以及美化的输出(html,xml,excel),做事之前就要有一个长远的可扩展
性,要么不做,要做就要能给以后扩展或是增加什么功能都提供方便,呵呵。
perl的懒惰精神就在于此。
PS:这也是我为什么说楼主做事像郭大侠的原因。
很多人会说,你不过是拿别人的代码,哈哈,不知道有人听说过一个故事没
美国福特公司一台大型发电机出了故障,工程师们会诊了三个月,没有结果,最后请专家斯坦梅茨诊断。专家在电机房仔细观察核计了两天两夜,最后用粉笔在电机壳上划了一条线,让修理工把电机打开,将划线部分的线圈减少了十六圈,排除了故障。斯坦梅茨向老板要了一万美元的酬金。老板请他列表,标明酬金细目。他说:"用分、粉笔划一条线1美元,知道在那里划线9999美元。"公司立刻照付了。
  事情往往这样,过程很复杂,结局很简单,而人们偏好注重结局。
软件也一样,知道哪有已经开发的轮子url,然后下了安装很简单,但是要找到这个url,就是一个很复杂的过程了。

[ 本帖最后由 helbreathszw 于 2007-1-16 11:49 编辑 ]

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
10 [报告]
发表于 2007-01-16 12:44 |只看该作者
原帖由 helbreathszw 于 2007-1-16 11:45 发表
通过数据库之后,便于做长久分析,以及美化的输出(html,xml,excel),做事之前就要有一个长远的可扩展
性,要么不做,要做就要能给以后扩展或是增加什么功能都提供方便,呵呵。
perl的懒惰精神就在于此。
PS:这 ...

请整理一下代码 上面有表情看不清啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP