gomap
gomap copied to clipboard
A fully self-contained Nmap like parallel port scanning module in pure Golang that supports SYN-ACK (Silent Scans)
is it possible to support proxy dialer instead? for HTTP and SOCKS5
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...
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 -...
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...
Brother, can this support multithreading