{"id":20281787,"url":"https://github.com/geniuszly/GenGoPortScanner","last_synced_at":"2025-05-07T18:30:58.606Z","repository":{"id":252805696,"uuid":"841515651","full_name":"geniuszly/GenGoPortScanner","owner":"geniuszly","description":" is a fast, multi-threaded port scanner developed in Go. It's built for efficiently scanning ports on a specified target, delivering comprehensive details about open ports with speed and precision.","archived":false,"fork":false,"pushed_at":"2024-08-12T15:04:42.000Z","size":13,"stargazers_count":11,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T18:50:34.946Z","etag":null,"topics":["cybersecurity","gengoportscanner","go-portscan","go-portscanner","golang","network-monitoring","network-security","network-tools","penetration-testing","port","port-scanner","port-scanner-in-go","portscanner","portscanner-go","vulnerability-assessment","vulnerability-scanning"],"latest_commit_sha":null,"homepage":"","language":"Go","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/geniuszly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-08-12T15:01:38.000Z","updated_at":"2025-01-12T18:35:00.000Z","dependencies_parsed_at":"2024-08-12T17:39:05.076Z","dependency_job_id":null,"html_url":"https://github.com/geniuszly/GenGoPortScanner","commit_stats":null,"previous_names":["geniuszlyy/gengoportscanner","geniuszly/gengoportscanner"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geniuszly%2FGenGoPortScanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geniuszly%2FGenGoPortScanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geniuszly%2FGenGoPortScanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/geniuszly%2FGenGoPortScanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/geniuszly","download_url":"https://codeload.github.com/geniuszly/GenGoPortScanner/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252933953,"owners_count":21827608,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cybersecurity","gengoportscanner","go-portscan","go-portscanner","golang","network-monitoring","network-security","network-tools","penetration-testing","port","port-scanner","port-scanner-in-go","portscanner","portscanner-go","vulnerability-assessment","vulnerability-scanning"],"created_at":"2024-11-14T14:06:56.603Z","updated_at":"2025-05-07T18:30:58.237Z","avatar_url":"https://github.com/geniuszly.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EN\n**GenGoPortScanner** is a high-performance, multi-threaded port scanner written in Go. It is designed to scan ports on a given target quickly and efficiently, providing detailed information about open ports.\n\n## Features\n\n- High-performance multi-threaded scanning\n- Supports CIDR notation and files with multiple targets\n- Outputs results in various formats (JSON, CSV, Qubo)\n- Customizable timeout and retry settings\n\n## Installation\n\n1. **Clone the repository**:\n    ```sh\n    git clone https://github.com/geniuszlyy/GenGoPortScanner.git\n    cd GenGoPortScanner\n    ```\n\n2. **Initialize Go modules**:\n    ```sh\n    go mod tidy\n    ```\n\n## Usage\n```sh\ngo run .\\cmd\\gengoscanner\\main.go -t \u003ctarget\u003e -p \u003cports\u003e -c \u003cthreads\u003e --timeout \u003ctimeout\u003e -o \u003coutput\u003e -f \u003cformat\u003e\n```\n\n![image](https://github.com/user-attachments/assets/028a2325-094c-44ad-96f7-6d6ba74f2def)\n\n\n## Parameters\n- `-t, --target`: Target CIDR or file with targets (required)\n- `-p, --ports`: Ports or port ranges to scan (required)\n- `-c, --threads`: Number of concurrent threads (required)\n- `--timeout`: Timeout in milliseconds (required)\n- `-r, --retries`: Number of ping retries (default: 1)\n- `-o, --output`: Output file (default: target.GenGoPortScanner.txt)\n- `-f, --format`: Output format (qubo/json/csv) (default: qubo)\n\n## Examples\n1. **Scan a single IP with default ports**:\n    ```bash\n    go run .\\cmd\\gengoscanner\\main.go -t 192.168.1.1 -p 80,443 -c 10 --timeout 500 -o result.txt -f json\n    ```\n2. **Scan a range of IPs with all ports**:\n    ```bash\n    go run .\\cmd\\gengoscanner\\main.go -t 192.168.1.0/24 -p 1-65535 -c 100 --timeout 500 -o result.txt -f json\n    ```\n3. **Scan targets from a file**:\n    ```bash\n    go run .\\cmd\\gengoscanner\\main.go -t targets.txt -p 80,443 -c 50 --timeout 300 -o output.csv -f csv\n    ```\n## Output Formats\n### JSON\n```json\n{\n    \"target\": \"192.168.1.1\",\n    \"version\": \"1.16.5\",\n    \"players\": \"5/100\",\n    \"description\": \"Minecraft server\"\n}\n```\n### CSV\n```csv\n\"192.168.1.1\",\"1.16.5\",\"5/100\",\"Minecraft server\"\n```\n### qubo\n```scss\n(192.168.1.1)(5/100)(1.16.5)(Minecraft server)\n```\n\n# RU\n**GenGoPortScanner** — это высокопроизводительный многопоточный сканер портов, написанный на Go. Он предназначен для быстрого и эффективного сканирования портов на заданной цели, предоставляя подробную информацию об открытых портах.\n\n## Особенности\n- Высокопроизводительное многопоточное сканирование\n- Поддержка CIDR нотации и файлов с несколькими целями\n- Вывод результатов в различных форматах (JSON, CSV, Qubo)\n- Настраиваемые параметры тайм-аута и количества попыток\n\n## Установка\n1. **Клонируйте репозиторий**:\n    ```sh\n    git clone https://github.com/geniuszlyy/GenGoPortScanner.git\n    cd GenGoPortScanner\n    ```\n\n2. **Инициализируйте модули Go**:\n    ```sh\n    go mod tidy\n    ```\n\n## Использование\n```sh\ngo run .\\cmd\\gengoscanner\\main.go -t \u003cцель\u003e -p \u003cпорты\u003e -c \u003cпотоки\u003e --timeout \u003cтайм-аут\u003e -o \u003cфайл вывода\u003e -f \u003cформат\u003e\n```\n\n![image](https://github.com/user-attachments/assets/5ab6d4a9-9de4-4ff7-ad32-8045b5117b94)\n\n\n## Параметры\n- `-t, --target`: Целевой CIDR или файл с целями (обязательно)\n- `-p, --ports`: Порты или диапазоны портов для сканирования (обязательно)\n- `-c, --threads`: Количество потоков (обязательно)\n- `--timeout`: Таймаут в миллисекундах (обязательно)\n- `-r, --retries`: Количество попыток пинга (по умолчанию: 1)\n- `-o, --output`: Файл вывода (по умолчанию: target.GenGoPortScanner.txt)\n- `-f, --format`: Формат вывода (qubo/json/csv) (по умолчанию: qubo)\n\n## Примеры\n1. **Сканирование одного IP с портами по умолчанию**:\n    ```bash\n    go run .\\cmd\\gengoscanner\\main.go -t 192.168.1.1 -p 80,443 -c 10 --timeout 500 -o result.txt -f json\n    ```\n2. **Сканирование диапазона IP с всеми портами**:\n    ```bash\n    go run .\\cmd\\gengoscanner\\main.go -t 192.168.1.0/24 -p 1-65535 -c 100 --timeout 500 -o result.txt -f json\n    ```\n3. **Сканирование целей из файла**:\n    ```bash\n    go run .\\cmd\\gengoscanner\\main.go -t targets.txt -p 80,443 -c 50 --timeout 300 -o output.csv -f csv\n    ```\n\n## Форматы вывода\n### JSON\n```json\n{\n    \"target\": \"192.168.1.1\",\n    \"version\": \"1.16.5\",\n    \"players\": \"5/100\",\n    \"description\": \"Minecraft server\"\n}\n```\n### CSV\n```csv\n\"192.168.1.1\",\"1.16.5\",\"5/100\",\"Minecraft server\"\n```\n### qubo\n```scss\n(192.168.1.1)(5/100)(1.16.5)(Minecraft server)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeniuszly%2FGenGoPortScanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeniuszly%2FGenGoPortScanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeniuszly%2FGenGoPortScanner/lists"}