Selaa lähdekoodia

[fix] query escaping in rss/opensearch output

Adam Tauber 8 vuotta sitten
vanhempi
commit
39f5035e13

+ 4
- 4
searx/templates/courgette/opensearch_response_rss.xml Näytä tiedosto

@@ -3,14 +3,14 @@
3 3
      xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
4 4
      xmlns:atom="http://www.w3.org/2005/Atom">
5 5
   <channel>
6
-    <title>Searx search: {{ q }}</title>
7
-    <link>{{ base_url }}?q={{ q }}</link>
8
-    <description>Search results for "{{ q }}" - searx</description>
6
+    <title>Searx search: {{ q|e }}</title>
7
+    <link>{{ base_url }}?q={{ q|e }}</link>
8
+    <description>Search results for "{{ q|e }}" - searx</description>
9 9
     <opensearch:totalResults>{{ number_of_results }}</opensearch:totalResults>
10 10
     <opensearch:startIndex>1</opensearch:startIndex>
11 11
     <opensearch:itemsPerPage>{{ number_of_results }}</opensearch:itemsPerPage>
12 12
     <atom:link rel="search" type="application/opensearchdescription+xml" href="{{ base_url }}opensearch.xml"/>
13
-    <opensearch:Query role="request" searchTerms="{{ q }}" startPage="1" />
13
+    <opensearch:Query role="request" searchTerms="{{ q|e }}" startPage="1" />
14 14
     {% for r in results %}
15 15
     <item>
16 16
       <title>{{ r.title }}</title>

+ 4
- 4
searx/templates/legacy/opensearch_response_rss.xml Näytä tiedosto

@@ -3,14 +3,14 @@
3 3
      xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
4 4
      xmlns:atom="http://www.w3.org/2005/Atom">
5 5
   <channel>
6
-    <title>Searx search: {{ q }}</title>
7
-    <link>{{ base_url }}?q={{ q }}</link>
8
-    <description>Search results for "{{ q }}" - searx</description>
6
+    <title>Searx search: {{ q|e }}</title>
7
+    <link>{{ base_url }}?q={{ q|e }}</link>
8
+    <description>Search results for "{{ q|e }}" - searx</description>
9 9
     <opensearch:totalResults>{{ number_of_results }}</opensearch:totalResults>
10 10
     <opensearch:startIndex>1</opensearch:startIndex>
11 11
     <opensearch:itemsPerPage>{{ number_of_results }}</opensearch:itemsPerPage>
12 12
     <atom:link rel="search" type="application/opensearchdescription+xml" href="{{ base_url }}opensearch.xml"/>
13
-    <opensearch:Query role="request" searchTerms="{{ q }}" startPage="1" />
13
+    <opensearch:Query role="request" searchTerms="{{ q|e }}" startPage="1" />
14 14
     {% for r in results %}
15 15
     <item>
16 16
       <title>{{ r.title }}</title>

+ 4
- 4
searx/templates/oscar/opensearch_response_rss.xml Näytä tiedosto

@@ -3,14 +3,14 @@
3 3
      xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"
4 4
      xmlns:atom="http://www.w3.org/2005/Atom">
5 5
   <channel>
6
-    <title>Searx search: {{ q }}</title>
7
-    <link>{{ base_url }}?q={{ q }}</link>
8
-    <description>Search results for "{{ q }}" - searx</description>
6
+    <title>Searx search: {{ q|e }}</title>
7
+    <link>{{ base_url }}?q={{ q|e }}</link>
8
+    <description>Search results for "{{ q|e }}" - searx</description>
9 9
     <opensearch:totalResults>{{ number_of_results }}</opensearch:totalResults>
10 10
     <opensearch:startIndex>1</opensearch:startIndex>
11 11
     <opensearch:itemsPerPage>{{ number_of_results }}</opensearch:itemsPerPage>
12 12
     <atom:link rel="search" type="application/opensearchdescription+xml" href="{{ base_url }}opensearch.xml"/>
13
-    <opensearch:Query role="request" searchTerms="{{ q }}" startPage="1" />
13
+    <opensearch:Query role="request" searchTerms="{{ q|e }}" startPage="1" />
14 14
     {% for r in results %}
15 15
     <item>
16 16
       <title>{{ r.title }}</title>