summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2011-07-08 15:03:15 +0200
committerKarolin Seeger <kseeger@samba.org>2011-07-24 20:45:41 +0200
commit94f8482607a175c44436fae456fbda3624629982 (patch)
treee2ae167e4164a982160bdf566fcab9751419347f
parentba996f0ae87f6bf4f19a4918e44dbd6d44a96561 (diff)
downloadsamba-94f8482607a175c44436fae456fbda3624629982.tar.gz
samba-94f8482607a175c44436fae456fbda3624629982.tar.xz
samba-94f8482607a175c44436fae456fbda3624629982.zip
s3 swat: Add XSRF protection to wizard_params page
Signed-off-by: Kai Blin <kai@samba.org>
-rw-r--r--source/web/swat.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/web/swat.c b/source/web/swat.c
index 647126fc280..b7eec4a88aa 100644
--- a/source/web/swat.c
+++ b/source/web/swat.c
@@ -697,18 +697,25 @@ output_page:
static void wizard_params_page(void)
{
unsigned int parm_filter = FLAG_WIZARD;
+ const char form_name[] = "wizard_params";
/* Here we first set and commit all the parameters that were selected
in the previous screen. */
printf("<H2>%s</H2>\n", _("Wizard Parameter Edit Page"));
+ if (!verify_xsrf_token(form_name)) {
+ goto output_page;
+ }
+
if (cgi_variable("Commit")) {
commit_parameters(GLOBAL_SECTION_SNUM);
save_reload(0);
}
+output_page:
printf("<form name=\"swatform\" method=post action=wizard_params>\n");
+ print_xsrf_token(cgi_user_name(), cgi_user_pass(), form_name);
if (have_write_access) {
printf("<input type=submit name=\"Commit\" value=\"Commit Changes\">\n");