-
Notifications
You must be signed in to change notification settings - Fork 167
/
profiles.go
132 lines (118 loc) · 4.29 KB
/
profiles.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package profiles
import (
"github.com/bogdanfinn/fhttp/http2"
tls "github.com/bogdanfinn/utls"
)
var DefaultClientProfile = Chrome_131
var MappedTLSClients = map[string]ClientProfile{
"chrome_103": Chrome_103,
"chrome_104": Chrome_104,
"chrome_105": Chrome_105,
"chrome_106": Chrome_106,
"chrome_107": Chrome_107,
"chrome_108": Chrome_108,
"chrome_109": Chrome_109,
"chrome_110": Chrome_110,
"chrome_111": Chrome_111,
"chrome_112": Chrome_112,
"chrome_116_PSK": Chrome_116_PSK,
"chrome_116_PSK_PQ": Chrome_116_PSK_PQ,
"chrome_117": Chrome_117,
"chrome_120": Chrome_120,
"chrome_124": Chrome_124,
"chrome_131": Chrome_131,
"chrome_131_PSK": Chrome_131_PSK,
"safari_15_6_1": Safari_15_6_1,
"safari_16_0": Safari_16_0,
"safari_ipad_15_6": Safari_Ipad_15_6,
"safari_ios_15_5": Safari_IOS_15_5,
"safari_ios_15_6": Safari_IOS_15_6,
"safari_ios_16_0": Safari_IOS_16_0,
"safari_ios_17_0": Safari_IOS_17_0,
"safari_ios_18_0": Safari_IOS_18_0,
"firefox_102": Firefox_102,
"firefox_104": Firefox_104,
"firefox_105": Firefox_105,
"firefox_106": Firefox_106,
"firefox_108": Firefox_108,
"firefox_110": Firefox_110,
"firefox_117": Firefox_117,
"firefox_120": Firefox_120,
"firefox_123": Firefox_123,
"firefox_132": Firefox_132,
"firefox_133": Firefox_133,
"opera_89": Opera_89,
"opera_90": Opera_90,
"opera_91": Opera_91,
"zalando_android_mobile": ZalandoAndroidMobile,
"zalando_ios_mobile": ZalandoIosMobile,
"nike_ios_mobile": NikeIosMobile,
"nike_android_mobile": NikeAndroidMobile,
"cloudscraper": CloudflareCustom,
"mms_ios": MMSIos,
"mms_ios_1": MMSIos,
"mms_ios_2": MMSIos2,
"mms_ios_3": MMSIos3,
"mesh_ios": MeshIos,
"mesh_ios_1": MeshIos,
"mesh_ios_2": MeshIos2,
"mesh_android": MeshAndroid,
"mesh_android_1": MeshAndroid,
"mesh_android_2": MeshAndroid2,
"confirmed_ios": ConfirmedIos,
"confirmed_android": ConfirmedAndroid,
"okhttp4_android_7": Okhttp4Android7,
"okhttp4_android_8": Okhttp4Android8,
"okhttp4_android_9": Okhttp4Android9,
"okhttp4_android_10": Okhttp4Android10,
"okhttp4_android_11": Okhttp4Android11,
"okhttp4_android_12": Okhttp4Android12,
"okhttp4_android_13": Okhttp4Android13,
}
type ClientProfile struct {
clientHelloId tls.ClientHelloID
headerPriority *http2.PriorityParam
settings map[http2.SettingID]uint32
priorities []http2.Priority
pseudoHeaderOrder []string
settingsOrder []http2.SettingID
connectionFlow uint32
}
func NewClientProfile(clientHelloId tls.ClientHelloID, settings map[http2.SettingID]uint32, settingsOrder []http2.SettingID, pseudoHeaderOrder []string, connectionFlow uint32, priorities []http2.Priority, headerPriority *http2.PriorityParam) ClientProfile {
return ClientProfile{
clientHelloId: clientHelloId,
settings: settings,
settingsOrder: settingsOrder,
pseudoHeaderOrder: pseudoHeaderOrder,
connectionFlow: connectionFlow,
priorities: priorities,
headerPriority: headerPriority,
}
}
func (c ClientProfile) GetClientHelloSpec() (tls.ClientHelloSpec, error) {
return c.clientHelloId.ToSpec()
}
func (c ClientProfile) GetClientHelloStr() string {
return c.clientHelloId.Str()
}
func (c ClientProfile) GetSettings() map[http2.SettingID]uint32 {
return c.settings
}
func (c ClientProfile) GetSettingsOrder() []http2.SettingID {
return c.settingsOrder
}
func (c ClientProfile) GetConnectionFlow() uint32 {
return c.connectionFlow
}
func (c ClientProfile) GetPseudoHeaderOrder() []string {
return c.pseudoHeaderOrder
}
func (c ClientProfile) GetHeaderPriority() *http2.PriorityParam {
return c.headerPriority
}
func (c ClientProfile) GetClientHelloId() tls.ClientHelloID {
return c.clientHelloId
}
func (c ClientProfile) GetPriorities() []http2.Priority {
return c.priorities
}