mirror of
https://github.com/lwthiker/curl-impersonate.git
synced 2025-08-08 04:42:26 +00:00
Impersonate Chrome 99 and Edge 99
Add impersonation support for Chrome 99 and Edge 99 which were just released.
Their TLS signature is identical to the previous versions (98).
The only difference is in the user agents.
curl patch from
ca13947f00
This commit is contained in:
@@ -127,7 +127,9 @@ class TestImpersonation:
|
||||
CURL_BINARIES_AND_SIGNATURES = [
|
||||
# Test wrapper scripts
|
||||
("chrome/curl_chrome98", None, "chrome_98.0.4758.102_win10"),
|
||||
("chrome/curl_chrome99", None, "chrome_99.0.4844.51_win10"),
|
||||
("chrome/curl_edge98", None, "edge_98.0.1108.62_win10"),
|
||||
("chrome/curl_edge99", None, "edge_99.0.1150.30_win10"),
|
||||
("chrome/curl_safari15_3", None, "safari_15.3_macos11.6.4"),
|
||||
("firefox/curl_ff91esr", None, "firefox_91.6.0esr_win10"),
|
||||
("firefox/curl_ff95", None, "firefox_95.0.2_win10"),
|
||||
@@ -143,6 +145,14 @@ class TestImpersonation:
|
||||
},
|
||||
"chrome_98.0.4758.102_win10"
|
||||
),
|
||||
(
|
||||
"./minicurl",
|
||||
{
|
||||
"LD_PRELOAD": "./chrome/libcurl-impersonate.so",
|
||||
"CURL_IMPERSONATE": "chrome99"
|
||||
},
|
||||
"chrome_99.0.4844.51_win10"
|
||||
),
|
||||
(
|
||||
"./minicurl",
|
||||
{
|
||||
@@ -151,6 +161,14 @@ class TestImpersonation:
|
||||
},
|
||||
"edge_98.0.1108.62_win10"
|
||||
),
|
||||
(
|
||||
"./minicurl",
|
||||
{
|
||||
"LD_PRELOAD": "./chrome/libcurl-impersonate.so",
|
||||
"CURL_IMPERSONATE": "edge99"
|
||||
},
|
||||
"edge_99.0.1150.30_win10"
|
||||
),
|
||||
(
|
||||
"./minicurl",
|
||||
{
|
||||
|
Reference in New Issue
Block a user