I have enabled Database Session Audit [with AUDIT SESSION]

I then added a program to run every 15 minutes to identify failed login 
attempts
for some specific schemas :
connect / as sysdba

set pages60

spool autoreport_failed_APPS_logins

col os_username format a12 hea 'OS User'
col username format a12 hea 'DB User'
col userhost format a12 hea 'Host (trunc)' trunc
col terminal format a14 hea 'Term. (Incmpl)'
col timestamp format a17 hea 'TimeStamp'
col returncode format 999999 hea 'OraErr'

alter session set nls_date_format ='DD-MON-HH24:MI:SS';

select os_username, username, userhost, terminal, timestamp, returncode
from sys.dba_audit_session
where returncode != 0
and os_username != 'oasapps'
and username in ('APPS','APPLSYS','APPLSYSPUB')
and timestamp > sysdate - ( (16)/(60*24) )
order by timestamp
/

spool off


At 09:23 AM 02-10-02 -0800, you wrote:

>All,
>I have implemented FAILED_LOGIN_ATTEMPTS in one of my database profiles -
>and it works beautifully !
>However - is there a way to trace or capture the incorrect password (and
>machine name) that trips this counter ?
>I am interested in finding out who (and from where) tried to connect
>unsuccessfully.
>TIA
>Srini Chavali
>Oracle DBA
>Cummins Inc
>
>
>--
>Please see the official ORACLE-L FAQ: http://www.orafaq.com
>--
>Author:
>   INET: [EMAIL PROTECTED]
>
>Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
>San Diego, California        -- Mailing list and web hosting services
>---------------------------------------------------------------------
>To REMOVE yourself from this mailing list, send an E-Mail message
>to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
>the message BODY, include a line containing: UNSUB ORACLE-L
>(or the name of mailing list you want to be removed from).  You may
>also send the HELP command for other information (like subscribing).

Hemant K Chitale
My web site page is :  http://hkchital.tripod.com


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Hemant K Chitale
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

Reply via email to