{"id":13582358,"url":"https://github.com/R4yGM/netscanner","last_synced_at":"2025-04-06T14:30:50.267Z","repository":{"id":57516604,"uuid":"244432014","full_name":"R4yGM/netscanner","owner":"R4yGM","description":"netscanner - TCP/UDP scanner to find open or closed ports","archived":false,"fork":false,"pushed_at":"2020-03-23T19:54:15.000Z","size":5577,"stargazers_count":205,"open_issues_count":1,"forks_count":12,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-11-05T22:40:56.996Z","etag":null,"topics":["golang","network","port","portscanner","scanner","tcp"],"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/R4yGM.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}},"created_at":"2020-03-02T17:26:55.000Z","updated_at":"2024-08-12T19:58:18.000Z","dependencies_parsed_at":"2022-09-10T09:02:02.893Z","dependency_job_id":null,"html_url":"https://github.com/R4yGM/netscanner","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R4yGM%2Fnetscanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R4yGM%2Fnetscanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R4yGM%2Fnetscanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/R4yGM%2Fnetscanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/R4yGM","download_url":"https://codeload.github.com/R4yGM/netscanner/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247495709,"owners_count":20948100,"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":["golang","network","port","portscanner","scanner","tcp"],"created_at":"2024-08-01T15:02:38.273Z","updated_at":"2025-04-06T14:30:49.985Z","avatar_url":"https://github.com/R4yGM.png","language":"Go","funding_links":[],"categories":["Misc","Go","Related Lists"],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/R4yGM/netscanner.svg?branch=master)](https://travis-ci.org/R4yGM/netscanner)\r\n# netscanner\r\nnetscanner - TCP/UDP scanner to find open or closed ports\r\n## installation \r\nyou have to run this command to install the program\r\n```shell\r\n$ go get github.com/R4yGM/netscanner\r\n```\r\n\r\n## Usage\r\n### Commands :\r\n```shell\r\nnetscanner 0.1 : TCP/UDP port scanner\r\n\r\nUsage: netscanner \u003ccommand\u003e\r\n\r\nCommands:\r\n\r\n   sp,scanport - scan a singular port: usage sp,scanport \u003cprotocol\u003e \u003chostname\u003e \u003cport\u003e (ex. scanport tcp 127.0.01 80)\r\n   in,initscan - scan the first 1023 ports: usage in,initscan \u003cprotocol\u003e \u003chostname\u003e \u003csavefilebool\u003e(ex. initscan udp 127.0.0.1 false)\r\n   cs,completescan - scan all the ports: usage cs,completescan \u003cprotocol\u003e \u003chostname\u003e \u003csavefilebool\u003e(ex. completescan tcp 127.0.0.1 true)\r\n   sft,scanfromto - scan the ports from a port given to another port given: usage sft,scanfromto \u003cprotocol\u003e \u003chostname\u003e \u003cstartport\u003e \u003cendport\u003e \u003csavefile\u003e(ex. sft tcp 127.0.0.1 80 443 true)\r\n   h,help - shows this text\r\n   v,version - show the current version of the program\r\n   info,information - shows some information about the program\r\n   msp,maskscanport - scan a port of all the IPs in Subnet: usage msp,maskscanport \u003cprotocol\u003e \u003chostname\u003e \u003cport\u003e \u003csavefilebool\u003e(ex. msp tcp 127.0.0.1/24 true)\r\n   \r\n``` \r\n### Parameters:\r\n\r\n```\r\n\u003cprotocol\u003e - protocol to use - can be tcp or udp\r\n\u003chostname\u003e - hostname of the target - ex. 127.0.0.1\r\n\u003cport\u003e - port to scan\r\n\u003csavefile\u003e - bool that saves the scan in a file - true / false\r\n\u003cstartport\u003e - port to start scanning\r\n\u003cendport\u003e - last port to scan\r\n\u003chostname\u003e(for mask scan) - must contain /24 or /32\r\n```\r\n### Example\r\n\r\n```\r\n$ netscanner sp tcp 127.0.0.1 80\r\n\r\n Port     status   service\r\n\r\n 80/tcp,  Closed,  http\r\n\r\nScan started at : 2020-03-07 12:16:08.4845743 +0100 CET m=+0.002086201\r\nAnd finished at : 2020-03-07 12:16:08.4854596 +0100 CET m=+0.002971501\r\n\r\n```\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FR4yGM%2Fnetscanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FR4yGM%2Fnetscanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FR4yGM%2Fnetscanner/lists"}