chux0r / netbang

Scrappy scanner written in Go. Exploring the relevance of "scanning" in the new realm, what redteams need, and what methods can get us what we need quickly and, if at all possible, silently.
https://github.com/chux0r/netbang
GNU General Public License v2.0
2 stars 1 forks source link

MVP feature :: DNS/hostname resolution #8

Closed chux0r closed 1 year ago

chux0r commented 1 year ago

Build and test func/method to recognize and resolve hostnames, then return the address(es) (ipv4 for MVP)

chux0r commented 1 year ago

func customResolver() built and tested GOOD. reg. name resolution with default resolver works. hostname/IP validation works. Custom resolver works. TODO: Need to build #6 before proceeding (to compartment features; enable user to access each via CLI switches. #6 is now officially blocking :)

chux0r commented 1 year ago

6 done. Plumb up --resolver to customResolver() and this will be done --ctg

chux0r commented 1 year ago

--resolver all plumbed up to customResolver(). tested and good. see fffbc51