1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
|
# -*- coding: utf-8 ; test-case-name: bridgedb.test.test_https_server -*-
#
# This file is part of BridgeDB, a Tor bridge distribution system.
#
# :authors: please see included AUTHORS file
# :copyright: (c) 2007-2015, The Tor Project, Inc.
# (c) 2013-2015, Isis Lovecruft
# :license: see LICENSE for licensing information
"""
.. py:module:: bridgedb.https.server
:synopsis: Servers which interface with clients and distribute bridges
over HTTP(S).
bridgedb.https.server
=====================
Servers which interface with clients and distribute bridges over HTTP(S).
.. inheritance-diagram:: TranslatedTemplateResource IndexResource OptionsResource HowtoResource CaptchaProtectedResource GimpCaptchaProtectedResource ReCaptchaProtectedResource BridgesResource
:parts: 1
"""
import base64
import gettext
import logging
import random
import re
import time
import os
from functools import partial
from ipaddr import IPv4Address
import mako.exceptions
from mako.template import Template
from mako.lookup import TemplateLookup
from twisted.internet import reactor
from twisted.internet.error import CannotListenError
from twisted.web import resource
from twisted.web import static
from twisted.web.server import NOT_DONE_YET
from twisted.web.server import Site
from twisted.web.util import redirectTo
from bridgedb import captcha
from bridgedb import crypto
from bridgedb import strings
from bridgedb import translations
from bridgedb import txrecaptcha
from bridgedb.https.request import HTTPSBridgeRequest
from bridgedb.parse import headers
from bridgedb.parse.addr import isIPAddress
from bridgedb.qrcodes import generateQR
from bridgedb.safelog import logSafely
from bridgedb.schedule import Unscheduled
from bridgedb.schedule import ScheduledInterval
from bridgedb.util import replaceControlChars
TEMPLATE_DIR = os.path.join(os.path.dirname(__file__), 'templates')
rtl_langs = ('ar', 'he', 'fa', 'gu_IN', 'ku')
# Setting `filesystem_checks` to False is recommended for production servers,
# due to potential speed increases. This means that the atimes of the Mako
# template files aren't rechecked every time the template is requested
# (otherwise, if they are checked, and the atime is newer, the template is
# recompiled). `collection_size` sets the number of compiled templates which
# are cached before the least recently used ones are removed. See:
# http://docs.makotemplates.org/en/latest/usage.html#using-templatelookup
lookup = TemplateLookup(directories=[TEMPLATE_DIR],
output_encoding='utf-8',
filesystem_checks=False,
collection_size=500)
logging.debug("Set template root to %s" % TEMPLATE_DIR)
#: This server's public, fully-qualified domain name.
SERVER_PUBLIC_FQDN = None
def setFQDN(fqdn, https=True):
"""Set the global :data:`SERVER_PUBLIC FQDN` variable.
:param str fqdn: The public, fully-qualified domain name of the HTTP
server that will serve this resource.
:param bool https: If ``True``, then ``'https://'`` will be prepended to
the FQDN. This is primarily used to create a
``Content-Security-Policy`` header that will only allow resources to
be sourced via HTTPS, otherwise, if ``False``, it allow resources to
be sourced via any transport protocol.
"""
if https:
fqdn = 'https://' + fqdn
logging.info("Setting HTTP server public FQDN to %r" % fqdn)
global SERVER_PUBLIC_FQDN
SERVER_PUBLIC_FQDN = fqdn
def getFQDN():
"""Get the setting for the HTTP server's public FQDN from the global
:data:`SERVER_PUBLIC_FQDN variable.
:rtype: str or None
"""
return SERVER_PUBLIC_FQDN
def getClientIP(request, useForwardedHeader=False):
"""Get the client's IP address from the ``'X-Forwarded-For:'``
header, or from the :api:`request <twisted.web.server.Request>`.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` for a :api:`twisted.web.resource.Resource`.
:param bool useForwardedHeader: If ``True``, attempt to get the client's
IP address from the ``'X-Forwarded-For:'`` header.
:rtype: ``None`` or :any:`str`
:returns: The client's IP address, if it was obtainable.
"""
ip = None
if useForwardedHeader:
header = request.getHeader("X-Forwarded-For")
if header:
ip = header.split(",")[-1].strip()
if not isIPAddress(ip):
logging.warn("Got weird X-Forwarded-For value %r" % header)
ip = None
else:
ip = request.getClientIP()
return ip
def replaceErrorPage(request, error, template_name=None, html=True):
"""Create a general error page for displaying in place of tracebacks.
Log the error to BridgeDB's logger, and then display a very plain "Sorry!
Something went wrong!" page to the client.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object containing the HTTP method, full
URI, and any URL/POST arguments and headers present.
:type error: :exc:`Exception`
:param error: Any exeption which has occurred while attempting to retrieve
a template, render a page, or retrieve a resource.
:param str template_name: A string describing which template/page/resource
was being used when the exception occurred, i.e. ``'index.html'``.
:param bool html: If ``True``, return one of two HTML error pages. First,
we attempt to render a fancier error page. If that rendering failed,
or if **html** is ``False``, then we return a very simple HTML page
(without CSS, Javascript, images, etc.) which simply says
``"Sorry! Something went wrong with your request."``
:rtype: str
:returns: A string containing some content to serve to the client (rather
than serving a Twisted traceback).
"""
logging.error("Error while attempting to render %s: %s"
% (template_name or 'template',
mako.exceptions.text_error_template().render()))
# TRANSLATORS: Please DO NOT translate the following words and/or phrases in
# any string (regardless of capitalization and/or punctuation):
#
# "BridgeDB"
# "pluggable transport"
# "pluggable transports"
# "obfs2"
# "obfs3"
# "scramblesuit"
# "fteproxy"
# "Tor"
# "Tor Browser"
#
errorMessage = _("Sorry! Something went wrong with your request.")
if not html:
return bytes(errorMessage)
try:
rendered = resource500.render(request)
except Exception as err:
logging.exception(err)
rendered = bytes(errorMessage)
return rendered
class CSPResource(resource.Resource):
"""A resource which adds a ``'Content-Security-Policy:'`` header.
:vartype reportViolations: bool
:var reportViolations: Use the Content Security Policy in `report-only`_
mode, causing CSP violations to be reported back to the server (at
:attr:`reportURI`, where the details of the violation will be logged).
(default: ``False``)
:vartype reportURI: str
:var reportURI: If :attr:`reportViolations` is ``True``, Content Security
Policy violations will be sent as JSON-encoded POST request to this
URI. (default: ``'csp-violation'``)
.. _report-only:
https://w3c.github.io/webappsec/specs/content-security-policy/#content-security-policy-report-only-header-field
"""
reportViolations = False
reportURI = 'csp-violation'
def __init__(self, includeSelf=False, enabled=True, reportViolations=False,
useForwardedHeader=False):
"""Create a new :api:`twisted.web.resource.Resource` which adds a
``'Content-Security-Policy:'`` header.
If enabled, the default Content Security Policy is::
default-src 'none' ;
base-uri FQDN ;
script-src FQDN ;
style-src FQDN ;
img-src FQDN data: ;
font-src FQDN ;
where ``FQDN`` the value returned from the :func:`getFQDN` function
(which uses the ``SERVER_PUBLIC_FQDN`` config file option).
If the **includeSelf** parameter is enabled, then ``"'self'"``
(literally, a string containing the word ``self``, surrounded by
single-quotes) will be appended to the ``FQDN``.
:param str fqdn: The public, fully-qualified domain name
of the HTTP server that will serve this resource.
:param bool includeSelf: Append ``'self'`` after the **fqdn** in the
Content Security Policy.
:param bool enabled: If ``False``, all Content Security Policy
headers, including those used in report-only mode, will not be
sent. If ``True``, Content Security Policy headers (regardless of
whether report-only mode is dis-/en-abled) will be sent.
(default: ``True``)
:param bool reportViolations: Use the Content Security Policy in
report-only mode, causing CSP violations to be reported back to
the server (at :attr:`reportURI`, where the details of the
violation will be logged). (default: ``False``)
:param bool useForwardedHeader: If ``True``, then we will attempt to
obtain the client's IP address from the ``X-Forwarded-For`` HTTP
header. This *only* has an effect if **reportViolations** is also
set to ``True`` — the client's IP address is logged along with any
CSP violation reports which the client sent via HTTP POST requests
to our :attr:`reportURI`. (default: ``False``)
"""
resource.Resource.__init__(self)
self.fqdn = getFQDN()
self.enabled = enabled
self.useForwardedHeader = useForwardedHeader
self.csp = ("default-src 'none'; "
"base-uri {0}; "
"script-src {0}; "
"style-src {0}; "
"img-src {0} data:; "
"font-src {0}; ")
if includeSelf:
self.fqdn = " ".join([self.fqdn, "'self'"])
if reportViolations:
self.reportViolations = reportViolations
def setCSPHeader(self, request):
"""Set the CSP header for a **request**.
If this :class:`CSPResource` is :attr:`enabled`, then use
:api:`twisted.web.http.Request.setHeader` to send an HTTP
``'Content-Security-Policy:'`` header for any response made to the
**request** (or a ``'Content-Security-Policy-Report-Only:'`` header,
if :attr:`reportViolations` is enabled).
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object for :attr:`reportViolationURI`.
"""
self.fqdn = self.fqdn or getFQDN() # Update the FQDN if it changed.
if self.enabled and self.fqdn:
if not self.reportViolations:
request.setHeader("Content-Security-Policy",
self.csp.format(self.fqdn))
else:
logging.debug("Sending report-only CSP header...")
request.setHeader("Content-Security-Policy-Report-Only",
self.csp.format(self.fqdn) +
"report-uri /%s" % self.reportURI)
def render_POST(self, request):
"""If we're in debug mode, log a Content Security Policy violation.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object for :attr:`reportViolationURI`.
"""
try:
client = getClientIP(request, self.useForwardedHeader)
report = request.content.read(2048)
logging.warning("Content-Security-Policy violation report from %s: %r"
% (client or "UNKNOWN CLIENT", report))
except Exception as err:
logging.error("Error while attempting to log CSP report: %s" % err)
# Redirect back to the original resource after the report was logged:
return redirectTo(request.uri, request)
class ErrorResource(CSPResource):
"""A resource which explains that BridgeDB is undergoing maintenance, or
that some other (unexpected) error has occured.
"""
isLeaf = True
def __init__(self, template=None, code=200):
"""Create a :api:`twisted.web.resource.Resource` for an error page."""
CSPResource.__init__(self)
self.template = template
self.code = code
def render_GET(self, request):
self.setCSPHeader(request)
request.setHeader("Content-Type", "text/html; charset=utf-8")
request.setResponseCode(self.code)
try:
template = lookup.get_template(self.template)
rendered = template.render()
except Exception as err:
rendered = replaceErrorPage(request, err, html=False)
return rendered
render_POST = render_GET
resource404 = ErrorResource('error-404.html', code=404)
resource500 = ErrorResource('error-500.html', code=500)
maintenance = ErrorResource('error-503.html', code=503)
class CustomErrorHandlingResource(resource.Resource):
"""A :api:`twisted.web.resource.Resource` which wraps the
:api:`twisted.web.resource.Resource.getChild` method in order to use
custom error handling pages.
"""
def getChild(self, path, request):
logging.debug("[404] %s" % request.uri)
return resource404
class TranslatedTemplateResource(CustomErrorHandlingResource, CSPResource):
"""A generalised resource which uses gettext translations and Mako
templates.
"""
isLeaf = True
def __init__(self, template=None):
"""Create a new :api:`Resource <twisted.web.resource.Resource>` for a
Mako-templated webpage.
"""
gettext.install("bridgedb", unicode=True)
CSPResource.__init__(self)
self.template = template
def render_GET(self, request):
self.setCSPHeader(request)
rtl = False
try:
langs = translations.getLocaleFromHTTPRequest(request)
rtl = translations.usingRTLLang(langs)
template = lookup.get_template(self.template)
rendered = template.render(strings, rtl=rtl, lang=langs[0])
except Exception as err: # pragma: no cover
rendered = replaceErrorPage(request, err)
request.setHeader("Content-Type", "text/html; charset=utf-8")
return rendered
render_POST = render_GET
class IndexResource(TranslatedTemplateResource):
"""The parent resource of all other documents hosted by the webserver."""
def __init__(self):
"""Create a :api:`twisted.web.resource.Resource` for the index page."""
TranslatedTemplateResource.__init__(self, 'index.html')
class OptionsResource(TranslatedTemplateResource):
"""A resource with additional options which a client may use to specify the
which bridge types should be returned by :class:`BridgesResource`.
"""
def __init__(self):
"""Create a :api:`twisted.web.resource.Resource` for the options page."""
TranslatedTemplateResource.__init__(self, 'options.html')
class HowtoResource(TranslatedTemplateResource):
"""A resource which explains how to use bridges."""
def __init__(self):
"""Create a :api:`twisted.web.resource.Resource` for the HowTo page."""
TranslatedTemplateResource.__init__(self, 'howto.html')
class CaptchaProtectedResource(CustomErrorHandlingResource, CSPResource):
"""A general resource protected by some form of CAPTCHA."""
isLeaf = True
def __init__(self, publicKey=None, secretKey=None,
useForwardedHeader=False, protectedResource=None):
CSPResource.__init__(self)
self.publicKey = publicKey
self.secretKey = secretKey
self.useForwardedHeader = useForwardedHeader
self.resource = protectedResource
def getClientIP(self, request):
"""Get the client's IP address from the ``'X-Forwarded-For:'``
header, or from the :api:`request <twisted.web.server.Request>`.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` for a
:api:`twisted.web.resource.Resource`.
:rtype: ``None`` or :any:`str`
:returns: The client's IP address, if it was obtainable.
"""
return getClientIP(request, self.useForwardedHeader)
def getCaptchaImage(self, request=None):
"""Get a CAPTCHA image.
:rtype: tuple
:returns: A 2-tuple of ``(image, challenge)``, where ``image`` is a
binary, JPEG-encoded image, and ``challenge`` is a unique
string. If unable to retrieve a CAPTCHA, returns a tuple
containing two empty strings.
"""
return ('', '')
def extractClientSolution(self, request):
"""Extract the client's CAPTCHA solution from a POST request.
This is used after receiving a POST request from a client (which
should contain their solution to the CAPTCHA), to extract the solution
and challenge strings.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object for 'bridges.html'.
:returns: A redirect for a request for a new CAPTCHA if there was a
problem. Otherwise, returns a 2-tuple of strings, the first is the
client's CAPTCHA solution from the text input area, and the second
is the challenge string.
"""
try:
challenge = request.args['captcha_challenge_field'][0]
response = request.args['captcha_response_field'][0]
except Exception: # pragma: no cover
return redirectTo(request.URLPath(), request)
return (challenge, response)
def checkSolution(self, request):
"""Override this method to check a client's CAPTCHA solution.
:rtype: bool
:returns: ``True`` if the client correctly solved the CAPTCHA;
``False`` otherwise.
"""
return False
def render_GET(self, request):
"""Retrieve a ReCaptcha from the API server and serve it to the client.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object for a page which should be
protected by a CAPTCHA.
:rtype: str
:returns: A rendered HTML page containing a ReCaptcha challenge image
for the client to solve.
"""
self.setCSPHeader(request)
rtl = False
image, challenge = self.getCaptchaImage(request)
try:
langs = translations.getLocaleFromHTTPRequest(request)
rtl = translations.usingRTLLang(langs)
# TODO: this does not work for versions of IE < 8.0
imgstr = 'data:image/jpeg;base64,%s' % base64.b64encode(image)
template = lookup.get_template('captcha.html')
rendered = template.render(strings,
rtl=rtl,
lang=langs[0],
imgstr=imgstr,
challenge_field=challenge)
except Exception as err:
rendered = replaceErrorPage(request, err, 'captcha.html')
request.setHeader("Content-Type", "text/html; charset=utf-8")
return rendered
def render_POST(self, request):
"""Process a client's CAPTCHA solution.
If the client's CAPTCHA solution is valid (according to
:meth:`checkSolution`), process and serve their original
request. Otherwise, redirect them back to a new CAPTCHA page.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object, including POST arguments which
should include two key/value pairs: one key being
``'captcha_challenge_field'``, and the other,
``'captcha_response_field'``. These POST arguments should be
obtained from :meth:`render_GET`.
:rtype: str
:returns: A rendered HTML page containing a ReCaptcha challenge image
for the client to solve.
"""
self.setCSPHeader(request)
request.setHeader("Content-Type", "text/html; charset=utf-8")
if self.checkSolution(request) is True:
try:
rendered = self.resource.render(request)
except Exception as err:
rendered = replaceErrorPage(request, err)
return rendered
logging.debug("Client failed a CAPTCHA; returning redirect to %s"
% request.uri)
return redirectTo(request.uri, request)
class GimpCaptchaProtectedResource(CaptchaProtectedResource):
"""A web resource which uses a local cache of CAPTCHAs, generated with
gimp-captcha_, to protect another resource.
.. _gimp-captcha: https://github.com/isislovecruft/gimp-captcha
"""
def __init__(self, hmacKey=None, captchaDir='', **kwargs):
"""Protect a resource via this one, using a local CAPTCHA cache.
:param str secretkey: A PKCS#1 OAEP-padded, private RSA key, used for
verifying the client's solution to the CAPTCHA. See
:func:`bridgedb.crypto.getRSAKey` and the
``GIMP_CAPTCHA_RSA_KEYFILE`` config setting.
:param str publickey: A PKCS#1 OAEP-padded, public RSA key, used for
creating the ``captcha_challenge_field`` string to give to a
client.
:param bytes hmacKey: The master HMAC key, used for validating CAPTCHA
challenge strings in :meth:`captcha.GimpCaptcha.check`. The file
where this key is stored can be set via the
``GIMP_CAPTCHA_HMAC_KEYFILE`` option in the config file.
:param str captchaDir: The directory where the cached CAPTCHA images
are stored. See the ``GIMP_CAPTCHA_DIR`` config setting.
:param bool useForwardedHeader: If ``True``, obtain the client's IP
address from the ``X-Forwarded-For`` HTTP header.
:type protectedResource: :api:`twisted.web.resource.Resource`
:param protectedResource: The resource to serve if the client
successfully passes the CAPTCHA challenge.
:param str serverPublicFQDN: The public, fully-qualified domain name
of the HTTP server that will serve this resource.
"""
CaptchaProtectedResource.__init__(self, **kwargs)
self.hmacKey = hmacKey
self.captchaDir = captchaDir
def checkSolution(self, request):
"""Process a solved CAPTCHA via :meth:`bridgedb.captcha.GimpCaptcha.check`.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object, including POST arguments which
should include two key/value pairs: one key being
``'captcha_challenge_field'``, and the other,
``'captcha_response_field'``. These POST arguments should be
obtained from :meth:`render_GET`.
:rtupe: bool
:returns: True, if the CAPTCHA solution was valid; False otherwise.
"""
valid = False
challenge, solution = self.extractClientSolution(request)
clientIP = self.getClientIP(request)
clientHMACKey = crypto.getHMAC(self.hmacKey, clientIP)
try:
valid = captcha.GimpCaptcha.check(challenge, solution,
self.secretKey, clientHMACKey)
except captcha.CaptchaExpired as error:
logging.warn(error)
valid = False
logging.debug("%sorrect captcha from %r: %r."
% ("C" if valid else "Inc", clientIP, solution))
return valid
def getCaptchaImage(self, request):
"""Get a random CAPTCHA image from our **captchaDir**.
Creates a :class:`~bridgedb.captcha.GimpCaptcha`, and calls its
:meth:`~bridgedb.captcha.GimpCaptcha.get` method to return a random
CAPTCHA and challenge string.
:type request: :api:`twisted.web.http.Request`
:param request: A client's initial request for some other resource
which is protected by this one (i.e. protected by a CAPTCHA).
:returns: A 2-tuple of ``(image, challenge)``, where::
- ``image`` is a string holding a binary, JPEG-encoded image.
- ``challenge`` is a unique string associated with the request.
"""
# Create a new HMAC key, specific to requests from this client:
clientIP = self.getClientIP(request)
clientHMACKey = crypto.getHMAC(self.hmacKey, clientIP)
capt = captcha.GimpCaptcha(self.publicKey, self.secretKey,
clientHMACKey, self.captchaDir)
try:
capt.get()
except captcha.GimpCaptchaError as error:
logging.error(error)
except Exception as error: # pragma: no cover
logging.error("Unhandled error while retrieving Gimp captcha!")
logging.exception(error)
return (capt.image, capt.challenge)
def render_GET(self, request):
"""Get a random CAPTCHA from our local cache directory and serve it to
the client.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object for a page which should be
protected by a CAPTCHA.
:rtype: str
:returns: A rendered HTML page containing a ReCaptcha challenge image
for the client to solve.
"""
return CaptchaProtectedResource.render_GET(self, request)
def render_POST(self, request):
"""Process a client's CAPTCHA solution.
If the client's CAPTCHA solution is valid (according to
:meth:`checkSolution`), process and serve their original
request. Otherwise, redirect them back to a new CAPTCHA page.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object, including POST arguments which
should include two key/value pairs: one key being
``'captcha_challenge_field'``, and the other,
``'captcha_response_field'``. These POST arguments should be
obtained from :meth:`render_GET`.
:rtype: str
:returns: A rendered HTML page containing a ReCaptcha challenge image
for the client to solve.
"""
return CaptchaProtectedResource.render_POST(self, request)
class ReCaptchaProtectedResource(CaptchaProtectedResource):
"""A web resource which uses the reCaptcha_ service.
.. _reCaptcha: http://www.google.com/recaptcha
"""
def __init__(self, remoteIP=None, **kwargs):
CaptchaProtectedResource.__init__(self, **kwargs)
self.remoteIP = remoteIP
def _renderDeferred(self, checkedRequest):
"""Render this resource asynchronously.
:type checkedRequest: tuple
:param checkedRequest: A tuple of ``(bool, request)``, as returned
from :meth:`checkSolution`.
"""
try:
valid, request = checkedRequest
except Exception as err:
logging.error("Error in _renderDeferred(): %s" % err)
return
logging.debug("Attemping to render %svalid request %r"
% ('' if valid else 'in', request))
if valid is True:
try:
rendered = self.resource.render(request)
except Exception as err: # pragma: no cover
rendered = replaceErrorPage(request, err)
else:
logging.info("Client failed a CAPTCHA; redirecting to %s"
% request.uri)
rendered = redirectTo(request.uri, request)
try:
request.write(rendered)
request.finish()
except Exception as err: # pragma: no cover
logging.exception(err)
return request
def getCaptchaImage(self, request):
"""Get a CAPTCHA image from the remote reCaptcha server.
:type request: :api:`twisted.web.http.Request`
:param request: A client's initial request for some other resource
which is protected by this one (i.e. protected by a CAPTCHA).
:returns: A 2-tuple of ``(image, challenge)``, where::
- ``image`` is a string holding a binary, JPEG-encoded image.
- ``challenge`` is a unique string associated with the request.
"""
capt = captcha.ReCaptcha(self.publicKey, self.secretKey)
try:
capt.get()
except Exception as error:
logging.fatal("Connection to Recaptcha server failed: %s" % error)
if capt.image is None:
logging.warn("No CAPTCHA image received from ReCaptcha server!")
return (capt.image, capt.challenge)
def getRemoteIP(self):
"""Mask the client's real IP address with a faked one.
The fake client IP address is sent to the reCaptcha server, and it is
either the public IP address of bridges.torproject.org (if the config
option ``RECAPTCHA_REMOTE_IP`` is configured), or a random IP.
:rtype: str
:returns: A fake IP address to report to the reCaptcha API server.
"""
if self.remoteIP:
remoteIP = self.remoteIP
else:
# generate a random IP for the captcha submission
remoteIP = IPv4Address(random.randint(0, 2**32-1)).compressed
return remoteIP
def checkSolution(self, request):
"""Process a solved CAPTCHA by sending it to the ReCaptcha server.
The client's IP address is not sent to the ReCaptcha server; instead,
a completely random IP is generated and sent instead.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object, including POST arguments which
should include two key/value pairs: one key being
``'captcha_challenge_field'``, and the other,
``'captcha_response_field'``. These POST arguments should be
obtained from :meth:`render_GET`.
:rtupe: :api:`twisted.internet.defer.Deferred`
:returns: A deferred which will callback with a tuple in the following
form:
(:type:`bool`, :api:`twisted.web.server.Request`)
If the CAPTCHA solution was valid, a tuple will contain::
(True, Request)
Otherwise, it will contain::
(False, Request)
"""
challenge, response = self.extractClientSolution(request)
clientIP = self.getClientIP(request)
remoteIP = self.getRemoteIP()
logging.debug("Captcha from %r. Parameters: %r"
% (clientIP, request.args))
def checkResponse(solution, request):
"""Check the :class:`txrecaptcha.RecaptchaResponse`.
:type solution: :class:`txrecaptcha.RecaptchaResponse`.
:param solution: The client's CAPTCHA solution, after it has been
submitted to the reCaptcha API server.
"""
# This valid CAPTCHA result from this function cannot be reliably
# unittested, because it's callbacked to from the deferred
# returned by ``txrecaptcha.submit``, the latter of which would
# require networking (as well as automated CAPTCHA
# breaking). Hence, the 'no cover' pragma.
if solution.is_valid: # pragma: no cover
logging.info("Valid CAPTCHA solution from %r." % clientIP)
return (True, request)
else:
logging.info("Invalid CAPTCHA solution from %r: %r"
% (clientIP, solution.error_code))
return (False, request)
d = txrecaptcha.submit(challenge, response, self.secretKey,
remoteIP).addCallback(checkResponse, request)
return d
def render_GET(self, request):
"""Retrieve a ReCaptcha from the API server and serve it to the client.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object for 'bridges.html'.
:rtype: str
:returns: A rendered HTML page containing a ReCaptcha challenge image
for the client to solve.
"""
return CaptchaProtectedResource.render_GET(self, request)
def render_POST(self, request):
"""Process a client's CAPTCHA solution.
If the client's CAPTCHA solution is valid (according to
:meth:`checkSolution`), process and serve their original
request. Otherwise, redirect them back to a new CAPTCHA page.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object, including POST arguments which
should include two key/value pairs: one key being
``'captcha_challenge_field'``, and the other,
``'captcha_response_field'``. These POST arguments should be
obtained from :meth:`render_GET`.
:returns: :api:`twisted.web.server.NOT_DONE_YET`, in order to handle
the ``Deferred`` returned from :meth:`checkSolution`. Eventually,
when the ``Deferred`` request is done being processed,
:meth:`_renderDeferred` will handle rendering and displaying the
HTML to the client.
"""
self.setCSPHeader(request)
d = self.checkSolution(request)
d.addCallback(self._renderDeferred)
return NOT_DONE_YET
class BridgesResource(CustomErrorHandlingResource, CSPResource):
"""This resource displays bridge lines in response to a request."""
isLeaf = True
def __init__(self, distributor, schedule, N=1, useForwardedHeader=False,
includeFingerprints=True):
"""Create a new resource for displaying bridges to a client.
:type distributor: :class:`HTTPSDistributor`
:param distributor: The mechanism to retrieve bridges for this
distributor.
:type schedule: :class:`~bridgedb.schedule.ScheduledInterval`
:param schedule: The time period used to tweak the bridge selection
procedure.
:param int N: The number of bridges to hand out per query.
:param bool useForwardedHeader: Whether or not we should use the the
X-Forwarded-For header instead of the source IP address.
:param bool includeFingerprints: Do we include the bridge's
fingerprint in the response?
"""
gettext.install("bridgedb", unicode=True)
CSPResource.__init__(self)
self.distributor = distributor
self.schedule = schedule
self.nBridgesToGive = N
self.useForwardedHeader = useForwardedHeader
self.includeFingerprints = includeFingerprints
def render(self, request):
"""Render a response for a client HTTP request.
Presently, this method merely wraps :meth:`getBridgeRequestAnswer` to
catch any unhandled exceptions which occur (otherwise the server will
display the traceback to the client). If an unhandled exception *does*
occur, the client will be served the default "No bridges currently
available" HTML response page.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object containing the HTTP method, full
URI, and any URL/POST arguments and headers present.
:rtype: str
:returns: A plaintext or HTML response to serve.
"""
self.setCSPHeader(request)
try:
response = self.getBridgeRequestAnswer(request)
except Exception as err:
logging.exception(err)
response = self.renderAnswer(request)
return response
def getClientIP(self, request):
"""Get the client's IP address from the ``'X-Forwarded-For:'``
header, or from the :api:`request <twisted.web.server.Request>`.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object for a
:api:`twisted.web.resource.Resource`.
:rtype: ``None`` or :any:`str`
:returns: The client's IP address, if it was obtainable.
"""
return getClientIP(request, self.useForwardedHeader)
def getBridgeRequestAnswer(self, request):
"""Respond to a client HTTP request for bridges.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object containing the HTTP method, full
URI, and any URL/POST arguments and headers present.
:rtype: str
:returns: A plaintext or HTML response to serve.
"""
bridgeLines = None
interval = self.schedule.intervalStart(time.time())
ip = self.getClientIP(request)
logging.info("Replying to web request from %s. Parameters were %r"
% (ip, request.args))
if ip:
bridgeRequest = HTTPSBridgeRequest()
bridgeRequest.client = ip
bridgeRequest.isValid(True)
bridgeRequest.withIPversion(request.args)
bridgeRequest.withPluggableTransportType(request.args)
bridgeRequest.withoutBlockInCountry(request)
bridgeRequest.generateFilters()
bridges = self.distributor.getBridges(bridgeRequest, interval)
bridgeLines = [replaceControlChars(bridge.getBridgeLine(
bridgeRequest, self.includeFingerprints)) for bridge in bridges]
return self.renderAnswer(request, bridgeLines)
def getResponseFormat(self, request):
"""Determine the requested format for the response.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object containing the HTTP method, full
URI, and any URL/POST arguments and headers present.
:rtype: ``None`` or str
:returns: The argument of the first occurence of the ``format=`` HTTP
GET parameter, if any were present. (The only one which currently
has any effect is ``format=plain``, see note in
:meth:`renderAnswer`.) Otherwise, returns ``None``.
"""
format = request.args.get("format", None)
if format and len(format):
format = format[0] # Choose the first arg
return format
def renderAnswer(self, request, bridgeLines=None):
"""Generate a response for a client which includes **bridgesLines**.
.. note: The generated response can be plain or HTML. A plain response
looks like::
voltron 1.2.3.4:1234 ABCDEF01234567890ABCDEF01234567890ABCDEF
voltron 5.5.5.5:5555 0123456789ABCDEF0123456789ABCDEF01234567
That is, there is no HTML, what you see is what you get, and what
you get is suitable for pasting directly into Tor Launcher (or
into a torrc, if you prepend ``"Bridge "`` to each line). The
plain format can be requested from BridgeDB's web service by
adding an ``&format=plain`` HTTP GET parameter to the URL. Also
note that you won't get a QRCode, usage instructions, error
messages, or any other fanciness if you use the plain format.
:type request: :api:`twisted.web.http.Request`
:param request: A ``Request`` object containing the HTTP method, full
URI, and any URL/POST arguments and headers present.
:type bridgeLines: list or None
:param bridgeLines: A list of strings used to configure a Tor client
to use a bridge. If ``None``, then the returned page will instead
explain that there were no bridges of the type they requested,
with instructions on how to proceed.
:rtype: str
:returns: A plaintext or HTML response to serve.
"""
rtl = False
format = self.getResponseFormat(request)
if format == 'plain':
request.setHeader("Content-Type", "text/plain")
try:
rendered = bytes('\n'.join(bridgeLines))
except Exception as err:
rendered = replaceErrorPage(request, err, html=False)
else:
request.setHeader("Content-Type", "text/html; charset=utf-8")
qrcode = None
qrjpeg = generateQR(bridgeLines)
if qrjpeg:
qrcode = 'data:image/jpeg;base64,%s' % base64.b64encode(qrjpeg)
try:
langs = translations.getLocaleFromHTTPRequest(request)
rtl = translations.usingRTLLang(langs)
template = lookup.get_template('bridges.html')
rendered = template.render(strings,
rtl=rtl,
lang=langs[0],
answer=bridgeLines,
qrcode=qrcode)
except Exception as err:
rendered = replaceErrorPage(request, err)
return rendered
def addWebServer(config, distributor):
"""Set up a web server for HTTP(S)-based bridge distribution.
:type config: :class:`bridgedb.persistent.Conf`
:param config: A configuration object from
:mod:`bridgedb.Main`. Currently, we use these options::
HTTP_UNENCRYPTED_PORT
HTTP_UNENCRYPTED_BIND_IP
HTTP_USE_IP_FROM_FORWARDED_HEADER
HTTPS_N_BRIDGES_PER_ANSWER
HTTPS_INCLUDE_FINGERPRINTS
HTTPS_KEY_FILE
HTTPS_CERT_FILE
HTTPS_PORT
HTTPS_BIND_IP
HTTPS_USE_IP_FROM_FORWARDED_HEADER
HTTPS_ROTATION_PERIOD
RECAPTCHA_ENABLED
RECAPTCHA_PUB_KEY
RECAPTCHA_SEC_KEY
RECAPTCHA_REMOTEIP
GIMP_CAPTCHA_ENABLED
GIMP_CAPTCHA_DIR
GIMP_CAPTCHA_HMAC_KEYFILE
GIMP_CAPTCHA_RSA_KEYFILE
SERVER_PUBLIC_FQDN
CSP_ENABLED
CSP_REPORT_ONLY
CSP_INCLUDE_SELF
:type distributor: :class:`bridgedb.https.distributor.HTTPSDistributor`
:param distributor: A bridge distributor.
:raises SystemExit: if the servers cannot be started.
:rtype: :api:`twisted.web.server.Site`
:returns: A webserver.
"""
captcha = None
fwdHeaders = config.HTTP_USE_IP_FROM_FORWARDED_HEADER
numBridges = config.HTTPS_N_BRIDGES_PER_ANSWER
fprInclude = config.HTTPS_INCLUDE_FINGERPRINTS
logging.info("Starting web servers...")
setFQDN(config.SERVER_PUBLIC_FQDN)
index = IndexResource()
options = OptionsResource()
howto = HowtoResource()
robots = static.File(os.path.join(TEMPLATE_DIR, 'robots.txt'))
assets = static.File(os.path.join(TEMPLATE_DIR, 'assets/'))
keys = static.Data(bytes(strings.BRIDGEDB_OPENPGP_KEY), 'text/plain')
csp = CSPResource(enabled=config.CSP_ENABLED,
includeSelf=config.CSP_INCLUDE_SELF,
reportViolations=config.CSP_REPORT_ONLY,
useForwardedHeader=fwdHeaders)
root = CustomErrorHandlingResource()
root.putChild('', index)
root.putChild('robots.txt', robots)
root.putChild('keys', keys)
root.putChild('assets', assets)
root.putChild('options', options)
root.putChild('howto', howto)
root.putChild('maintenance', maintenance)
root.putChild('error', resource500)
root.putChild(CSPResource.reportURI, csp)
if config.RECAPTCHA_ENABLED:
publicKey = config.RECAPTCHA_PUB_KEY
secretKey = config.RECAPTCHA_SEC_KEY
captcha = partial(ReCaptchaProtectedResource,
remoteIP=config.RECAPTCHA_REMOTEIP)
elif config.GIMP_CAPTCHA_ENABLED:
# Get the master HMAC secret key for CAPTCHA challenges, and then
# create a new HMAC key from it for use on the server.
captchaKey = crypto.getKey(config.GIMP_CAPTCHA_HMAC_KEYFILE)
hmacKey = crypto.getHMAC(captchaKey, "Captcha-Key")
# Load or create our encryption keys:
secretKey, publicKey = crypto.getRSAKey(config.GIMP_CAPTCHA_RSA_KEYFILE)
captcha = partial(GimpCaptchaProtectedResource,
hmacKey=hmacKey,
captchaDir=config.GIMP_CAPTCHA_DIR)
if config.HTTPS_ROTATION_PERIOD:
count, period = config.HTTPS_ROTATION_PERIOD.split()
sched = ScheduledInterval(count, period)
else:
sched = Unscheduled()
bridges = BridgesResource(distributor, sched, numBridges, fwdHeaders,
includeFingerprints=fprInclude)
if captcha:
# Protect the 'bridges' page with a CAPTCHA, if configured to do so:
protected = captcha(publicKey=publicKey,
secretKey=secretKey,
useForwardedHeader=fwdHeaders,
protectedResource=bridges)
root.putChild('bridges', protected)
logging.info("Protecting resources with %s." % captcha.func.__name__)
else:
root.putChild('bridges', bridges)
site = Site(root)
site.displayTracebacks = False
if config.HTTP_UNENCRYPTED_PORT: # pragma: no cover
ip = config.HTTP_UNENCRYPTED_BIND_IP or ""
port = config.HTTP_UNENCRYPTED_PORT or 80
try:
reactor.listenTCP(port, site, interface=ip)
except CannotListenError as error:
raise SystemExit(error)
logging.info("Started HTTP server on %s:%d" % (str(ip), int(port)))
if config.HTTPS_PORT: # pragma: no cover
ip = config.HTTPS_BIND_IP or ""
port = config.HTTPS_PORT or 443
try:
from twisted.internet.ssl import DefaultOpenSSLContextFactory
factory = DefaultOpenSSLContextFactory(config.HTTPS_KEY_FILE,
config.HTTPS_CERT_FILE)
reactor.listenSSL(port, site, factory, interface=ip)
except CannotListenError as error:
raise SystemExit(error)
logging.info("Started HTTPS server on %s:%d" % (str(ip), int(port)))
return site
|