Reputation: 53
What are the following open ports for on Azure Service Bus?
I can find documentation on other port such as 9350-9354, 5671, 5672, etc., but not ones on the list above. I need to document these for a penetration test on a project.
Regards, Morten
UPDATE: Below is a screenshot of the NMap scan of a Service Bus endpoint
Upvotes: 3
Views: 14302
Reputation: 26057
Azure Service Bus is using two default ports: 443 (HTTPS) for management operations and fail-over if TCP port 5671 is not available. TCP port is used by default for transport operations. Management operations are HTTP based. Additional TCP ports are 9350 to 9354. See documentation here and here.
Upvotes: 8