mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
Apply network block middleware on all POSTs
This commit is contained in:
parent
641d156128
commit
611e0f6ea9
1 changed files with 10 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
import socket
|
||||
from django.http import HttpResponseBadRequest
|
||||
|
||||
tor_bl = (
|
||||
'{remote_addr}.{server_port}.{server_ip}'
|
||||
|
@ -6,6 +7,12 @@ tor_bl = (
|
|||
open_proxy_bl = ('{remote_addr}.dnsbl.proxybl.org')
|
||||
rev_ip = lambda ip: '.'.join(reversed(ip.split('.')))
|
||||
|
||||
response = """<html><body><h1>Access denied</h1>
|
||||
<p>It appears you're requesting this page from an open proxy or
|
||||
the TOR network. These networks are blocked due to numerous
|
||||
statutory violation related posts in the past.</p>
|
||||
<p>If you think this is wrong, <a href="https://github.com/bartTC/dpaste">file
|
||||
a bug on Github please</a>.</p></body></html>"""
|
||||
|
||||
def in_blacklist(request, bl, ip=None):
|
||||
ip = ip or request.META['REMOTE_ADDR']
|
||||
|
@ -52,3 +59,6 @@ class SuspiciousIPMiddleware(object):
|
|||
return request.is_tor_exit_node() or request.is_open_proxy()
|
||||
|
||||
request.is_suspicious = check_suspicious
|
||||
|
||||
if request.method == 'POST' and request.is_suspicious():
|
||||
return HttpResponseBadRequest(response)
|
||||
|
|
Loading…
Reference in a new issue