Packet sniffer: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
Line 24: Line 24:
reference
reference
* [http://wiki.wireshark.org/DisplayFilters DisplayFilters - The Wireshark Wiki]
* [http://wiki.wireshark.org/DisplayFilters DisplayFilters - The Wireshark Wiki]
resources
* [http://en.wikipedia.org/wiki/Packet_analyzer Packet analyzer - Wikipedia, the free encyclopedia]
* [http://www.softking.com.tw/soft/review.asp?fid1=6&fid2=21 網路監測的軟體目錄 - 軟體王]


[[Category:Software]]
[[Category:Software]]

Revision as of 12:00, 3 February 2012

case: try to find mp4 file

keyword filter at URL Snooper v.2.30.01

  • full request URI: ex: http://www.example.com/folder/file.mp4 ok
  • partial URI path: ex: /folder/file.mp4, file.mp4, mp4 ok
  • wildcat: ex: *.mp4 not work Icon_exclaim.gif

Filter at Wireshark 1.6.5

  • full request URI: ex: ip.dst == 127.0.0.1 and http.request.uri matches "upload2/letsgo.mp4" (where the domain www.example.com was mapping to IP: 127.0.0.1) ok
  • partial URI path: ex: http.request.uri matches "/folder/file.mp4", http.request.uri matches "file.mp4", http.request.uri matches "mp4" ok
  • wildcat: ex: http.request.uri matches "*.mp4" not work Icon_exclaim.gif

software list

URL Snooper v.2.30.01

  • live sniffer: ok
  • save as file: n/a
  • time stamp: n/a

Wireshark 1.6.5

  • live sniffer: ok
  • save as file: ok
  • time stamp: ok


reference

resources