mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
255aaeb2ad
Adds encryption to the U2F public keys. While the public keys cannot be used to authenticate, only to validate someone is authenticated, if a rogue operator changed these in the database they may be able to bypass 2FA. This prevents that.
19 lines
527 B
Go
19 lines
527 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// AuthenticationAttempt represents an authentication attempt row in the database.
|
|
type AuthenticationAttempt struct {
|
|
ID int `db:"id"`
|
|
Time time.Time `db:"time"`
|
|
Successful bool `db:"successful"`
|
|
Banned bool `db:"banned"`
|
|
Username string `db:"username"`
|
|
Type string `db:"auth_type"`
|
|
RemoteIP NullIP `db:"remote_ip"`
|
|
RequestURI string `db:"request_uri"`
|
|
RequestMethod string `db:"request_method"`
|
|
}
|