{"id":30873691,"url":"https://github.com/hatixntsoa/port.scanner","last_synced_at":"2026-01-21T10:36:57.404Z","repository":{"id":257790749,"uuid":"861325293","full_name":"hatixntsoa/port.scanner","owner":"hatixntsoa","description":"A Simple Port Scanner Tool made with Python","archived":false,"fork":false,"pushed_at":"2025-08-29T05:39:41.000Z","size":415,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-27T17:38:28.903Z","etag":null,"topics":["port-scanner","pypi","python"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/pyscan-tool","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hatixntsoa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-22T15:45:34.000Z","updated_at":"2025-08-29T05:39:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"32ab2c27-b8c3-475a-9d02-14216a5e4ac7","html_url":"https://github.com/hatixntsoa/port.scanner","commit_stats":null,"previous_names":["h471x/port_scanner","hatixntsoa/port.scanner"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/hatixntsoa/port.scanner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatixntsoa%2Fport.scanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatixntsoa%2Fport.scanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatixntsoa%2Fport.scanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatixntsoa%2Fport.scanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hatixntsoa","download_url":"https://codeload.github.com/hatixntsoa/port.scanner/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hatixntsoa%2Fport.scanner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28631937,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["port-scanner","pypi","python"],"created_at":"2025-09-07T23:49:01.433Z","updated_at":"2026-01-21T10:36:57.374Z","avatar_url":"https://github.com/hatixntsoa.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PyScan Tool\n\n\u003cp align=\"center\"\u003e\n \u003cimg height=\"150\" src=\"https://raw.githubusercontent.com/hatixntsoa/port.scanner/master/imgs/pyscan.png\"/\u003e\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n\u003cp\u003e\n\n``pyscan-tool`` is a Python-based port scanning utility that allows users to scan for open ports on a specified IP address. It provides options for scanning TCP and UDP ports, identifying services associated with each open port, and offering a command-line interface for ease of use.\n\n\u003c/p\u003e\n\n### Contents\n\n[Features](#features) |\n[Installation](#installation) |\n[Build from scratch](#option-2-build-from-source) |\n[Usage](#usage) |\n[Development](#development) |\n[Contributing](#contributing)\n\n\u003c/div\u003e\n\n## Features\n\n- **Command-Line Interface (CLI)**: The default interface for scanning ports directly from the terminal.\n- **Service Name Identification**: Automatically identifies and displays the service associated with each open port.\n- **TCP and UDP Scanning**: Options to scan for both TCP and UDP ports.\n- **Configurable Timeout**: Users can specify the timeout duration for connection attempts.\n\n## Installation\n\n### Option 1: Install from PyPI\n\nTo install `pyscan-tool` directly from PyPI:\n\n```bash\npip install pyscan-tool\n```\n\n### Option 2: Build from Source\n\nFor those who prefer to build it themselves:\n\n1. Clone the repository and navigate to the project directory:\n\n   ```bash\n   git clone https://github.com/hatixntsoa/port.scanner.git\n   cd port.scanner\n   ```\n\n2. Build the package:\n\n   ```bash\n   python setup.py sdist bdist_wheel\n   ```\n\n3. Install the package:\n\n   ```bash\n   pip install dist/*.whl\n   ```\n\n## Usage\n\nOnce the package is installed, you can use the `pyscan` command from the terminal. The script accepts the following command-line arguments:\n\n- **IP Address**:\n  - `-ip` or `--ip-address`: Specify the IP address to scan.\n  \n- **Port Range**:\n  - `-r` or `--range`: Specify the port range to scan (e.g., `80-443`).\n\n- **Protocol**:\n  - `-p` or `--protocol`: Specify the protocol to use (`tcp` or `udp`). Default is `tcp`.\n\n- **Timeout**:\n  - `-t` or `--timeout`: Specify the timeout duration in seconds. Default is `1.0`.\n\n### Example Usage\n\n1. **Basic Scan**:\n   ```bash\n   pyscan -ip \u003cip_address\u003e -r 80-443\n   ```\n\n2. **Specify Protocol and Timeout**:\n   ```bash\n   pyscan -ip \u003cip_address\u003e -r 1-100 -p udp -t 2\n   ```\n\n3. **Help Option**:\n   For help with command-line options, use:\n   ```bash\n   pyscan -h\n   ```\n\n## Development\n\nTo modify or extend the functionality, ensure you have the required dependencies installed. You can add new features to the CLI as needed.\n\n## Contributing\n\nFeel free to fork this repository, open issues, or submit pull requests with improvements or bug fixes. Your contributions help make the `PyScan Tool` better!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatixntsoa%2Fport.scanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhatixntsoa%2Fport.scanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhatixntsoa%2Fport.scanner/lists"}