I found a bypass using the Android Google App this time. However, unlike the iPhone GSA method, this one does have rate limits. Although it took a couple of hundred consecutive requests to trigger them.
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""This script fetches user agents suitable for Google.
|
|
|
|
Output file: :origin:`searx/data/gsa_useragents.txt` (:origin:`CI Update data
|
|
... <.github/workflows/data-update.yml>`).
|
|
|
|
.. Source for user agents: https://github.com/intoli/user-agents/
|
|
|
|
"""
|
|
|
|
from gzip import decompress
|
|
from json import loads
|
|
|
|
from searx.data import data_dir
|
|
from searx.network import get as http_get
|
|
from searx.utils import searxng_useragent
|
|
|
|
DATA_FILE = data_dir / "gsa_useragents.txt"
|
|
URL = "https://raw.githubusercontent.com/intoli/user-agents/main/src/user-agents.json.gz"
|
|
|
|
|
|
def fetch_gsa_useragents() -> list[str]:
|
|
response = http_get(URL, timeout=3.0, headers={"User-Agent": searxng_useragent()})
|
|
response.raise_for_status()
|
|
|
|
suas: set[str] = set()
|
|
for ua in loads(decompress(response.content)):
|
|
if "Android" in ua["userAgent"] and "Chrome" in ua["userAgent"] and "Samsung" not in ua["userAgent"]:
|
|
suas.add(ua["userAgent"])
|
|
|
|
luas = list(suas)
|
|
luas.sort()
|
|
|
|
return luas
|
|
|
|
|
|
if __name__ == "__main__":
|
|
useragents = fetch_gsa_useragents()
|
|
with DATA_FILE.open("w", encoding="utf-8") as f:
|
|
f.write("\n".join(useragents))
|