Apache Basic Authentication: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
==Install==
==Install==
<source lang="bash">
<syntaxhighlight lang="bash">
apt -y install mariadb-server mariadb-client
apt -y install mariadb-server mariadb-client
apt install libaprutil1-dbd-mysql
apt install libaprutil1-dbd-mysql
</source>
</syntaxhighlight>


<source lang="bash">
<syntaxhighlight lang="bash">
a2enmod dbd
a2enmod dbd
a2enmod authn_dbd
a2enmod authn_dbd
a2enmod authz_dbd
a2enmod authz_dbd
a2enmod authn_socache
a2enmod authn_socache
</source>
</syntaxhighlight>


<source lang="bash">
<syntaxhighlight lang="bash">
systemctl restart mysql
systemctl restart mysql
update-rc.d mysql enable
update-rc.d mysql enable
</source>
</syntaxhighlight>


<source lang="bash">
<syntaxhighlight lang="bash">
systemctl restart apache2
systemctl restart apache2
update-rc.d apache2 enable
update-rc.d apache2 enable
</source>
</syntaxhighlight>


==Config==
==Config==
<source lang="apache">
<syntaxhighlight lang="apache">
<VirtualHost *:80>
<VirtualHost *:80>
     ServerName pi4.dev.shahed.biz
     ServerName pi4.dev.shahed.biz
Line 61: Line 61:
     CustomLog ${APACHE_LOG_DIR}/access.log combined
     CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
</VirtualHost>
</source>
</syntaxhighlight>


==Query==
==Query==
Line 67: Line 67:
{|
{|
| valign="top" |
| valign="top" |
<source lang="sql">
<syntaxhighlight lang="sql">
SELECT
SELECT
     u.user_pass AS "password"
     u.user_pass AS "password"
Line 86: Line 86:
WHERE
WHERE
     user_name = '&user_name';
     user_name = '&user_name';
</source>
</syntaxhighlight>


| valign="top" |
| valign="top" |
<source lang="sql">
<syntaxhighlight lang="sql">
--
--
-- find groups by user
-- find groups by user
Line 108: Line 108:
     AND a.is_active = 1
     AND a.is_active = 1
     AND g.is_active = 1;
     AND g.is_active = 1;
</source>
</syntaxhighlight>
|}
|}


Line 114: Line 114:
{|
{|
| valign="top" |
| valign="top" |
<source lang="sql">
<syntaxhighlight lang="sql">
SELECT
SELECT
     u.user_pass  AS "password"
     u.user_pass  AS "password"
Line 133: Line 133:
WHERE
WHERE
     user_name = 'user_name';
     user_name = 'user_name';
</source>
</syntaxhighlight>


| valign="top" |
| valign="top" |
<source lang="sql">
<syntaxhighlight lang="sql">
--
--
-- find groups by user
-- find groups by user
Line 155: Line 155:
     AND a.is_active = 1
     AND a.is_active = 1
     AND g.is_active = 1;
     AND g.is_active = 1;
</source>
</syntaxhighlight>
|}
|}


Line 161: Line 161:
{|
{|
| valign="top" |
| valign="top" |
<source lang="sql">
<syntaxhighlight lang="sql">
SELECT
SELECT
     u.user_pass  AS "password"
     u.user_pass  AS "password"
Line 180: Line 180:
WHERE
WHERE
     user_name = 'user_name';
     user_name = 'user_name';
</source>
</syntaxhighlight>


| valign="top" |
| valign="top" |
<source lang="sql">
<syntaxhighlight lang="sql">
--
--
-- find groups by user
-- find groups by user
Line 202: Line 202:
     AND a.is_active = 1
     AND a.is_active = 1
     AND g.is_active = 1;
     AND g.is_active = 1;
</source>
</syntaxhighlight>
|}
|}


==MySQL Apache User==
==MySQL Apache User==
<source lang="sql">
<syntaxhighlight lang="sql">
CREATE USER 'apache'@'%' IDENTIFIED VIA mysql_native_password USING 'p@$$w0rd';
CREATE USER 'apache'@'%' IDENTIFIED VIA mysql_native_password USING 'p@$$w0rd';
GRANT USAGE ON *.* TO 'apache'@'%' REQUIRE NONE WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0;
GRANT USAGE ON *.* TO 'apache'@'%' REQUIRE NONE WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0;
CREATE DATABASE IF NOT EXISTS `apache`;
CREATE DATABASE IF NOT EXISTS `apache`;
GRANT ALL PRIVILEGES ON `apache`.* TO 'apache'@'%';
GRANT ALL PRIVILEGES ON `apache`.* TO 'apache'@'%';
</source>
</syntaxhighlight>


==Knowledge==
==Knowledge==
<source lang="bash">
<syntaxhighlight lang="bash">
ls -lah /usr/lib/apache2/modules/mod_authn_socache.so
ls -lah /usr/lib/apache2/modules/mod_authn_socache.so
htpasswd -nbs system p@$$w0rd
htpasswd -nbs system p@$$w0rd
htpasswd -nbs admin p@$$w0rd
htpasswd -nbs admin p@$$w0rd
htpasswd -nb user p@$$w0rd
htpasswd -nb user p@$$w0rd
</source>
</syntaxhighlight>


==References==
==References==
{|
|valign='top'|
* [https://httpd.apache.org/docs/2.4/mod/mod_authn_dbd.html User authentication using an SQL database]
* [https://httpd.apache.org/docs/2.4/mod/mod_authn_dbd.html User authentication using an SQL database]
* [https://httpd.apache.org/docs/2.4/mod/mod_authz_dbd.html Group Authorization and Login using SQL]
* [https://httpd.apache.org/docs/2.4/mod/mod_authz_dbd.html Group Authorization and Login using SQL]
Line 232: Line 234:
* [[Apache/AutoIndex]]
* [[Apache/AutoIndex]]
* [[Apache/Proxy]]
* [[Apache/Proxy]]
|valign='top'|
* [[Security/Certificate|Security » Certificate]]
* [[Security/Password|Security » Password]]
* [[ZA Proxy|Security » ZA Proxy]]
* [[Spring Security|Security » Spring]]
* [[HTTP Security|Security » HTTP]]
* [[Java/Security|Security » Java]]
|valign='top'|
|-
|colspan='3'|
----
|-
|valign='top'|
|valign='top'|
|valign='top'|
|}

Revision as of 08:57, 26 May 2025

Install

apt -y install mariadb-server mariadb-client
apt install libaprutil1-dbd-mysql
a2enmod dbd
a2enmod authn_dbd
a2enmod authz_dbd
a2enmod authn_socache
systemctl restart mysql
update-rc.d mysql enable
systemctl restart apache2
update-rc.d apache2 enable

Config

<VirtualHost *:80>
    ServerName pi4.dev.shahed.biz
    ServerAdmin admin@dev.shahed.biz
    DocumentRoot /var/www/html

    DBDMin  4
    DBDKeep 8
    DBDMax  20
    DBDExptime 300
    DBDriver mysql
    DBDParams "host=127.0.0.1,port=3306,user=apache,pass=password,dbname=apache"

    Alias /soft "/var/www/soft/"
    <Directory "/var/www/soft">
        AuthType Basic
        AuthName Academia
        AuthBasicProvider dbd

        Require valid-user
        Require dbd-group Admin
        Require dbd-group System
        Options Indexes MultiViews FollowSymLinks

        AuthDBDUserPWQuery \
            "SELECT u.password FROM m00te00x00 u WHERE u.username = %s AND u.deleted_at IS NULL and u.deleted_by IS NULL AND IFNULL(u.is_signed_in, 0) = 0 AND IFNULL(u.is_activated, 0) = 1 AND IFNULL(u.is_unlocked, 0) = 1 AND IFNULL(u.user_expired_at, SYSDATE() + INTERVAL 1 DAY) > SYSDATE() AND IFNULL(u.pass_expired_at, SYSDATE() + INTERVAL 1 DAY) > SYSDATE()"

#       AuthDBDUserRealmQuery \
#           "SELECT u.password FROM m00te00x00 u LEFT JOIN m00tj01x00 j ON u.id = j.user_id LEFT JOIN m00ts01x00 r ON j.realm_id = r.id WHERE u.username = %s AND r.name = %s AND u.deleted_at IS NULL AND u.deleted_by IS NULL AND j.deleted_at IS NULL AND j.deleted_by IS NULL AND r.deleted_at IS NULL AND r.deleted_by IS NULL AND IFNULL(u.is_signed_in, 0) = 0 AND IFNULL(u.is_activated, 0) = 1 AND IFNULL(u.is_unlocked , 0) = 1 AND IFNULL(r.is_activated, 0) = 1 AND IFNULL(u.user_expired_at, SYSDATE() + INTERVAL 1 DAY) > SYSDATE() AND IFNULL(u.pass_expired_at, SYSDATE() + INTERVAL 1 DAY) > SYSDATE() AND IFNULL(r.expired_at, SYSDATE() + INTERVAL 1 DAY) > SYSDATE()"

        AuthzDBDQuery \
            "SELECT g.name FROM m00te00x00 u LEFT JOIN m00tj00x00 j ON u.id = j.user_id LEFT JOIN m00ts00x00 g ON j.group_id = g.id WHERE u.username = %s AND j.deleted_at IS NULL and j.deleted_by IS NULL AND g.deleted_at IS NULL and g.deleted_by IS NULL AND IFNULL(g.is_activated, 0) = 1 AND IFNULL(g.expired_at, SYSDATE() + INTERVAL 1 DAY) > SYSDATE()"

    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

Query

Oracle

SELECT
    u.user_pass AS "password"
FROM
    m00te00x00 u
WHERE
    u.user_name     = '&user_name'
    AND u.is_signin = 1
    AND u.is_active = 1
    AND u.is_locked = 0
    AND u.user_expired > trunc(sysdate)
    AND u.pass_expired > trunc(sysdate);

-- update sign in
UPDATE m00te00x00
SET
    is_signin = 1
WHERE
    user_name = '&user_name';
--
-- find groups by user
--
SELECT
    g.group_name AS "group"
FROM
    m00te00x00 u
    LEFT JOIN m00tj00x00 a ON u.user_code  = a.user_code
    LEFT JOIN m00ts00x00 g ON a.group_code = g.group_code
WHERE
    u.user_name     = '&user_name'
    AND u.is_signin = 1
    AND u.is_active = 1
    AND u.is_locked = 0
    AND u.user_expired > trunc(sysdate)
    AND u.pass_expired > trunc(sysdate)
    AND a.is_active = 1
    AND g.is_active = 1;

MySQL

SELECT
    u.user_pass  AS "password"
FROM
    m00te00x00 u
WHERE
    u.user_name     = 'user_name'
    AND u.is_signin = 1
    AND u.is_active = 1
    AND u.is_locked = 0
    AND u.user_expired > DATE(SYSDATE())
    AND u.pass_expired > DATE(SYSDATE());

-- update sign in
UPDATE m00te00x00
SET
    is_signin = 1
WHERE
    user_name = 'user_name';
--
-- find groups by user
--
SELECT
    g.group_name AS "group"
FROM
    m00te00x00 u
    LEFT JOIN m00tj00x00 a ON u.user_code  = a.user_code
    LEFT JOIN m00ts00x00 g ON a.group_code = g.group_code
WHERE
    u.user_name     = 'user_name'
    AND u.is_signin = 1
    AND u.is_active = 1
    AND u.is_locked = 0
    AND u.user_expired > DATE(SYSDATE())
    AND u.pass_expired > DATE(SYSDATE())
    AND a.is_active = 1
    AND g.is_active = 1;

PgSQL

SELECT
    u.user_pass  AS "password"
FROM
    m00te00x00 u
WHERE
    u.user_name     = 'user_name'
    AND u.is_signin = 1
    AND u.is_active = 1
    AND u.is_locked = 0
    AND u.user_expired > DATE(NOW())
    AND u.pass_expired > DATE(NOW());

-- update sign in
UPDATE m00te00x00
SET
    is_signin = 1
WHERE
    user_name = 'user_name';
--
-- find groups by user
--
SELECT
    g.group_name AS "group"
FROM
    m00te00x00 u
    LEFT JOIN m00tj00x00 a ON u.user_code  = a.user_code
    LEFT JOIN m00ts00x00 g ON a.group_code = g.group_code
WHERE
    u.user_name     = 'user_name'
    AND u.is_signin = 1
    AND u.is_active = 1
    AND u.is_locked = 0
    AND u.user_expired > DATE(NOW())
    AND u.pass_expired > DATE(NOW())
    AND a.is_active = 1
    AND g.is_active = 1;

MySQL Apache User

CREATE USER 'apache'@'%' IDENTIFIED VIA mysql_native_password USING 'p@$$w0rd';
GRANT USAGE ON *.* TO 'apache'@'%' REQUIRE NONE WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0;
CREATE DATABASE IF NOT EXISTS `apache`;
GRANT ALL PRIVILEGES ON `apache`.* TO 'apache'@'%';

Knowledge

ls -lah /usr/lib/apache2/modules/mod_authn_socache.so
htpasswd -nbs system p@$$w0rd
htpasswd -nbs admin p@$$w0rd
htpasswd -nb user p@$$w0rd

References