Linux系统中字符串搜索命令ngrep的用法

  ngrep 是grep的网络版,他力求更多的grep特征,用于搜寻指定的数据包。由于安装ngrep需用到ibpcap库, 所以支持大量的操作系统和网络协议,能识别TCP、UDP和ICMP包。

  安装ngrep

  下载地址

  代码如下:

  git clone git://git.code.sf.net/p/ngrep/code ngrep-code

  进入目录

  代码如下:

  cd ngrep-code

  ./configure --with-pcap-includes=/usr/local/include/pcap

  make

  make install

  选项

  -h is help/usage

  -V is version information

  -q is be quiet (don't print packet reception hash marks)静默模式,如果没有此开关,未匹配的数据包都以“#”显示

  -e is show empty packets 显示空数据包

  -i is ignore case 忽略大小写

  -v is invert match 反转匹配

  -R is don't do privilege revocation logic

  -x is print in alternate hexdump format 以16进制格式显示

  -X is interpret match expression as hexadecimal 以16进制格式匹配

  -w is word-regex (expression must match as a word) 整字匹配

  -p is don't go into promiscuous mode 不使用混杂模式

  -l is make stdout line buffered

  -D is replay pcap_dumps with their recorded time intervals

  -t is print timestamp every time a packet is matched在每个匹配的包之前显示时间戳

  -T is print delta timestamp every time a packet is matched显示上一个匹配的数据包之间的时间间隔

  -M is don't do multi-line match (do single-line match instead)仅进行单行匹配

  -I is read packet stream from pcap format file pcap_dump 从文件中读取数据进行匹配

  -O is dump matched packets in pcap format to pcap_dump 将匹配的数据保存到文件

  -n is look at only num packets 仅捕获指定数目的数据包进行查看

  -A is dump num packets after a match匹配到数据包后Dump随后的指定数目的数据包

  -s is set the bpf caplen

  -S is set the limitlen on matched packets

  -W is set the dump format (normal, byline, single, none) 设置显示格式byline将解析包中的换行符

  -c is force the column width to the specified size 强制显示列的宽度

  -P is set the non-printable display char to what is specified

  -F is read the bpf filter from the specified file 使用文件中定义的bpf(Berkeley Packet Filter)

  -N is show sub protocol number 显示由IANA定义的子协议号

  -d is use specified device (index) instead of the pcap default

  应用举例:

  捕获所有post请求(加个-W byline 参数后,将解析包中的换行符):

  代码如下:

  ranger@ranger:~$ sudo ngrep -q -W byline "(POST).*"

  interface: eth0 (192.168.122.0/255.255.254.0)

  match: (POST).*

  T 192.168.122.74:46048 -> 140.207.228.58:80 [A]

  POST /Hotel/OTA_HotelSearch.asmx?wsdl HTTP/1.1.

  Content-Type: text/xml; charset=UTF-8.

  SOAPAction: http://ctrip.com/Request.

  Accept-Encoding: gzip, deflate.

  Content-Length: 1330.

  Accept: */*.

  Accept-Language: zh-cn.

  User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0).

  UA-CPU: x86.

  Accept-Encoding: gzip, deflate.

  Connection: close.

  Host: openapi.ctrip.com.

  .

   <Request>

  <Header AllianceID="***" SID="***" TimeStamp="1393554304685" RequestType="OTA_HotelSearch" Signature="B166CDF5422A6DA5BA81A08036E938E7"/>

  <HotelRequest>

  <RequestBody xmlns:ns="http://www.opentravel.org/OTA/2003/05" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

  xmlns:xsd="http://www.w3.org/2001/XMLSchema">

  <ns:OTA_HotelSearchRQ Version="1.0" PrimaryLangID="zh"

  xsi:schemaLocation="http://www.opentravel.org/OTA/2003/05 OTA_HotelSearchRQ.xsd"

(0)

相关推荐

  • 在Linux系统中使用tar命令压缩和解压文件的教程

    linux中的tar命令 tar(磁带归档)命令是linux系统中被经常用来将文件存入到一个归档文件中的命令. 其常见的文件扩展包括:.tar.gz 和 .tar.bz2, 分别表示通过了gzip或b ...

  • 关于在Linux系统中的gdb命令知识

    在Linux系统中有许多的命令程序来辅助系统的正常和方便运行,那么其中在系统中有着一个叫做gdb命令的程序,那么我们今天就来了解下关于gdb命令的知识吧! 一、常规调试 gdb是Linux下常用的程序 ...

  • Linux系统中的passwd命令实用技巧小结

    先来回顾一下passwd命令的基本用法: Linux passwd命令用来更改使用者的密码 语法 passwd [-k] [-l] [-u [-f]] [-d] [-S] [username] 必要参 ...

  • Linux系统中的screen命令基本使用教程

    作为linux服务器管理员,经常要使用ssh登陆到远程linux机器上做一些耗时的操作. 也许你遇到过使用telnet或SSH远程登录linux,运行一些程序.如果这些程序需要运行很长时间(几个小时) ...

  • Linux系统中怎么搜索文件命令大全

    命令1:which "which 命令" 查找且只能查找命令所在目录 例如:which ls 命令2:whereis "whereis 命令" 查找且只能查找命令所在目录 + 帮助文档位置 where ...

  • Linux系统中如何从命令行嗅探HTTP流量

    假设你出于某个原因而想嗅探网络上的实时HTTP Web流量(比如HTTP请求和回应)。比如说,你可能在测试网站服务器的试验性功能,或者在调试Web应用程序或充分利用REST的服务,抑或是你想要为PAC ...

  • 在Linux系统中使用xkill命令杀掉未响应的进程

    我们如何在Linux中杀掉一个资源/进程?很明显我们会找出资源的pid然后用kill命令. 说的更明白一点,我们可以找到某个资源(比如terminal)的PID: 代码如下: $ ps -A | gr ...

  • Linux系统中的sudo命令使用讲解

    "Sudo" 是Unix/Linux平台上的一个非常有用的工具,它允许系统管理员分配给普通用户一些合理的"权利",让他们执行一些只有超级用户或其他特许用户才能完 ...

  • Linux系统中quota磁盘命令的相关使用解析

    quota 显示磁盘已使用的空间与限制. 语 法:quota [-quvV][用户名称...] 或 quota [-gqvV][群组名称...] 补充说明:执行quota指令,可查询磁盘空间的限制,并 ...