Improve DN42 related whois handling
This commit is contained in:
parent
cc121c8b49
commit
43f087e51b
@ -14,7 +14,7 @@ func dn42WhoisFilter(whois string) string {
|
|||||||
filteredPrefix := []string{
|
filteredPrefix := []string{
|
||||||
"descr:", "remarks:", "ds-rdata:", "auth:", "country:",
|
"descr:", "remarks:", "ds-rdata:", "auth:", "country:",
|
||||||
"nserver:", "status:", "pgp-fingerprint:", "mp-import:", "mp-export:",
|
"nserver:", "status:", "pgp-fingerprint:", "mp-import:", "mp-export:",
|
||||||
"members:", "key:", "inetnum:", "inet6num:", "%",
|
"members:", "key:", "inetnum:", "inet6num:",
|
||||||
}
|
}
|
||||||
for _, s := range strings.Split(whois, "\n") {
|
for _, s := range strings.Split(whois, "\n") {
|
||||||
if len(s) == 0 {
|
if len(s) == 0 {
|
||||||
|
@ -3,6 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -113,6 +114,15 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
} else if telegramIsCommand(request.Message.Text, "whois") {
|
} else if telegramIsCommand(request.Message.Text, "whois") {
|
||||||
|
if setting.netSpecificMode == "dn42" {
|
||||||
|
targetNumber, err := strconv.Atoi(target)
|
||||||
|
if err == nil {
|
||||||
|
if targetNumber < 10000 {
|
||||||
|
targetNumber += 4242420000
|
||||||
|
target = strconv.Itoa(targetNumber)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
tempResult := whois(target)
|
tempResult := whois(target)
|
||||||
if setting.netSpecificMode == "dn42" {
|
if setting.netSpecificMode == "dn42" {
|
||||||
commandResult = dn42WhoisFilter(tempResult)
|
commandResult = dn42WhoisFilter(tempResult)
|
||||||
|
@ -4,7 +4,7 @@ LABEL Lan Tian "lantian@lantian.pub"
|
|||||||
ENV GOOS=linux GOARCH=amd64
|
ENV GOOS=linux GOARCH=amd64
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales \
|
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales busybox \
|
||||||
&& cd /root && go build -o /proxy \
|
&& cd /root && go build -o /proxy \
|
||||||
&& cd / && rm -rf /root/* \
|
&& cd / && rm -rf /root/* \
|
||||||
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
|
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
|
||||||
|
@ -4,7 +4,7 @@ LABEL Lan Tian "lantian@lantian.pub"
|
|||||||
ENV GOOS=linux GOARCH=arm
|
ENV GOOS=linux GOARCH=arm
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales \
|
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales busybox \
|
||||||
&& cd /root && go build -o /proxy \
|
&& cd /root && go build -o /proxy \
|
||||||
&& cd / && rm -rf /root/* \
|
&& cd / && rm -rf /root/* \
|
||||||
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
|
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
|
||||||
|
@ -4,7 +4,7 @@ LABEL Lan Tian "lantian@lantian.pub"
|
|||||||
ENV GOOS=linux GOARCH=arm64
|
ENV GOOS=linux GOARCH=arm64
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales \
|
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales busybox \
|
||||||
&& cd /root && go build -o /proxy \
|
&& cd /root && go build -o /proxy \
|
||||||
&& cd / && rm -rf /root/* \
|
&& cd / && rm -rf /root/* \
|
||||||
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
|
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
|
||||||
|
@ -4,7 +4,7 @@ LABEL Lan Tian "lantian@lantian.pub"
|
|||||||
ENV GOOS=linux GOARCH=386
|
ENV GOOS=linux GOARCH=386
|
||||||
WORKDIR /root
|
WORKDIR /root
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales \
|
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales busybox \
|
||||||
&& cd /root && go build -o /proxy \
|
&& cd /root && go build -o /proxy \
|
||||||
&& cd / && rm -rf /root/* \
|
&& cd / && rm -rf /root/* \
|
||||||
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
|
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user