RSA IGL Version: V 7.2.x
Modules: Governance
Product Area: Tabular Reports (Applied to Active Directory Summary Dashboard)
Associated Dashboard & Chart:
Time to apply: ~20 minutes
This report provides information about the last logon date for all AD accounts.
The goal of this report is to understand which AD accounts might be a risk
The report can be used by Admin/AD Teams to be understand which AD accounts could be removed potentially.
This report requires the key word: "addashboard" to be added within the description of the AD Account Collector.
This key word can be added to more than one Account Collector if required.
This report includes information about AD Accounts and is sorted by the "oldest" logon date.
First test this in your query tool (SQLDeveloper, Toad etc..)
(select * from (select
accountName as "Account Name",
RealLastLogon as "Last Logon Date",
DaysSinceLogin as "Days Since Last Logon"
from (
select distinct pA.NAME as accountName, pA.LAST_LOGIN_DATE as RealLastLogon, TRUNC(SYSDATE) - trunc(pA.LAST_LOGIN_DATE) as DaysSinceLogin
from avuser.PV_ACCOUNT pA, avuser.V_BUSINESS_SOURCE vBS, avuser.V_DATA_COLLECTORS vDC
where pA.IS_DISABLED = 0
and pA.ADC_ID = vDC.ID and lower(vDC.Description) like '%addashboard%'
and pA.LAST_LOGIN_DATE is not null
)
order by "Days Since Last Logon" desc)
where "Days Since Last Logon" > 30)
Example of the results:
If you get an error at this stage, please test your SQL in a Query tool, like "SQL Developer" or "SQL Squirrel" to ensure it works first.
If it still doesn't work, please share your SQL and a screen shot of the issue below. DO NOT contact RSA Support
Dont forget:
Please login, then "Like"
and "Actions/Follow" this page (Top Right), so as to receive updates and be notified if we modify/change items found here, in future.