Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在做一个挑战(CTF 风格),我们得到的每一个都是一个 IP。
扫描该 IP 仅打开一个端口。
如果我使用 netcat 连接到该 IP 和端口,我会在 CMD 中进行一种“跳舞”,最后会显示一条消息,即“检查套接字 12345”。
我需要再次了解真正的套接字是什么,因为我无法尝试连接到该套接字。
是否可以从特定端口连接到套接字?或者我只能从一个开放端口建立连接,并且网络服务器会自动将我的连接重定向到一个套接字?
您可以使用 netcat nc 及其 -p 选项来设置源端口。
Netcat 手册页说:-p port 本地端口号(端口号可以是单独的或范围:lo-hi [inclusive])
尝试“nc -p 12345 dest_IP dest_port”