{"id":20208300,"url":"https://github.com/cubiclesoft/getiptables-windows","last_synced_at":"2026-05-11T00:47:41.977Z","repository":{"id":145129019,"uuid":"462334306","full_name":"cubiclesoft/getiptables-windows","owner":"cubiclesoft","description":"Dumps information about Windows TCP/IP and UDP/IP tables (both IPv4 and IPv6) as JSON.  MIT or LGPL.","archived":false,"fork":false,"pushed_at":"2022-02-22T14:31:36.000Z","size":122,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-13T21:10:30.799Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cubiclesoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2022-02-22T14:28:28.000Z","updated_at":"2023-11-08T12:24:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"09dbe2d6-a969-4be7-b725-6a30f6b683d3","html_url":"https://github.com/cubiclesoft/getiptables-windows","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/cubiclesoft%2Fgetiptables-windows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cubiclesoft%2Fgetiptables-windows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cubiclesoft%2Fgetiptables-windows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cubiclesoft%2Fgetiptables-windows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cubiclesoft","download_url":"https://codeload.github.com/cubiclesoft/getiptables-windows/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241644553,"owners_count":19996179,"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":[],"created_at":"2024-11-14T05:34:59.363Z","updated_at":"2025-11-30T07:04:42.164Z","avatar_url":"https://github.com/cubiclesoft.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"Get IP Tables Command-Line Utility\n==================================\n\nDumps information about Windows TCP/IP and UDP/IP tables (both IPv4 and IPv6) as JSON.  Released under a MIT or LGPL license.\n\n[![Donate](https://cubiclesoft.com/res/donate-shield.png)](https://cubiclesoft.com/donate/) [![Discord](https://img.shields.io/discord/777282089980526602?label=chat\u0026logo=discord)](https://cubiclesoft.com/product-support/github/)\n\nFeatures\n--------\n\n* Command-line action!\n* Dumps the results of the GetTcpTable2(), GetTcp6Table2(), GetUdpTable(), and GetUdp6Table() Windows APIs as JSON.  Easily consumed by most programming and scripting languages.\n* Pre-built binaries using Visual Studio (statically linked C++ runtime, minimal file size of ~117K, direct Win32 API calls).\n* Windows subsystem variant.\n* Unicode support.\n* Has a liberal open source license.  MIT or LGPL, your choice.\n* Sits on GitHub for all of that pull request and issue tracker goodness to easily submit changes and ideas respectively.\n\nUseful Information\n------------------\n\nRunning the command with the `/?` option will display the options:\n\n```\n(C) 2021 CubicleSoft.  All Rights Reserved.\n\nSyntax:  getiptables.exe [options]\n\nOptions:\n        /v\n        Verbose mode.\n\n        /tcponly\n        Only output TCP table information.\n        Incompatible with 'udponly'.\n\n        /udponly\n        Only output UDP table information.\n        Incompatible with 'tcponly'.\n\n        /state=State\n        Only output table information for the specified state.\n        Map only be one of:\n                CLOSED\n                LISTEN\n                SYN-SENT\n                SYN-RECEIVED\n                ESTABLISHED\n                FIN-WAIT-1\n                FIN-WAIT-2\n                CLOSE-WAIT\n                CLOSING\n                LAST-ACK\n                TIME-WAIT\n                DELETE-TCB\n\n        /localip=IPAddr\n        Only output table information for the specified local IP address.\n\n        /localport=PortNum\n        Only output table information for the specified local port number.\n\n        /remoteip=IPAddr\n        Only output table information for the specified remote IP address.\n\n        /remoteport=PortNum\n        Only output table information for the specified remote port number.\n\n        /sort\n        Sort the output.\n\n        /file=OutputFile\n        File to write the JSON output to instead of stdout.\n```\n\nExample usage:\n\n```\nC:\\\u003egetiptables /tcponly /state=ESTABLISHED /localip=127.0.0.1\n{\"success\": true, \"tcp4\": {\"success\": true, \"info\": [{\"state\": \"ESTABLISHED\", \"local_ip\": \"127.0.0.1\", \"local_port\": 49767, \"remote_ip\": \"127.0.0.1\", \"remote_port\": 49768, \"pid\": 704, \"offload_state\": \"InHost\"},\n\n{\"state\": \"ESTABLISHED\", \"local_ip\": \"127.0.0.1\", \"local_port\": 49768, \"remote_ip\": \"127.0.0.1\", \"remote_port\": 49767, \"pid\": 704, \"offload_state\": \"InHost\"}]},\n\n\"tcp6\": {\"success\": true, \"info\": []}}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcubiclesoft%2Fgetiptables-windows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcubiclesoft%2Fgetiptables-windows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcubiclesoft%2Fgetiptables-windows/lists"}