mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Finish Firefox 55 fignerprint. Implements #4
This commit is contained in:
parent
0af497570e
commit
6890f3e435
2 changed files with 7 additions and 10 deletions
|
@ -91,7 +91,7 @@ var (
|
|||
|
||||
// The rest will will parrot given browser.
|
||||
HelloFirefox_Auto ClientHelloID = ClientHelloID{helloFirefox, helloAutoVers}
|
||||
HelloFirefox_53_WIP = ClientHelloID{helloFirefox, 53}
|
||||
HelloFirefox_55 = ClientHelloID{helloFirefox, 55}
|
||||
|
||||
HelloChrome_Auto ClientHelloID = ClientHelloID{helloChrome, helloAutoVers}
|
||||
HelloChrome_58 ClientHelloID = ClientHelloID{helloChrome, 58}
|
||||
|
|
15
u_parrots.go
15
u_parrots.go
|
@ -18,8 +18,8 @@ import (
|
|||
func (uconn *UConn) generateClientHelloConfig(id ClientHelloID) error {
|
||||
uconn.clientHelloID = id
|
||||
switch uconn.clientHelloID {
|
||||
case HelloFirefox_53_WIP:
|
||||
return uconn.parrotFirefox_53_WIP()
|
||||
case HelloFirefox_55:
|
||||
return uconn.parrotFirefox_55()
|
||||
|
||||
case HelloAndroid_6_0_Browser:
|
||||
return uconn.parrotAndroid_6_0()
|
||||
|
@ -47,7 +47,7 @@ func (uconn *UConn) generateClientHelloConfig(id ClientHelloID) error {
|
|||
case HelloAndroid_Auto:
|
||||
return uconn.generateClientHelloConfig(HelloAndroid_6_0_Browser)
|
||||
case HelloFirefox_Auto:
|
||||
return uconn.generateClientHelloConfig(HelloFirefox_53_WIP)
|
||||
return uconn.generateClientHelloConfig(HelloFirefox_55)
|
||||
case HelloChrome_Auto:
|
||||
return uconn.generateClientHelloConfig(HelloChrome_58)
|
||||
|
||||
|
@ -85,12 +85,7 @@ func (uconn *UConn) fillClientHelloHeader() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (uconn *UConn) parrotFirefox_53_WIP() error {
|
||||
/*
|
||||
Work in progress!
|
||||
TODO: double check session id generation
|
||||
TODO: add firefox-style padding
|
||||
*/
|
||||
func (uconn *UConn) parrotFirefox_55() error {
|
||||
hello := uconn.HandshakeState.Hello
|
||||
session := uconn.HandshakeState.Session
|
||||
hello.CipherSuites = []uint16{
|
||||
|
@ -146,6 +141,7 @@ func (uconn *UConn) parrotFirefox_53_WIP() error {
|
|||
{hashSHA1, signatureECDSA},
|
||||
{hashSHA1, signatureRSA}},
|
||||
}
|
||||
padding := FakePaddingExtension{GetPaddingLen: boringPaddingStyle}
|
||||
uconn.Extensions = []TLSExtension{
|
||||
&sni,
|
||||
&ems,
|
||||
|
@ -156,6 +152,7 @@ func (uconn *UConn) parrotFirefox_53_WIP() error {
|
|||
&alpn,
|
||||
&status,
|
||||
&sigAndHash,
|
||||
&padding,
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue