summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2011-07-08 15:04:12 +0200
committerKarolin Seeger <kseeger@samba.org>2011-07-24 21:27:22 +0200
commit6ea5fac27f2fef35ea12c24250948e00245aacee (patch)
treef6e42b75d53640440e4b793572a508b0428726e4
parentd499c09fc7bf6d86e9694bc8dc60b96c80d94c35 (diff)
downloadsamba-6ea5fac27f2fef35ea12c24250948e00245aacee.tar.gz
s3 swat: Add XSRF protection to globals page
Signed-off-by: Kai Blin <kai@samba.org>
-rw-r--r--source3/web/swat.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c
index 30bc2964d2f..5dab7c78815 100644
--- a/source3/web/swat.c
+++ b/source3/web/swat.c
@@ -921,9 +921,14 @@ static void globals_page(void)
{
unsigned int parm_filter = FLAG_BASIC;
int mode = 0;
+ const char form_name[] = "globals";
printf("<H2>%s</H2>\n", _("Global Parameters"));
+ if (!verify_xsrf_token(form_name)) {
+ goto output_page;
+ }
+
if (cgi_variable("Commit")) {
commit_parameters(GLOBAL_SECTION_SNUM);
save_reload(0);
@@ -936,7 +941,9 @@ static void globals_page(void)
if ( cgi_variable("AdvMode"))
mode = 1;
+output_page:
printf("<form name=\"swatform\" method=post action=globals>\n");
+ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
ViewModeBoxes( mode );
switch ( mode ) {