GoMapper is a fast, cross-platform port scanner written in Go for discovering open services on remote hosts.
GoMapper is a fast, cross-platform port scanner written in Go for discovering open services on remote hosts.
GoMapper is primarily used for network security assessments, allowing users to identify open ports and services on remote systems. It is suitable for security professionals and network administrators who need to quickly assess the security posture of their networks.
While installing via 'go install' is quick and easy, it might encounter issues related to dependencies or updates in the future. Consider downloading the pre-built executables if you face any update issues.
Install with Go: go install github.com/3rr0r-505/GoMapper@latest
To install a specific version: go install github.com/3rr0r-505/GoMapper@<release tag>
Download pre-built executables from the releases page for your platform
GoMapper --help
Displays help information and command options.
GoMapper --host 192.168.1.1 --ports 80,443
Scans the specified host for ports 80 and 443.
GoMapper --host example.com --ports 20-25
Scans the specified host for ports in the range 20 to 25.
GoMapper --host example.com --ports * --output 'scan.txt'
Scans all ports on the specified host and saves the output to 'scan.txt'.