I'm reporting these because we have had a Chinese IP trying to SQL-inject one of our installations. There is no security issue AFAICT: one would just get a 500 (ValueError: invalid literal for int()...) instead of a 404 on such attempts.
src/transform/urls.py
10 re_path(r'^galley/(?P<galley_id>.+?)/generate-pdf/$', views.cassius_generate,
13 re_path(r'^galley/(?P<galley_id>.+?)/generate-epub/$', views.epub_generate,
^^^
src/journal/urls.py
64 re_path(r'^funder_articles/(?P<funder_id>.+)$', views.funder_articles, name='funder_articles'),
^^
I'm reporting these because we have had a Chinese IP trying to SQL-inject one of our installations. There is no security issue AFAICT: one would just get a 500 (
ValueError: invalid literal for int()...) instead of a 404 on such attempts.