Home > Archives > nc

nc

Publish:

nc and ncat

安装

1
yum -y install nmap-ncat

检查TCP的80端口的连接

1
nc -vz anycase.cn 80

创建一个监听端口

1
2
3
4
5
6
在A电脑操作:
nc -vl 1234
netstat -tlunp

在B电脑操作:
nc -vz 172.18.10.110 1234

作为聊天工具

1
2
3
4
5
在A电脑操作:
nc -l 8080

在B电脑操作:
nc 172.18.10.110 8080

检查SSH软件版本

1
echo "EXIT" | nc 172.18.10.102 22

使用ncat创建后门

1
2
3
4
5
6
7
在服务端:
nc -l 5566 -e /bin/bash

客户端:
nc 172.18.10.110 5566

可以通过客户端发送linux 命令

使用ncat运行带有静态页面的Web服务器

1
2
3
4
5
while true; do nc -l -p 88 < /root/a.html ; done

while true ; do  echo -e "HTTP/1.1 200 OK\n\n $(date)" | nc -l -p 1500  ; done

telnet 172.18.10.110 88

声明: 本文采用 BY-NC-SA 授权。转载请注明转自: Ding Bao Guo