2025-05-21 14:02:36 -05:00
2025-05-21 13:53:16 -05:00
2025-05-21 13:00:48 -05:00
2025-05-21 13:00:48 -05:00
2025-05-21 13:00:48 -05:00
2025-05-20 22:17:37 -05:00
2025-05-21 14:02:36 -05:00

hostname-service

A simple program that integrates with Windows Services to retrieve the hostname given an IP address.

Prerequisites

Python

  • At least python3.10 or higher (may work on lower versions but untested)
  • python and pip are in your environmental variables (python --version)
  • pip install pywin32 python-dotenv

Go

  • At least go 1.18 or higher
  • go is in your environmental variables (go version)
  • go install github.com/kardianos/service

Installation

Python

  1. Download hostname-service.py and env.txt files
  2. Copy env.txt to .env
  3. Edit .env file to match your requirements
  4. Open terminal as admin
  5. python hostname_service.py run

Go

  1. Clone the repository git clone https://git.dou.bet/iamdoubz/hostname-service
  2. Enter the directory cd hostname-service
  3. Open terminal
  4. go run hostname_service.go run

Building

Go

  1. go build -o hostname_service.exe hostname_service.go
  2. Test it ./hostname_service.exe

Program Run Options

Python

Use python hostname_service.py and one of the following option names.

Option Name Description
run Start the server in standalone mode
install Create a Windows Service entry
start Start the Windows service
stop Stop the Windows service
restart Stop then Start the Windows service
remove Removes the Windows Service entry
debug Runs the Windows service in debug mode

Go

Use go run hostname_service.go and one of the following option names.

Option Name Description
run Start the server in standalone mode
install Create a Windows Service entry
start Start the Windows service
stop Stop the Windows service
restart Stop then Start the Windows service
uninstall Removes the Windows Service entry

How to use

  1. Make a post request to http://127.0.0.1:8999 with a body payload of {"ip":"8.8.8.8"}
  2. Should return {"hostname": "dns.google"}
S
Description
No description provided
Readme MIT
50 KiB
2025-05-21 14:15:24 -05:00
Languages
Python 62%
Go 38%