-h 支持域名

This commit is contained in:
影舞者 2022-04-28 17:02:48 +08:00
parent 584771114d
commit 2d496cafc9
2 changed files with 6 additions and 0 deletions

View File

@ -119,6 +119,9 @@ func ParseInput(Info *HostInfo) {
os.Exit(0)
}
if BruteThread <= 0 {
BruteThread = 1
}
if TmpOutputfile != "" {
if !strings.Contains(Outputfile, "/") && !strings.Contains(Outputfile, `\`) {
Outputfile = getpath() + TmpOutputfile

View File

@ -96,6 +96,9 @@ func parseIP(ip string) []string {
// return nil
// }
return []string{ip}
//192.168.1.1-192.168.1.100
case strings.Contains(ip, "-"):
return parseIP1(ip)
//处理单个ip
default:
testIP := net.ParseIP(ip)