tcpdump command: minor updates

- signed-off-by: trimstray <trimstray@gmail.com>
pull/62/head
trimstray 2019-01-16 18:19:31 +01:00
parent 982e4c8314
commit 9a559d3904
1 changed files with 6 additions and 6 deletions

View File

@ -1915,6 +1915,12 @@ tcpdump -ne -i eth0 -Q in host 192.168.252.1 and port 443 -c 5 -w tcpdump.pcap
tcpdump -nei eth0 icmp
```
###### Check protocol used (TCP or UDP) for service
```bash
tcpdump -nei eth0 tcp port 22 -vv -X | egrep "TCP|UDP"
```
###### Display ASCII text (to parse the output using grep or other)
```bash
@ -2071,12 +2077,6 @@ nmap -sP 192.168.0.0/24
nmap -F --open 192.168.0.0/24
```
###### Check protocol used (TCP or UDP) for service
```bash
tcpdump -nei eth0 tcp port 22 -vv -X | egrep "TCP|UDP"
```
###### Full TCP port scan using with service version detection
```bash