gomap icon indicating copy to clipboard operation
gomap copied to clipboard

A fully self-contained Nmap like parallel port scanning module in pure Golang that supports SYN-ACK (Silent Scans)

Results 7 gomap issues
Sort by recently updated
recently updated
newest added

is it possible to support proxy dialer instead? for HTTP and SOCKS5

enhancement

Just a cursory look at the implementation of the code, I reckon the UDP port scan would not work just because of how UDP protocol works. If the the code...

enhancement

In my local copy I've made modifications so that the portResult distinguishes between these three cases: Connect OK - LISTEN process on the other end made a connection Timeout -...

enhancement

I've created a local version that modifies `func (results *IPScanResult) String() string` so that it sorts the result table by port number. I find this handy for scanning a large...

Additionally, for my solution to #11 I expanded the "slow" scan (i.e. fastscan==false) option so it scans all 65536 ports. This does take longer (6.5 minutes in my case) but...

Problem: since main scanning functions use goroutines there is no way to stop them externally if used as library. Solution: add new function which accept content as first parameters. In...