changeset 841:0649883de4d3

mod_password_policy: Initial commit.
author Waqas Hussain <waqas20@gmail.com>
date Fri, 05 Oct 2012 05:49:22 +0500
parents f568661c9d39
children 32df4d13f178
files mod_password_policy/mod_password_policy.lua
diffstat 1 files changed, 53 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_password_policy/mod_password_policy.lua	Fri Oct 05 05:49:22 2012 +0500
@@ -0,0 +1,53 @@
+-- Password policy enforcement for Prosody
+--
+-- Copyright (C) 2012 Waqas Hussain
+--
+--
+-- Configuration:
+--    password_policy = {
+--        length = 8;
+--    }
+
+
+local options = module:get_option("password_policy");
+
+options = options or {};
+options.length = options.length or 8;
+
+local st = require "util.stanza";
+
+function check_password(password)
+	return #password <= options.length;
+end
+
+function handler(event)
+	local origin, stanza = event.origin, event.stanza;
+
+	if stanza.attr.type == "set" then
+		local query = stanza.tags[1];
+
+		local passwords = {};
+
+		local dataform = query:get_child("x", "jabber:x:data");
+		if dataform then
+			for _,tag in ipairs(dataform.tags) do
+				if tag.attr.var == "password" then
+					table.insert(passwords, tag:get_child_text("value"));
+				end
+			end
+		end
+
+		table.insert(passwords, query:get_child_text("password"));
+
+		for _,password in ipairs(passwords) do
+			if password and not check_password(password) then
+				origin.send(st.error_reply(stanza, "cancel", "not-acceptable", "Please use a longer password."));
+				return true;
+			end
+		end
+	end
+end
+
+module:hook("iq/self/jabber:iq:register:query", handler, 10);
+module:hook("iq/host/jabber:iq:register:query", handler, 10);
+module:hook("stanza/iq/jabber:iq:register:query", handler, 10);