mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
bc3b0fda35
This adds additional logging to the authentication logs such as type, remote IP, request method, redirect URL, and if the attempt was done during a ban. This also means we log attempts that occur when the attempt was blocked by the regulator for record keeping purposes, as well as record 2FA attempts which can be used to inform admins and later to regulate based on other factors. Fixes #116, Fixes #1293.
110 lines
2.3 KiB
Go
110 lines
2.3 KiB
Go
package storage
|
|
|
|
const (
|
|
queryFmtDropTableIfExists = `DROP TABLE IF EXISTS %s;`
|
|
|
|
queryFmtRenameTable = `
|
|
ALTER TABLE %s
|
|
RENAME TO %s;`
|
|
|
|
queryFmtMySQLRenameTable = `
|
|
ALTER TABLE %s
|
|
RENAME %s;`
|
|
)
|
|
|
|
// Pre1 migration constants.
|
|
const (
|
|
queryFmtPre1To1SelectAuthenticationLogs = `
|
|
SELECT username, successful, time
|
|
FROM %s
|
|
ORDER BY time ASC
|
|
LIMIT 100 OFFSET ?;`
|
|
|
|
queryFmtPre1To1InsertAuthenticationLogs = `
|
|
INSERT INTO %s (username, successful, time, request_uri)
|
|
VALUES (?, ?, ?, '');`
|
|
|
|
queryFmtPre1InsertUserPreferencesFromSelect = `
|
|
INSERT INTO %s (username, second_factor_method)
|
|
SELECT username, second_factor_method
|
|
FROM %s
|
|
ORDER BY username ASC;`
|
|
|
|
queryFmtPre1SelectTOTPConfigurations = `
|
|
SELECT username, secret
|
|
FROM %s
|
|
ORDER BY username ASC;`
|
|
|
|
queryFmtPre1InsertTOTPConfiguration = `
|
|
INSERT INTO %s (username, secret)
|
|
VALUES (?, ?);`
|
|
|
|
queryFmtPre1To1SelectU2FDevices = `
|
|
SELECT username, keyHandle, publicKey
|
|
FROM %s
|
|
ORDER BY username ASC;`
|
|
|
|
queryFmtPre1To1InsertU2FDevice = `
|
|
INSERT INTO %s (username, key_handle, public_key)
|
|
VALUES (?, ?, ?);`
|
|
|
|
queryFmt1ToPre1InsertAuthenticationLogs = `
|
|
INSERT INTO %s (username, successful, time)
|
|
VALUES (?, ?, ?);`
|
|
|
|
queryFmt1ToPre1SelectAuthenticationLogs = `
|
|
SELECT username, successful, time
|
|
FROM %s
|
|
ORDER BY id ASC
|
|
LIMIT 100 OFFSET ?;`
|
|
|
|
queryFmt1ToPre1SelectU2FDevices = `
|
|
SELECT username, key_handle, public_key
|
|
FROM %s
|
|
ORDER BY username ASC;`
|
|
|
|
queryFmt1ToPre1InsertU2FDevice = `
|
|
INSERT INTO %s (username, keyHandle, publicKey)
|
|
VALUES (?, ?, ?);`
|
|
|
|
queryCreatePre1 = `
|
|
CREATE TABLE user_preferences (
|
|
username VARCHAR(100),
|
|
second_factor_method VARCHAR(11),
|
|
PRIMARY KEY (username)
|
|
);
|
|
|
|
CREATE TABLE identity_verification_tokens (
|
|
token VARCHAR(512)
|
|
);
|
|
|
|
CREATE TABLE totp_secrets (
|
|
username VARCHAR(100),
|
|
secret VARCHAR(64),
|
|
PRIMARY KEY (username)
|
|
);
|
|
|
|
CREATE TABLE u2f_devices (
|
|
username VARCHAR(100),
|
|
keyHandle TEXT,
|
|
publicKey TEXT,
|
|
PRIMARY KEY (username)
|
|
);
|
|
|
|
CREATE TABLE authentication_logs (
|
|
username VARCHAR(100),
|
|
successful BOOL,
|
|
time INTEGER
|
|
);
|
|
|
|
CREATE TABLE config (
|
|
category VARCHAR(32) NOT NULL,
|
|
key_name VARCHAR(32) NOT NULL,
|
|
value TEXT,
|
|
PRIMARY KEY (category, key_name)
|
|
);
|
|
|
|
INSERT INTO config (category, key_name, value)
|
|
VALUES ('schema', 'version', '1');`
|
|
)
|