flycat

tcpdump

Jun 30th, 2016
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. # View HTTP hosts
  2. tcpdump -i bond0 dst 10.24.0.19 and port 80 -vvvs 1024 -l -A -vvv|grep "^Host"
  3.  
  4. # View DNS requiests
  5. tcpdump -i bge0 dst port 53 and src not 10.24.2.230 |awk '{ if($9~"sputniknews.com") print $0}'
Add Comment
Please, Sign In to add comment