From: Marius Gavrilescu Date: Thu, 27 Feb 2014 14:50:20 +0000 (+0200) Subject: Restrict submit size to 25KB X-Git-Url: http://git.ieval.ro/?p=gruntmaster-page.git;a=commitdiff_plain;h=fcd3a29c3144870f2a418a0dbf6093da26e6709f Restrict submit size to 25KB --- diff --git a/lib/Gruntmaster/Page/Submit.pm b/lib/Gruntmaster/Page/Submit.pm index 569fe91..ea67c2b 100644 --- a/lib/Gruntmaster/Page/Submit.pm +++ b/lib/Gruntmaster/Page/Submit.pm @@ -24,6 +24,7 @@ sub generate{ die if defined $contest && $contest !~ /^\w+$/ ; die if defined $contest && (time > contest_end $contest); return reply 'A required parameter was not supplied' if grep { !defined } $problem, $format, $prog; + return reply 'Maximum source size is 10KB' if length $prog > 25 * 1024; return reply 'You must wait 30 seconds between jobs' unless time > lastjob ($r->user) + 30; set_lastjob $r->user;