tls_record_magic

addon-dailer
lqqyt2423 2 years ago
parent d2659e454c
commit 3bbda5588b

@ -151,7 +151,7 @@ func (m *Middle) intercept(serverConn *connBuf) {
}
// https://github.com/mitmproxy/mitmproxy/blob/main/mitmproxy/net/tls.py is_tls_record_magic
if buf[0] == 0x16 && buf[1] == 0x03 && (buf[2] >= 0x0 && buf[2] <= 0x03) {
if buf[0] == 0x16 && buf[1] == 0x03 && buf[2] <= 0x03 {
// tls
m.Listener.(*listener).connChan <- serverConn
} else {

Loading…
Cancel
Save