From 996c96fffff328497c2ba305c61e064256c84188 Mon Sep 17 00:00:00 2001
From: Thomas Pointhuber <thomas.pointhuber@gmx.at>
Date: Mon, 24 Aug 2015 11:31:30 +0200
Subject: [PATCH] [fix] block ixquick search url's

---
 searx/engines/startpage.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/searx/engines/startpage.py b/searx/engines/startpage.py
index 08e4f7a5b..7d58f7f01 100644
--- a/searx/engines/startpage.py
+++ b/searx/engines/startpage.py
@@ -73,6 +73,10 @@ def response(resp):
         if re.match("^http(s|)://(www\.)?startpage\.com/do/search\?.*$", url):
             continue
 
+        # block ixquick search url's
+        if re.match("^http(s|)://(www\.)?ixquick\.com/do/search\?.*$", url):
+            continue
+
         title = escape(extract_text(link))
 
         if result.xpath('./p[@class="desc"]'):