Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
08095aba
Commit
08095aba
authored
May 08, 2012
by
Byron Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 729001: Reverse resolves the IP address in account lockout notifications
r=LpSolit, a=LpSolit
parent
16e6b9c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
Auth.pm
Bugzilla/Auth.pm
+9
-0
lockout.txt.tmpl
template/en/default/email/lockout.txt.tmpl
+2
-2
No files found.
Bugzilla/Auth.pm
View file @
08095aba
...
@@ -22,6 +22,7 @@ use Bugzilla::User::Setting ();
...
@@ -22,6 +22,7 @@ use Bugzilla::User::Setting ();
use
Bugzilla::Auth::Login::
Stack
;
use
Bugzilla::Auth::Login::
Stack
;
use
Bugzilla::Auth::Verify::
Stack
;
use
Bugzilla::Auth::Verify::
Stack
;
use
Bugzilla::Auth::Persist::
Cookie
;
use
Bugzilla::Auth::Persist::
Cookie
;
use
Socket
;
sub
new
{
sub
new
{
my
(
$class
,
$params
)
=
@_
;
my
(
$class
,
$params
)
=
@_
;
...
@@ -199,10 +200,18 @@ sub _handle_login_result {
...
@@ -199,10 +200,18 @@ sub _handle_login_result {
my
$default_settings
=
Bugzilla::User::Setting::
get_defaults
();
my
$default_settings
=
Bugzilla::User::Setting::
get_defaults
();
my
$template
=
Bugzilla
->
template_inner
(
my
$template
=
Bugzilla
->
template_inner
(
$default_settings
->
{
lang
}
->
{
default_value
});
$default_settings
->
{
lang
}
->
{
default_value
});
my
$address
=
$attempts
->
[
0
]
->
{
ip_addr
};
# Note: inet_aton will only resolve IPv4 addresses.
# For IPv6 we'll need to use inet_pton which requires Perl 5.12.
my
$n
=
inet_aton
(
$address
);
if
(
$n
)
{
$address
=
gethostbyaddr
(
$n
,
AF_INET
)
.
" ($address)"
}
my
$vars
=
{
my
$vars
=
{
locked_user
=>
$user
,
locked_user
=>
$user
,
attempts
=>
$attempts
,
attempts
=>
$attempts
,
unlock_at
=>
$unlock_at
,
unlock_at
=>
$unlock_at
,
address
=>
$address
,
};
};
my
$message
;
my
$message
;
$template
->
process
(
'email/lockout.txt.tmpl'
,
$vars
,
\
$message
)
$template
->
process
(
'email/lockout.txt.tmpl'
,
$vars
,
\
$message
)
...
...
template/en/default/email/lockout.txt.tmpl
View file @
08095aba
...
@@ -8,10 +8,10 @@
...
@@ -8,10 +8,10 @@
From: [% Param('mailfrom') %]
From: [% Param('mailfrom') %]
To: [% Param('maintainer') %]
To: [% Param('maintainer') %]
Subject: [[% terms.Bugzilla %]] Account Lock-Out: [% locked_user.login %] ([% a
ttempts.0.ip_addr
%])
Subject: [[% terms.Bugzilla %]] Account Lock-Out: [% locked_user.login %] ([% a
ddress
%])
X-Bugzilla-Type: admin
X-Bugzilla-Type: admin
The
IP address [% attempts.0.ip_addr
%] failed too many login attempts (
The
address [% address
%] failed too many login attempts (
[%- constants.MAX_LOGIN_ATTEMPTS +%]) for
[%- constants.MAX_LOGIN_ATTEMPTS +%]) for
the account [% locked_user.login %].
the account [% locked_user.login %].
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment