diff options
author | Kai Blin <kai@samba.org> | 2011-07-08 12:56:21 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-07-26 22:22:25 +0200 |
commit | b7521dc7566fbd8bfb8a09f391ce0cd8c7f18e14 (patch) | |
tree | 8128785d00ee12119e34080c057b83d4e5bb03e5 | |
parent | cc86a11b9eb4cc5e3aeb45dbfe2edf3e9d05b7db (diff) | |
download | samba-b7521dc7566fbd8bfb8a09f391ce0cd8c7f18e14.tar.gz samba-b7521dc7566fbd8bfb8a09f391ce0cd8c7f18e14.tar.xz samba-b7521dc7566fbd8bfb8a09f391ce0cd8c7f18e14.zip |
s3 swat: Allow getting the user's HTTP auth password
Signed-off-by: Kai Blin <kai@samba.org>
-rw-r--r-- | source3/web/cgi.c | 9 | ||||
-rw-r--r-- | source3/web/swat_proto.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/source3/web/cgi.c b/source3/web/cgi.c index cc31eef97e5..4bd24b72f17 100644 --- a/source3/web/cgi.c +++ b/source3/web/cgi.c @@ -46,6 +46,7 @@ static char *query_string; static const char *baseurl; static char *pathinfo; static char *C_user; +static char *C_pass; static bool inetd_server; static bool got_request; @@ -401,6 +402,7 @@ static bool cgi_handle_authorization(char *line) /* Save the users name */ C_user = SMB_STRDUP(user); + C_pass = SMB_STRDUP(user_pass); TALLOC_FREE(pass); return True; } @@ -435,6 +437,13 @@ char *cgi_user_name(void) return(C_user); } +/*************************************************************************** +return a ptr to the users password + ***************************************************************************/ +char *cgi_user_pass(void) +{ + return(C_pass); +} /*************************************************************************** handle a file download diff --git a/source3/web/swat_proto.h b/source3/web/swat_proto.h index 0f84e4f4ce4..76f9c3c68f1 100644 --- a/source3/web/swat_proto.h +++ b/source3/web/swat_proto.h @@ -31,6 +31,7 @@ const char *cgi_variable(const char *name); const char *cgi_variable_nonull(const char *name); bool am_root(void); char *cgi_user_name(void); +char *cgi_user_pass(void); void cgi_setup(const char *rootdir, int auth_required); const char *cgi_baseurl(void); const char *cgi_pathinfo(void); |