Go Program that runs as a Probe Service for my Services
- Go 79.6%
- Batchfile 20.4%
| go.mod | ||
| go.sum | ||
| installer.bat | ||
| main.go | ||
| README.md | ||
| updater.bat | ||
winpr
Go Program that runs as a Probe Service for my Services
Info Page: https://winpr.t0stbrot.net
Automatic Installer: Download installer.bat from Releases
Building it yourself
- Install Go: https://go.dev/dl/
- Download Source of latest release and unzip it
- Open a CMD Window inside the folder
- Run
go build . - Copy the
winpr.exefile to C:\Windows\System32\ - Open a CMD Windows as Administrator
- Run:
netsh advfirewall firewall add rule name=AllowICMP protocol=ICMPv4 dir=in action=allow, otherwise ICMP will not work and the tool will be uselessnetsh advfirewall firewall add rule name=AllowICMPv6 protocol=ICMPv6 dir=in action=allow, otherwise ICMPv6 will not work and the tool will be uselesssc create WinPR start=auto binpath=C:\Windows\System32\winpr.exe, creates Service that autostartssc start WinPR, starts the Service
Done, it is installed now
Building with Garble (Less-Likely Antivirus Detection)
- Install Git
- Install
garbleusinggo install mvdan.cc/garble@latestin a CMD Windows - Instead of using
go build .usegarble build - Rest of the Process if the same as Building normally