mirror of
https://github.com/pinry/pinry.git
synced 2026-03-18 10:00:54 +01:00
Fix url regexp.
\d allows numbers from other digit systems, so urls like: http://demo.getpinry.com/१७/ are possible. This could lead to some nasty security issues in the future (ie. if you try to use pin number without using `int(...)`).
This commit is contained in:
@@ -30,7 +30,7 @@ urlpatterns = patterns('',
|
||||
name='tag-pins'),
|
||||
url(r'^pins/user/(?P<user>(\w|-)+)/$', TemplateView.as_view(template_name='core/pins.html'),
|
||||
name='user-pins'),
|
||||
url(r'^(?P<pin>\d+)/$', TemplateView.as_view(template_name='core/pins.html'),
|
||||
url(r'^(?P<pin>[0-9]+)/$', TemplateView.as_view(template_name='core/pins.html'),
|
||||
name='recent-pins'),
|
||||
url(r'^$', TemplateView.as_view(template_name='core/pins.html'),
|
||||
name='recent-pins'),
|
||||
|
||||
Reference in New Issue
Block a user