mirror of
https://github.com/XTLS/RealiTLScanner.git
synced 2026-09-22 22:28:08 +03:00
135 lines
2.5 KiB
Go
135 lines
2.5 KiB
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"errors"
|
|
"io"
|
|
"log/slog"
|
|
"net"
|
|
"net/netip"
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
_ = iota
|
|
HostTypeIP
|
|
HostTypeCIDR
|
|
HostTypeDomain
|
|
)
|
|
|
|
type HostType int
|
|
|
|
type Host struct {
|
|
IP net.IP
|
|
Origin string
|
|
Type HostType
|
|
Infinity bool
|
|
}
|
|
|
|
func Iterate(reader io.Reader, infinity bool) <-chan Host {
|
|
scanner := bufio.NewScanner(reader)
|
|
hostChan := make(chan Host)
|
|
go func() {
|
|
defer close(hostChan)
|
|
for scanner.Scan() {
|
|
line := strings.TrimSpace(scanner.Text())
|
|
if line == "" {
|
|
continue
|
|
}
|
|
ip := net.ParseIP(line)
|
|
if ip != nil && (ip.To4() != nil || enableIPv6) {
|
|
// ip address
|
|
hostChan <- Host{
|
|
IP: ip,
|
|
Origin: line,
|
|
Type: HostTypeIP,
|
|
Infinity: infinity,
|
|
}
|
|
continue
|
|
}
|
|
_, _, err := net.ParseCIDR(line)
|
|
if err == nil {
|
|
// ip cidr
|
|
p, err := netip.ParsePrefix(line)
|
|
if err != nil {
|
|
slog.Warn("Invalid cidr", "cidr", line, "err", err)
|
|
}
|
|
if !p.Addr().Is4() && !enableIPv6 {
|
|
continue
|
|
}
|
|
p = p.Masked()
|
|
addr := p.Addr()
|
|
for {
|
|
if !p.Contains(addr) {
|
|
break
|
|
}
|
|
ip = net.ParseIP(addr.String())
|
|
if ip != nil {
|
|
hostChan <- Host{
|
|
IP: ip,
|
|
Origin: line,
|
|
Type: HostTypeCIDR,
|
|
Infinity: false,
|
|
}
|
|
}
|
|
addr = addr.Next()
|
|
}
|
|
continue
|
|
}
|
|
if ValidateDomainName(line) {
|
|
// domain
|
|
hostChan <- Host{
|
|
IP: nil,
|
|
Origin: line,
|
|
Type: HostTypeDomain,
|
|
Infinity: infinity,
|
|
}
|
|
continue
|
|
}
|
|
slog.Warn("Not a valid IP, IP CIDR or domain", "line", line)
|
|
}
|
|
if err := scanner.Err(); err != nil && !errors.Is(err, io.EOF) {
|
|
slog.Error("Read file error", "err", err)
|
|
}
|
|
}()
|
|
return hostChan
|
|
}
|
|
func ValidateDomainName(domain string) bool {
|
|
r := regexp.MustCompile(`(?m)^[A-Za-z0-9\-.]+$`)
|
|
return r.MatchString(domain)
|
|
}
|
|
func ExistOnlyOne(arr []string) bool {
|
|
exist := false
|
|
for _, item := range arr {
|
|
if item != "" {
|
|
if exist {
|
|
return false
|
|
} else {
|
|
exist = true
|
|
}
|
|
}
|
|
}
|
|
return exist
|
|
}
|
|
func RemoveDuplicateStr(strSlice []string) []string {
|
|
allKeys := make(map[string]bool)
|
|
var list []string
|
|
for _, item := range strSlice {
|
|
if _, value := allKeys[item]; !value {
|
|
allKeys[item] = true
|
|
list = append(list, item)
|
|
}
|
|
}
|
|
return list
|
|
}
|
|
func OutWriter(writer io.Writer) chan<- string {
|
|
ch := make(chan string)
|
|
go func() {
|
|
for s := range ch {
|
|
_, _ = io.WriteString(writer, s)
|
|
}
|
|
}()
|
|
return ch
|
|
}
|