Compare commits

...

6 Commits

Author SHA1 Message Date
sergeevms
2c661d32b6 Update salesforce (#3295) 2026-02-20 18:21:58 +08:00
MkQtS
1be2a927c0 category-cryptocurrency: add blockchain.com (#3294) 2026-02-20 16:30:41 +08:00
EvanLiu2000
3490c96b46 Update category-porn (#3291) 2026-02-20 16:27:57 +08:00
allkeltysss
8ae86bbb4a yandex: add yastatic-net.ru (#3293) 2026-02-20 16:16:51 +08:00
MkQtS
db9c0fe466 main.go: improve codes (#3290) 2026-02-19 17:24:13 +08:00
Konstantin
109a50f048 Add more ru bank/financial domains (#3264) 2026-02-19 14:36:27 +08:00
9 changed files with 127 additions and 122 deletions

View File

@@ -5,6 +5,10 @@ alfabank.ru
gazprombank.ru gazprombank.ru
gpb.ru gpb.ru
# Mts dengi
dbo-dengi.online
mtsdengi.ru
# PSB Bank # PSB Bank
psbank.ru psbank.ru
@@ -28,5 +32,9 @@ cdn-tinkoff.ru
tbank-online.com tbank-online.com
tbank.ru tbank.ru
# Tochka bank
tochka-tech.com
tochka.com
# VTB Bank # VTB Bank
vtb.ru vtb.ru

View File

@@ -35,6 +35,7 @@ bitmex.com
bitquick.co bitquick.co
bitstamp.net bitstamp.net
bittrex.com bittrex.com
blockchain.com
blockfrost.io blockfrost.io
btcbox.co.jp btcbox.co.jp
cex.io cex.io

View File

@@ -137,6 +137,7 @@ porn
18hmanga.com 18hmanga.com
18insta.com 18insta.com
18j.tv 18j.tv
18jav.tv
18jms.com 18jms.com
18mh.co 18mh.co
18mh.me 18mh.me
@@ -2692,6 +2693,7 @@ jasmin.com
jav-angel.net jav-angel.net
jav-subtitles.com jav-subtitles.com
jav-vr.net jav-vr.net
jav.com.co
jav.dog jav.dog
jav.gallery jav.gallery
jav.guru jav.guru
@@ -2794,6 +2796,7 @@ javpub.me
javpush.com javpush.com
javqd.com javqd.com
javrank.com javrank.com
javrate.com
javrave.club javrave.club
javroot.com javroot.com
javscat.net javscat.net
@@ -2818,6 +2821,7 @@ javtrust.com
javtube.cc javtube.cc
javtube.com javtube.com
javtube.net javtube.net
javvideoporn.com
javvids.com javvids.com
javxspot.com javxspot.com
javxxx.me javxxx.me
@@ -3589,6 +3593,7 @@ ninpu.cyou
niuc2.com niuc2.com
niziero.info niziero.info
njav.tv njav.tv
njavtv.com
nlsexfilmpjes.com nlsexfilmpjes.com
nlt-media.com nlt-media.com
noc.syosetu.com noc.syosetu.com
@@ -5568,9 +5573,6 @@ xgtd3.com
xgtdr.buzz xgtdr.buzz
xh-porn.com xh-porn.com
xh.video xh.video
xhamster.com
xhamster.desi
xhamster2.com
xhot.pro xhot.pro
xhub.tv xhub.tv
xiangrikui-app.com xiangrikui-app.com

View File

@@ -24,10 +24,15 @@ spvb.ru # Saint-Petersburg Stock Exchange
# Financial marketplace # Financial marketplace
banki.ru banki.ru
finuslugi.ru finuslugi.ru
# Investment
sistema-capital.com
# Mir payment system # Mir payment system
mirpayonline.ru mirpayonline.ru
# National Payment Card System # National Payment Card System
nspk.ru nspk.ru
# Tipping service
netmonet.co
tips.tips
# Telecom operators # Telecom operators
beeline.ru beeline.ru

View File

@@ -4,3 +4,4 @@ missav.live
missav.uno missav.uno
missav.vip missav.vip
missav.ws missav.ws
missav123.com

View File

@@ -25,6 +25,7 @@ quotable.com
radian6.com radian6.com
relateiq.com relateiq.com
salesforce-setup.com salesforce-setup.com
salesforce-sites.com
salesforce.com salesforce.com
salesforce.org salesforce.org
salesforceiq.com salesforceiq.com

View File

@@ -3,6 +3,8 @@ xhamster.desi
xhamster.xxx xhamster.xxx
xhamster18.com xhamster18.com
xhamster18.desi xhamster18.desi
xhamster19.com
xhamster3.com
xhamsterlive.com xhamsterlive.com
xhcdn.com xhcdn.com

View File

@@ -55,6 +55,7 @@ yandexcom.net
yandexmetrica.com yandexmetrica.com
yandexwebcache.org yandexwebcache.org
yastat.net yastat.net
yastatic-net.ru
yastatic.net yastatic.net
# Watching movies, included in the Yandex subscription # Watching movies, included in the Yandex subscription

222
main.go
View File

@@ -22,18 +22,11 @@ var (
exportLists = flag.String("exportlists", "", "Lists to be flattened and exported in plaintext format, separated by ',' comma") exportLists = flag.String("exportlists", "", "Lists to be flattened and exported in plaintext format, separated by ',' comma")
) )
var (
plMap = make(map[string]*ParsedList)
finalMap = make(map[string][]*Entry)
cirIncMap = make(map[string]bool) // Used for circular inclusion detection
)
type Entry struct { type Entry struct {
Type string Type string
Value string Value string
Attrs []string Attrs []string
Plain string Plain string
Affs []string
} }
type Inclusion struct { type Inclusion struct {
@@ -48,6 +41,12 @@ type ParsedList struct {
Entries []*Entry Entries []*Entry
} }
type Processor struct {
plMap map[string]*ParsedList
finalMap map[string][]*Entry
cirIncMap map[string]bool
}
func makeProtoList(listName string, entries []*Entry) (*router.GeoSite, error) { func makeProtoList(listName string, entries []*Entry) (*router.GeoSite, error) {
site := &router.GeoSite{ site := &router.GeoSite{
CountryCode: listName, CountryCode: listName,
@@ -90,29 +89,27 @@ func writePlainList(listname string, entries []*Entry) error {
return w.Flush() return w.Flush()
} }
func parseEntry(line string) (Entry, error) { func parseEntry(line string) (*Entry, []string, error) {
var entry Entry entry := new(Entry)
parts := strings.Fields(line) parts := strings.Fields(line)
if len(parts) == 0 { if len(parts) == 0 {
return entry, fmt.Errorf("empty line") return entry, nil, fmt.Errorf("empty line")
} }
// Parse type and value // Parse type and value
v := parts[0] typ, val, isTypeSpecified := strings.Cut(parts[0], ":")
colonIndex := strings.Index(v, ":") typ = strings.ToLower(typ)
if colonIndex == -1 { if !isTypeSpecified { // Default RuleType
entry.Type = dlc.RuleTypeDomain // Default type if !validateDomainChars(typ) {
entry.Value = strings.ToLower(v) return entry, nil, fmt.Errorf("invalid domain: %q", typ)
if !validateDomainChars(entry.Value) {
return entry, fmt.Errorf("invalid domain: %q", entry.Value)
} }
entry.Type = dlc.RuleTypeDomain
entry.Value = typ
} else { } else {
typ := strings.ToLower(v[:colonIndex])
val := v[colonIndex+1:]
switch typ { switch typ {
case dlc.RuleTypeRegexp: case dlc.RuleTypeRegexp:
if _, err := regexp.Compile(val); err != nil { if _, err := regexp.Compile(val); err != nil {
return entry, fmt.Errorf("invalid regexp %q: %w", val, err) return entry, nil, fmt.Errorf("invalid regexp %q: %w", val, err)
} }
entry.Type = dlc.RuleTypeRegexp entry.Type = dlc.RuleTypeRegexp
entry.Value = val entry.Value = val
@@ -120,57 +117,60 @@ func parseEntry(line string) (Entry, error) {
entry.Type = dlc.RuleTypeInclude entry.Type = dlc.RuleTypeInclude
entry.Value = strings.ToUpper(val) entry.Value = strings.ToUpper(val)
if !validateSiteName(entry.Value) { if !validateSiteName(entry.Value) {
return entry, fmt.Errorf("invalid include list name: %q", entry.Value) return entry, nil, fmt.Errorf("invalid included list name: %q", entry.Value)
} }
case dlc.RuleTypeDomain, dlc.RuleTypeFullDomain, dlc.RuleTypeKeyword: case dlc.RuleTypeDomain, dlc.RuleTypeFullDomain, dlc.RuleTypeKeyword:
entry.Type = typ entry.Type = typ
entry.Value = strings.ToLower(val) entry.Value = strings.ToLower(val)
if !validateDomainChars(entry.Value) { if !validateDomainChars(entry.Value) {
return entry, fmt.Errorf("invalid domain: %q", entry.Value) return entry, nil, fmt.Errorf("invalid domain: %q", entry.Value)
} }
default: default:
return entry, fmt.Errorf("invalid type: %q", typ) return entry, nil, fmt.Errorf("invalid type: %q", typ)
} }
} }
// Parse attributes and affiliations // Parse attributes and affiliations
var affs []string
for _, part := range parts[1:] { for _, part := range parts[1:] {
if strings.HasPrefix(part, "@") { switch part[0] {
attr := strings.ToLower(part[1:]) // Trim attribute prefix `@` character case '@':
attr := strings.ToLower(part[1:])
if !validateAttrChars(attr) { if !validateAttrChars(attr) {
return entry, fmt.Errorf("invalid attribute: %q", attr) return entry, affs, fmt.Errorf("invalid attribute: %q", attr)
} }
entry.Attrs = append(entry.Attrs, attr) entry.Attrs = append(entry.Attrs, attr)
} else if strings.HasPrefix(part, "&") { case '&':
aff := strings.ToUpper(part[1:]) // Trim affiliation prefix `&` character aff := strings.ToUpper(part[1:])
if !validateSiteName(aff) { if !validateSiteName(aff) {
return entry, fmt.Errorf("invalid affiliation: %q", aff) return entry, affs, fmt.Errorf("invalid affiliation: %q", aff)
} }
entry.Affs = append(entry.Affs, aff) affs = append(affs, aff)
} else { default:
return entry, fmt.Errorf("invalid attribute/affiliation: %q", part) return entry, affs, fmt.Errorf("invalid attribute/affiliation: %q", part)
} }
} }
// Sort attributes
slices.Sort(entry.Attrs)
// Formated plain entry: type:domain.tld:@attr1,@attr2
var plain strings.Builder
plain.Grow(len(entry.Type) + len(entry.Value) + 10)
plain.WriteString(entry.Type)
plain.WriteByte(':')
plain.WriteString(entry.Value)
for i, attr := range entry.Attrs {
if i == 0 {
plain.WriteByte(':')
} else {
plain.WriteByte(',')
}
plain.WriteByte('@')
plain.WriteString(attr)
}
entry.Plain = plain.String()
return entry, nil if entry.Type != dlc.RuleTypeInclude {
slices.Sort(entry.Attrs) // Sort attributes
// Formated plain entry: type:domain.tld:@attr1,@attr2
var plain strings.Builder
plain.Grow(len(entry.Type) + len(entry.Value) + 10)
plain.WriteString(entry.Type)
plain.WriteByte(':')
plain.WriteString(entry.Value)
for i, attr := range entry.Attrs {
if i == 0 {
plain.WriteByte(':')
} else {
plain.WriteByte(',')
}
plain.WriteByte('@')
plain.WriteString(attr)
}
entry.Plain = plain.String()
}
return entry, affs, nil
} }
func validateDomainChars(domain string) bool { func validateDomainChars(domain string) bool {
@@ -206,62 +206,54 @@ func validateSiteName(name string) bool {
return true return true
} }
func loadData(path string) ([]*Entry, error) { func (p *Processor) getOrCreateParsedList(name string) *ParsedList {
pl, exist := p.plMap[name]
if !exist {
pl = &ParsedList{Name: name}
p.plMap[name] = pl
}
return pl
}
func (p *Processor) loadData(listName string, path string) error {
file, err := os.Open(path) file, err := os.Open(path)
if err != nil { if err != nil {
return nil, err return err
} }
defer file.Close() defer file.Close()
var entries []*Entry pl := p.getOrCreateParsedList(listName)
scanner := bufio.NewScanner(file) scanner := bufio.NewScanner(file)
lineIdx := 0 lineIdx := 0
for scanner.Scan() { for scanner.Scan() {
line := scanner.Text()
lineIdx++ lineIdx++
if idx := strings.Index(line, "#"); idx != -1 { line, _, _ := strings.Cut(scanner.Text(), "#") // Remove comments
line = line[:idx] // Remove comments
}
line = strings.TrimSpace(line) line = strings.TrimSpace(line)
if line == "" { if line == "" {
continue continue
} }
entry, err := parseEntry(line) entry, affs, err := parseEntry(line)
if err != nil { if err != nil {
return entries, fmt.Errorf("error in %q at line %d: %w", path, lineIdx, err) return fmt.Errorf("error in %q at line %d: %w", path, lineIdx, err)
} }
entries = append(entries, &entry)
}
return entries, nil
}
func parseList(refName string, refList []*Entry) error {
pl, _ := plMap[refName]
if pl == nil {
pl = &ParsedList{Name: refName}
plMap[refName] = pl
}
for _, entry := range refList {
if entry.Type == dlc.RuleTypeInclude { if entry.Type == dlc.RuleTypeInclude {
if len(entry.Affs) != 0 {
return fmt.Errorf("affiliation is not allowed for include:%q", entry.Value)
}
inc := &Inclusion{Source: entry.Value} inc := &Inclusion{Source: entry.Value}
for _, attr := range entry.Attrs { for _, attr := range entry.Attrs {
if strings.HasPrefix(attr, "-") { if attr[0] == '-' {
inc.BanAttrs = append(inc.BanAttrs, attr[1:]) // Trim attribute prefix `-` character inc.BanAttrs = append(inc.BanAttrs, attr[1:])
} else { } else {
inc.MustAttrs = append(inc.MustAttrs, attr) inc.MustAttrs = append(inc.MustAttrs, attr)
} }
} }
for _, aff := range affs {
apl := p.getOrCreateParsedList(aff)
apl.Inclusions = append(apl.Inclusions, inc)
}
pl.Inclusions = append(pl.Inclusions, inc) pl.Inclusions = append(pl.Inclusions, inc)
} else { } else {
for _, aff := range entry.Affs { for _, aff := range affs {
apl, _ := plMap[aff] apl := p.getOrCreateParsedList(aff)
if apl == nil {
apl = &ParsedList{Name: aff}
plMap[aff] = apl
}
apl.Entries = append(apl.Entries, entry) apl.Entries = append(apl.Entries, entry)
} }
pl.Entries = append(pl.Entries, entry) pl.Entries = append(pl.Entries, entry)
@@ -296,9 +288,7 @@ func polishList(roughMap map[string]*Entry) []*Entry {
domainsMap := make(map[string]bool) domainsMap := make(map[string]bool)
for _, entry := range roughMap { for _, entry := range roughMap {
switch entry.Type { // Bypass regexp, keyword and "full/domain with attr" switch entry.Type { // Bypass regexp, keyword and "full/domain with attr"
case dlc.RuleTypeRegexp: case dlc.RuleTypeRegexp, dlc.RuleTypeKeyword:
finalList = append(finalList, entry)
case dlc.RuleTypeKeyword:
finalList = append(finalList, entry) finalList = append(finalList, entry)
case dlc.RuleTypeDomain: case dlc.RuleTypeDomain:
domainsMap[entry.Value] = true domainsMap[entry.Value] = true
@@ -323,11 +313,11 @@ func polishList(roughMap map[string]*Entry) []*Entry {
pd = "." + pd // So that `domain:example.org` overrides `full:example.org` pd = "." + pd // So that `domain:example.org` overrides `full:example.org`
} }
for { for {
idx := strings.Index(pd, ".") var hasParent bool
if idx == -1 { _, pd, hasParent = strings.Cut(pd, ".") // Go for next parent
if !hasParent {
break break
} }
pd = pd[idx+1:] // Go for next parent
if domainsMap[pd] { if domainsMap[pd] {
isRedundant = true isRedundant = true
break break
@@ -344,36 +334,38 @@ func polishList(roughMap map[string]*Entry) []*Entry {
return finalList return finalList
} }
func resolveList(pl *ParsedList) error { func (p *Processor) resolveList(plname string) error {
if _, pldone := finalMap[pl.Name]; pldone { if _, pldone := p.finalMap[plname]; pldone {
return nil return nil
} }
pl, plexist := p.plMap[plname]
if cirIncMap[pl.Name] { if !plexist {
return fmt.Errorf("circular inclusion in: %q", pl.Name) return fmt.Errorf("list %q not found", plname)
} }
cirIncMap[pl.Name] = true if p.cirIncMap[plname] {
defer delete(cirIncMap, pl.Name) return fmt.Errorf("circular inclusion in: %q", plname)
}
p.cirIncMap[plname] = true
defer delete(p.cirIncMap, plname)
roughMap := make(map[string]*Entry) // Avoid basic duplicates roughMap := make(map[string]*Entry) // Avoid basic duplicates
for _, dentry := range pl.Entries { // Add direct entries for _, dentry := range pl.Entries { // Add direct entries
roughMap[dentry.Plain] = dentry roughMap[dentry.Plain] = dentry
} }
for _, inc := range pl.Inclusions { for _, inc := range pl.Inclusions {
incPl, exist := plMap[inc.Source] if _, exist := p.plMap[inc.Source]; !exist {
if !exist { return fmt.Errorf("list %q includes a non-existent list: %q", plname, inc.Source)
return fmt.Errorf("list %q includes a non-existent list: %q", pl.Name, inc.Source)
} }
if err := resolveList(incPl); err != nil { if err := p.resolveList(inc.Source); err != nil {
return err return err
} }
for _, ientry := range finalMap[inc.Source] { for _, ientry := range p.finalMap[inc.Source] {
if isMatchAttrFilters(ientry, inc) { // Add included entries if isMatchAttrFilters(ientry, inc) { // Add included entries
roughMap[ientry.Plain] = ientry roughMap[ientry.Plain] = ientry
} }
} }
} }
finalMap[pl.Name] = polishList(roughMap) p.finalMap[plname] = polishList(roughMap)
return nil return nil
} }
@@ -381,8 +373,8 @@ func run() error {
dir := *dataPath dir := *dataPath
fmt.Printf("using domain lists data in %q\n", dir) fmt.Printf("using domain lists data in %q\n", dir)
// Generate refMap // Generate plMap
refMap := make(map[string][]*Entry) processor := &Processor{plMap: make(map[string]*ParsedList)}
err := filepath.WalkDir(dir, func(path string, d os.DirEntry, err error) error { err := filepath.WalkDir(dir, func(path string, d os.DirEntry, err error) error {
if err != nil { if err != nil {
return err return err
@@ -394,23 +386,16 @@ func run() error {
if !validateSiteName(listName) { if !validateSiteName(listName) {
return fmt.Errorf("invalid list name: %q", listName) return fmt.Errorf("invalid list name: %q", listName)
} }
refMap[listName], err = loadData(path) return processor.loadData(listName, path)
return err
}) })
if err != nil { if err != nil {
return fmt.Errorf("failed to loadData: %w", err) return fmt.Errorf("failed to loadData: %w", err)
} }
// Generate plMap
for refName, refList := range refMap {
if err := parseList(refName, refList); err != nil {
return fmt.Errorf("failed to parseList %q: %w", refName, err)
}
}
// Generate finalMap // Generate finalMap
for plname, pl := range plMap { processor.finalMap = make(map[string][]*Entry, len(processor.plMap))
if err := resolveList(pl); err != nil { processor.cirIncMap = make(map[string]bool)
for plname := range processor.plMap {
if err := processor.resolveList(plname); err != nil {
return fmt.Errorf("failed to resolveList %q: %w", plname, err) return fmt.Errorf("failed to resolveList %q: %w", plname, err)
} }
} }
@@ -419,11 +404,10 @@ func run() error {
if err := os.MkdirAll(*outputDir, 0755); err != nil { if err := os.MkdirAll(*outputDir, 0755); err != nil {
return fmt.Errorf("failed to create output directory: %w", err) return fmt.Errorf("failed to create output directory: %w", err)
} }
// Export plaintext lists
// Export plaintext list
for rawEpList := range strings.SplitSeq(*exportLists, ",") { for rawEpList := range strings.SplitSeq(*exportLists, ",") {
if epList := strings.TrimSpace(rawEpList); epList != "" { if epList := strings.TrimSpace(rawEpList); epList != "" {
entries, exist := finalMap[strings.ToUpper(epList)] entries, exist := processor.finalMap[strings.ToUpper(epList)]
if !exist || len(entries) == 0 { if !exist || len(entries) == 0 {
fmt.Printf("list %q does not exist or is empty\n", epList) fmt.Printf("list %q does not exist or is empty\n", epList)
continue continue
@@ -438,7 +422,7 @@ func run() error {
// Generate dat file // Generate dat file
protoList := new(router.GeoSiteList) protoList := new(router.GeoSiteList)
for siteName, siteEntries := range finalMap { for siteName, siteEntries := range processor.finalMap {
site, err := makeProtoList(siteName, siteEntries) site, err := makeProtoList(siteName, siteEntries)
if err != nil { if err != nil {
return fmt.Errorf("failed to makeProtoList %q: %w", siteName, err) return fmt.Errorf("failed to makeProtoList %q: %w", siteName, err)