Categories

Port Scanner

Scan open ports on a target host or IP address

Lower timeout = faster scan, but may miss slow ports. Recommended: 2000ms for public IPs, 1000ms for LAN

Key Facts

Category
Network
Input Types
text, select, number
Output Type
text
Sample Coverage
4
API Ready
Yes

Overview

The Port Scanner is a network utility designed to identify open TCP ports on a specific host or IP address, helping you verify service availability and assess network exposure.

When to Use

  • Verifying that a specific service like a web server or database is reachable on a remote host.
  • Troubleshooting connectivity issues by checking if required ports are blocked by a firewall.
  • Performing a quick security audit to identify potentially exposed services on your network.

How It Works

  • Enter the target hostname or IP address in the host field.
  • Select a predefined port range or specific service group from the dropdown menu.
  • Adjust the timeout setting if you are scanning over a slow network or need faster results.
  • Click scan to initiate a TCP connection attempt and view the status of each port.

Use Cases

System administrators verifying that a new web server is correctly configured to accept traffic on ports 80 and 443.
Developers checking if a local database instance is accessible to their application.
Security enthusiasts identifying which services are exposed on a public-facing server.

Examples

1. Verifying Web Server Accessibility

Web Developer
Background
A developer just deployed a new website and needs to ensure the server is listening on standard HTTP/HTTPS ports.
Problem
Unsure if the firewall is blocking web traffic to the new server.
How to Use
Input the server IP, select 'HTTP/HTTPS (80, 443)' from the ports menu, and run the scan.
Outcome
The tool confirms ports 80 and 443 are open, verifying that the web server is reachable.

2. Database Connectivity Check

Backend Engineer
Background
An application is failing to connect to a remote MySQL database.
Problem
Need to determine if the database port 3306 is open or if there is a network-level block.
How to Use
Input the database host, select 'Database Ports' from the dropdown, and click scan.
Outcome
The scan shows port 3306 is closed, indicating a firewall or configuration issue on the database server.

Try with Samples

network

FAQ

What does an 'open' port mean?

An open port indicates that the target host is actively accepting connections on that specific port, meaning a service is likely running and listening.

Why would a port show as closed?

A closed port means the host is reachable, but no application is currently listening for connections on that port.

How does the timeout setting affect the scan?

The timeout determines how long the scanner waits for a response. A lower value speeds up the scan but may cause you to miss ports on high-latency networks.

Can this tool scan all 65,535 ports?

This tool is optimized for common and well-known port ranges to ensure quick and reliable results for standard troubleshooting tasks.

Is this tool safe to use on any IP?

You should only scan hosts or networks that you own or have explicit permission to test, as port scanning can be interpreted as unauthorized reconnaissance.

API Documentation

Request Endpoint

POST /en/api/tools/port-scanner

Request Parameters

Parameter Name Type Required Description
host text Yes -
ports select Yes -
timeout number No Lower timeout = faster scan, but may miss slow ports. Recommended: 2000ms for public IPs, 1000ms for LAN

Response Format

{
  "result": "Processed text content",
  "error": "Error message (optional)",
  "message": "Notification message (optional)",
  "metadata": {
    "key": "value"
  }
}
Text: Text

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-port-scanner": {
      "name": "port-scanner",
      "description": "Scan open ports on a target host or IP address",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=port-scanner",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]