Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. icmp
  2.  
  3. icmp.type == 8 || icmp.type == 0
  4.  
  5. tcp port 80
  6.  
  7. tcp.port == 80
  8.  
  9. http
  10.  
  11. dst tcp port 80
  12.  
  13. tcp.dstport == 80 && http
  14.  
  15. :: Script to save a wireshark trace
  16. :: tshark -D to get interface id
  17. @echo off
  18. C:
  19. cd C:TempNetTracing
  20. set PATH=%PATH%;C:Program FilesWireshark
  21. echo Tracing host 127.1 or 172.1.1.1 or 10.0.0.1
  22.  
  23. tshark.exe -i 4 -a duration:900 -S -f "tcp port 80" -w trace.cap
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement