Jump to content

Recommended Posts

Posted

Where would I find a record of someone trying to log into HAP+ with the wrong password? Can't seem to find anything in either the IIS log or the domain controllers event logs...

 

And am I right in thinking it locks out such attempts quite quickly? Where's that set?

Posted

In the SQL it shows it. (Might be a quicker way but that's what I normally do).

 

From what I remember it's 3~ attempts on it locks it.

 

Generally I use a SQL query, InvalidUser shows wrong user name attempts-

 

id	DateTime	Username	ComputerName	EventType	IP	Browser	OS	Details
9819	2015-12-29 18:50:54.177	sarch2	10.	[b]Invalid User[/b]	10	Chrome 47.0	WinNT	Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36

 

Once an attempt is banned it shows up as banned (but "incorrect" logins only show as logons):

 

id	DateTime	Username	ComputerName	EventType	IP	Browser	OS	Details
19400	2016-02-25 18:35:09.677	09test	10.	[b]Logon[/b]	10	IE 7.0	WinNT	Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; WOW64; Trident/7.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; Media Center PC 6.0; GWX:DOWNLOADED)

 

id	DateTime	Username	ComputerName	EventType	IP	Browser	OS	Details
4510	2015-11-26 12:37:41.970	09test	10.	[b]Logon.Banned	[/b]10.	Firefox 42.0	WinNT	Mozilla/5.0 (Windows NT 6.3; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0

 

 

 

So using something like:

 

SELECT TOP 10000 [id]
     ,[DateTime]
     ,[username]
     ,[ComputerName]
     ,[EventType]
     ,[iP]
     ,[browser]
     ,[OS]
     ,[Details]
 FROM ["TableName"].[dbo].[WebTrackerEvents]
 where EventType = 'Logon.Banned'

 

Will show all banned attempts

 

Not sure if that helps?

 

Steve

  • Thanks 1
Posted (edited)

Oh and the limit I think it this one, AppData -> hapconfig.xml -> maxlogonattempts="4"

 

Steve

Edited by Steve21
Posted
Thanks, that's really helpful. However we're running an oldish version of HAP+ and have not enabled the Logon Tracker, or indeed linked it to SQL. So just curious what a bad logon here actually bounces off - obviously it has to authenticate via our LDAP but the analysis I run for bad network logons (via Log Parser pointing at DS event logs) doesn't show the test bad logon I just tried on HAP...
  • 2 weeks later...
Posted

Hmmm thanks Nick, but I still can't see anything in any server log relating to the bad logon I just tried.

 

It'll get written to the Application Event Logs on the server as well, look for source Home Access Plus+

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...