检查端口功能

发布于 2024-10-16 09:28:26 字数 118 浏览 2 评论 0原文

如何检查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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不离久伴 2024-10-23 09:28:26

除非您打开到端口的连接并尝试每种可能的服务器协议,否则您将无法检查可以通过给定端口访问哪些服务。

一个例子:端口 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 :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文