检查端口功能
如何检查java中哪个函数的哪个端口? 示例:
端口 xx 用于 Web 服务器
端口 xx 用于 fpt 服务器
端口 xx 用于邮件服务器。 ...
谢谢
How can I check that which port for which function in java ?
Example:
Port xx is for webserver
Port xx is for fpt server
port xx is for mail server.
...
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您打开到端口的连接并尝试每种可能的服务器协议,否则您将无法检查可以通过给定端口访问哪些服务。
一个例子:端口 80 是 HTTPd,但服务器管理员可以将端口 80 映射到 smtpd,因此您必须连接到该端口并尝试 http、smtp、ssh,...
编辑
我会说它仅适用于某些协议,例如 HTTP 和 SMTP。如果服务器端已加密,您将无法分辨哪个服务正在应答。有很多可能的服务(检查第一条评论的链接)、加密服务和其他问题等待着您:)
Unless you're opening connections to the ports and trying every possible server protocol, you won't be able to check which service is accessible through a given port.
An example: Port 80 ist HTTPd, but the server admin could map port 80 to smtpd, so you have to connect to the port and try http, smtp, ssh, ....
Edit
I would say it's only feasible for some protocols like HTTP and SMTP. If the server side is encrypted, you can't tell which service is answering. There are lots of possible services (check the first comment's link), encrypted services, and other problems awaiting you :)