2020-05-08 18:38:55 +00:00
|
|
|
# Ncat
|
|
|
|
|
|
|
|
Read [Ncat](https://nmap.org/ncat/).
|
|
|
|
|
|
|
|
It is included in [nmap](https://www.archlinux.org/packages/extra/x86_64/nmap/).
|
|
|
|
|
2020-05-08 18:42:31 +00:00
|
|
|
Check connectivity to `host` with `port`:
|
2020-05-08 18:38:55 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
ncat -zv host post
|
|
|
|
```
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
ncat -zv google.com 80
|
|
|
|
```
|