1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00
v2fly/infra/control/tlsping.go

132 lines
3.1 KiB
Go
Raw Normal View History

2019-02-19 09:56:06 +00:00
package control
import (
"crypto/tls"
2019-02-19 15:35:05 +00:00
"crypto/x509"
"encoding/base64"
2019-02-19 09:56:06 +00:00
"flag"
"fmt"
"net"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/common"
v2tls "github.com/v2fly/v2ray-core/v4/transport/internet/tls"
2019-02-19 09:56:06 +00:00
)
type TLSPingCommand struct{}
2019-02-19 09:56:06 +00:00
func (c *TLSPingCommand) Name() string {
2019-02-19 09:56:06 +00:00
return "tlsping"
}
func (c *TLSPingCommand) Description() Description {
2019-02-19 09:56:06 +00:00
return Description{
Short: "Ping the domain with TLS handshake",
Usage: []string{"v2ctl tlsping <domain> --ip <ip>"},
}
}
2019-02-19 15:35:05 +00:00
func printCertificates(certs []*x509.Certificate) {
for _, cert := range certs {
if len(cert.DNSNames) == 0 {
continue
}
fmt.Println("Allowed domains: ", cert.DNSNames)
}
}
func (c *TLSPingCommand) Execute(args []string) error {
2019-02-19 09:56:06 +00:00
fs := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
ipStr := fs.String("ip", "", "IP address of the domain")
if err := fs.Parse(args); err != nil {
return newError("flag parsing").Base(err)
}
if fs.NArg() < 1 {
return newError("domain not specified")
}
domain := fs.Arg(0)
fmt.Println("Tls ping: ", domain)
var ip net.IP
if len(*ipStr) > 0 {
v := net.ParseIP(*ipStr)
if v == nil {
return newError("invalid IP: ", *ipStr)
}
ip = v
} else {
v, err := net.ResolveIPAddr("ip", domain)
if err != nil {
return newError("resolve IP").Base(err)
}
ip = v.IP
}
fmt.Println("Using IP: ", ip.String())
2019-02-19 15:35:05 +00:00
fmt.Println("-------------------")
2019-02-19 09:56:06 +00:00
fmt.Println("Pinging without SNI")
{
tcpConn, err := net.DialTCP("tcp", nil, &net.TCPAddr{IP: ip, Port: 443})
if err != nil {
return newError("dial tcp").Base(err)
}
tlsConn := tls.Client(tcpConn, &tls.Config{
InsecureSkipVerify: true,
NextProtos: []string{"http/1.1"},
MaxVersion: tls.VersionTLS12,
MinVersion: tls.VersionTLS12,
VerifyPeerCertificate: showCert(),
2019-02-19 09:56:06 +00:00
})
err = tlsConn.Handshake()
if err != nil {
fmt.Println("Handshake failure: ", err)
} else {
fmt.Println("Handshake succeeded")
2019-02-19 15:35:05 +00:00
printCertificates(tlsConn.ConnectionState().PeerCertificates)
2019-02-19 09:56:06 +00:00
}
tlsConn.Close()
}
2019-02-19 15:35:05 +00:00
fmt.Println("-------------------")
2019-02-19 09:56:06 +00:00
fmt.Println("Pinging with SNI")
{
tcpConn, err := net.DialTCP("tcp", nil, &net.TCPAddr{IP: ip, Port: 443})
if err != nil {
return newError("dial tcp").Base(err)
}
tlsConn := tls.Client(tcpConn, &tls.Config{
ServerName: domain,
NextProtos: []string{"http/1.1"},
MaxVersion: tls.VersionTLS12,
MinVersion: tls.VersionTLS12,
VerifyPeerCertificate: showCert(),
2019-02-19 09:56:06 +00:00
})
err = tlsConn.Handshake()
if err != nil {
fmt.Println("handshake failure: ", err)
} else {
fmt.Println("handshake succeeded")
2019-02-19 15:35:05 +00:00
printCertificates(tlsConn.ConnectionState().PeerCertificates)
2019-02-19 09:56:06 +00:00
}
tlsConn.Close()
}
fmt.Println("Tls ping finished")
return nil
}
func showCert() func(rawCerts [][]byte, verifiedChains [][]*x509.Certificate) error {
return func(rawCerts [][]byte, verifiedChains [][]*x509.Certificate) error {
hash := v2tls.GenerateCertChainHash(rawCerts)
fmt.Println("Certificate Chain Hash: ", base64.StdEncoding.EncodeToString(hash))
return nil
}
}
2019-02-19 09:56:06 +00:00
func init() {
common.Must(RegisterCommand(&TLSPingCommand{}))
2019-02-19 09:56:06 +00:00
}