Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: LayoutTests/http/tests/security/xssAuditor/resources/echo-form-action.pl

Issue 1179633002: Prevent linear-time forcing of tokens by inducing XSSAuditor page blocks. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Style. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/perl -wT 1 #!/usr/bin/perl -wT
2 use strict; 2 use strict;
3 use CGI; 3 use CGI;
4 4
5 my $cgi = new CGI; 5 my $cgi = new CGI;
6 my $action = $cgi->param('q');
7 if ($cgi->param('add-token')) {
8 $action = $action . "&tok=12345678";
9 }
6 10
7 print "Content-Type: text/html; charset=UTF-8\n\n"; 11 print "Content-Type: text/html; charset=UTF-8\n\n";
8 12
9 print "<!DOCTYPE html>\n"; 13 print "<!DOCTYPE html>\n";
10 print "<html>\n"; 14 print "<html>\n";
11 print "<body>\n"; 15 print "<body>\n";
12 print "<p>This is an iframe with a injected form</p>\n"; 16 print "<p>This is an iframe with a injected form</p>\n";
13 print "<form method=\"post\" id=\"login\" action=\"".$cgi->param('q')."\"></form >\n"; 17 print "<form method=\"post\" id=\"login\" action=\"".$action."\"></form>\n";
14 print "<script>if (window.testRunner) testRunner.notifyDone();</script>\n"; 18 print "<script>if (window.testRunner) testRunner.notifyDone();</script>\n";
15 print "</body>\n"; 19 print "</body>\n";
16 print "</html>\n"; 20 print "</html>\n";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698