diff options
| author | Bnyro <bnyro@tutanota.com> | 2026-06-26 20:12:08 +0200 |
|---|---|---|
| committer | Bnyro <bnyro@tutanota.com> | 2026-06-28 22:30:48 +0200 |
| commit | 7e9a6c286113d4f803f67979a6d66f5f0d92b2cd (patch) | |
| tree | b633b36e63b1f08f95f3d4ef3ab7275104da9740 /searx | |
| parent | 357662d86dd225bf8f0bfe5cfaa45bed09aef788 (diff) | |
[fix] tiger: captcha paths have changed
Diffstat (limited to 'searx')
| -rw-r--r-- | searx/engines/tiger.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/engines/tiger.py b/searx/engines/tiger.py index 3f8e1b9c6..8d5afc930 100644 --- a/searx/engines/tiger.py +++ b/searx/engines/tiger.py @@ -73,7 +73,7 @@ def _obtain_session_code() -> str: if cached_session: return cached_session - results_page = get(f"{base_url}/_internCode.aspx") + results_page = get(f"{base_url}/checkCode.aspx") doc = html.fromstring(results_page.text) extra_data: dict[str, str] = {} @@ -107,7 +107,7 @@ def _obtain_session_code() -> str: } challenge_response = post( - f"{base_url}/_internCode.aspx", + f"{base_url}/checkCode.aspx", cookies=results_page.cookies, data=data, ) |
