Feature #752
closedmySQL auth
Description
This patch allows lighttpd to authenticate users against mySQL DBbr
NOTE: Only basic auth is implemented. Passwords are stored as MD5 hash in DB
br" class="external">lighttpd-1.4.11-mysql_auth.patch</a>
lighttpd-1.4.11-mysql_auth.sql
br
tar xzvf lighttpd-1.4.11.tar.gz # (unpack source) patch -p0 < lighttpd-1.4.11-mysql_auth.patch # (apply patch) cd lighttpd-1.4.11 ./configure --with-mysql # (add more options if you want) make make install
make mysql db and user (read mySQL doc's if you don't know how)br
import lighttpd-1.4.11-mysql_auth.sql
open lighttpd.conf and addbr
(be sure that you comment out any other auth - according to lighttpd docs)
br
auth.backend = "mysql" auth.backend.mysql.host = "localhost" auth.backend.mysql.user = "db_user" auth.backend.mysql.pass = "db_pass" auth.backend.mysql.db = "db_name" auth.backend.mysql.port = "0" # (for default port 0, always needed) auth.backend.mysql.socket = "" # (for default leave blank, always needed) auth.backend.mysql.users_table = "users_table" auth.backend.mysql.col_user = "col_name_username" auth.backend.mysql.col_pass = "col_name_password" # (md5 hash of password) auth.backend.mysql.col_realm = "col_realm_name"
configure lighttpd to use it (same as every other auth)
auth.require = ( "/some_path" => ( "method" => "basic", "realm" => "some_realm", "require" => "some_user", ) )
start lighttpd
test & Njoy
P.S. patch include more complicated setup with separate table for domains.
If you are interested please contact with me to obtain more information.
Bugs, Patches and Suggestions
Send me E-Mail: drJeckyll@Jeckyll.net
original version is located here
-- drJeckyll
Files
Updated by Anonymous about 17 years ago
Is there a patch to the current version 1.4.18? I tried it myself to merge the 1.4.11-patch to this version, but it didn't work...
-- johann
Updated by Anonymous almost 17 years ago
This patch work fine for me> johann.
But i think this patch has SQL Injection probrem.
i think it should use mysql_real_escape_string().
such as attached file.
but i think this version still has a probrem.
i think all of MySQL related lines should be in #ifdef HAVE_MYSQL ... #endif.
Sorry i could not resolve this probrem.
i read ldap related lines. i think there are many ldap line at outside ifdef. i can't understand it. sorry.
-- taguchi
Updated by Anonymous almost 17 years ago
Thanks for your reply. I will try the patch on this weekend (if there is time to).
If i got my lighty running with mysql-auth, ill try to add mysql_real_escape_string() but C is not even rudimental my preferred language :)
Best regards,
Johann
-- johann
Updated by Anonymous over 16 years ago
Sorry, for the late response:
I tried the latest patch, but it doesnt worked for me. Patching and build was fine, but on restart after configuration, i got:
2008-03-21 14:27:37: (plugin.c.165) dlopen() failed for: /usr/lib/lighttpd/mod_auth.so /usr/lib/lighttpd/mod_auth.so: undefined symbol: mysql_query 2008-03-21 14:27:37: (server.c.621) loading plugins finally failed
The System is a Gentoo Linux with mysql installed and mysql-support in lighttpd.
Sorry, but atm i have no time to dig deeper...
-- johann
Updated by stbuehler over 16 years ago
Looks like the module is not linked against mysql; so you either need to fix the Makefile.am or load the mysql-vhost module before mod_auth so mysql is already loaded
Updated by Anonymous over 16 years ago
DrJeckyll's latest patch made my 1.4.19 segfault, so I've here's my version, based on the one by Taguchi.
I've also added support for digest authentication, in which the 'password' field should look like this:
MD5(CONCAT(username,':',realm,':',plaintext_password))
This is easy to use when you create a MySQL view:
CREATE VIEW digest AS SELECT username AS username, MD5(CONCAT(username,':',realm,':',password)) AS password, realm AS realm FROM auth
Updated by Ben. about 15 years ago
Does it work with 1.4.23 as well?
Are the bugs and security issues fixed?
Thanks for input.
Updated by Zolen about 15 years ago
I edit and test patch for 1.4.23.
Updated by wica over 13 years ago
I have edit (changed 1.4.23 to 1.4.28) and tested the patch 03_all_lighttpd-1.4.23-mysql_auth.diff for lighttpd-1.4.28
And it looks oke :)
Ps. patch works fine with the ubuntu packages in 10.04 LTS
Updated by wica over 13 years ago
wica wrote:
I have edit (changed 1.4.23 to 1.4.28) and tested the patch 03_all_lighttpd-1.4.23-mysql_auth.diff for lighttpd-1.4.28
And it looks oke :)Ps. patch works fine with the ubuntu packages in 10.04 LTS ( lighttpd-1.4.26 )
Updated by lordbone over 12 years ago
- Target version set to 1.4.x
Compiling the 1.4.28 patch against the current lighty version (1.4.31) doesn't seem to work.
1.4.28 - works! (tested)
1.4.29 - works! (tested)
1.4.30 - breaks compile (tested)
1.4.31 - breaks compile (tested)
http_auth.c: In function 'http_auth_basic_password_compare': http_auth.c:987:24: error: 'MD5_CTX' undeclared (first use in this function) http_auth.c:987:24: note: each undeclared identifier is reported only once for each function it appears in http_auth.c:987:32: error: expected ';' before 'Md5Ctx' http_auth.c:991:24: warning: implicit declaration of function 'MD5_Init' http_auth.c:991:34: error: 'Md5Ctx' undeclared (first use in this function) http_auth.c:992:24: warning: implicit declaration of function 'MD5_Update' http_auth.c:993:24: warning: implicit declaration of function 'MD5_Final'
Taking a look at the changelog, I've spotted this:
[mod_auth] Fix signedness error in http_auth (CVE-2011-4362)
Any1 want to take a shot at writing a patch for 1.4.x ?
Updated by gstrauss over 8 years ago
- Related to Feature #687: mysql support in mod_auth added
Updated by gstrauss over 8 years ago
- Description updated (diff)
- Category changed from core to mod_auth
- Assignee deleted (
jan)
Updated by gstrauss over 8 years ago
- Related to deleted (Feature #687: mysql support in mod_auth)
Updated by gstrauss over 8 years ago
- Has duplicate Feature #687: mysql support in mod_auth added
Updated by gstrauss over 8 years ago
- Related to Feature #1057: Auth using database added
Updated by gstrauss over 8 years ago
- Related to deleted (Feature #1057: Auth using database)
Updated by gstrauss over 8 years ago
- Has duplicate Feature #1057: Auth using database added
Updated by gstrauss over 8 years ago
moo noted in #1057: db querying is not async, [...] why not make fcgi app for this?
Updated by gstrauss over 8 years ago
- Related to Feature #1845: MySQL Digest Authentication added
Updated by gstrauss over 8 years ago
FYI: FreeBSD has a set of patches at https://svnweb.freebsd.org/ports/head/www/lighttpd/files/ for auth with mysql
Updated by gstrauss about 8 years ago
Updated by gstrauss about 8 years ago
- Target version changed from 1.4.x to 1.4.42
Updated by gstrauss about 8 years ago
- Status changed from New to Fixed
- % Done changed from 0 to 100
Applied in changeset ae91578895bd7239d1bfd9f73d75a2039cb26ae3.
Also available in: Atom