summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2014-11-22 18:37:42 +0100
committerAdam Tauber <asciimoo@gmail.com>2014-11-22 18:37:42 +0100
commit3dfeb739126a0e0f3c0fe06ea789869d5900f208 (patch)
tree19c3eeb5c1110c25277201c7712c26b48c41d1d8 /searx
parent91384c1f31667d249880c679a6197af956ead618 (diff)
[enh] user agent string update
Diffstat (limited to 'searx')
-rw-r--r--searx/utils.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/searx/utils.py b/searx/utils.py
index 47980bd36..dc831ef5f 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -11,10 +11,16 @@ import csv
import os
import re
-ua_versions = ('26.0', '27.0', '28.0')
+ua_versions = ('29.0',
+ '30.0',
+ '31.0',
+ '32.0',
+ '33.0')
+
ua_os = ('Windows NT 6.3; WOW64',
'X11; Linux x86_64',
'X11; Linux x86')
+
ua = "Mozilla/5.0 ({os}) Gecko/20100101 Firefox/{version}"