Links
Home
Oracle DBA Forum
Frequent Oracle Errors
TNS:could not resolve the connect identifier specified
Backtrace message unwound by exceptions
invalid identifier
PL/SQL compilation error
internal error
missing expression
table or view does not exist
end-of-file on communication channel
TNS:listener unknown in connect descriptor
insufficient privileges
PL/SQL: numeric or value error string
TNS:protocol adapter error
ORACLE not available
target host or object does not exist
invalid number
unable to allocate string bytes of shared memory
resource busy and acquire with NOWAIT specified
error occurred at recursive SQL level string
ORACLE initialization or shutdown in progress
archiver error. Connect internal only, until freed
snapshot too old
unable to extend temp segment by string in tablespace
Credential retrieval failed
missing or invalid option
invalid username/password; logon denied
unable to create INITIAL extent for segment
out of process memory when trying to allocate string bytes
shared memory realm does not exist
cannot insert NULL
TNS:unable to connect to destination
remote database not found'>ora-02019
exception encountered: core dump
inconsistent datatypes
no data found
TNS:operation timed out
PL/SQL: could not find program
existing state of packages has been discarded
maximum number of processes exceeded
error signaled in parallel query server
ORACLE instance terminated. Disconnection forced
TNS:packet writer failure
see ORA-12699
missing right parenthesis
name is already used by an existing object
cannot identify/lock data file
invalid file operation
quoted string not properly terminated
Username with failed login

Username with failed login

2005-08-15       - By Mike Schmitt

Reply:     1     2     3     4     5     6  


Hi All,

I am trying to catch failed login attempts by using an after servererror
database trigger.  We would like to be able to catch the username that is
being provided with these attempts, but so far I haven't had any luck.

Is is possible to capture the name that was provided as part of the logon
attempt and record that information, or do we have to use a different method?

The edited trigger/proc we are using look like the following (We are using
9.2.0.4):


TRIGGER:
create or replace trigger
   test_trig
AFTER SERVERERROR ON DATABASE
DECLARE
.....
BEGIN
.........
IF (IS_SERVERERROR (1017))
THEN
p_failed_logon;
END IF;
END;
/

PROCEDURE:
create or replace procedure p_failed_logon
as
BEGIN
insert into ........    values(
   sys_context('USERENV','SESSION_USER'),
   sys_context('USERENV','SESSION_USERID'),
   sys_context('USERENV','AUTHENTICATION_TYPE'),
   'FAILED',
   sysdate,
   sysdate,
   sys_context('USERENV','IP_ADDRESS'),
   sys_context('USERENV','HOST'),
   sys_context('USERENV','OS_USER'),
   sys_context('USERENV','NETWORK_PROTOCOL'),
   sys_context('USERENV','TERMINAL')
);
END;




<html>
<body>
<br>
Hi All,<br><br>
I am trying to catch failed login attempts by using an after servererror
database trigger.&nbsp; We would like to be able to catch the username
that is being provided with these attempts, but so far I haven't had any
luck.&nbsp; <br><br>
Is is possible to capture the name that was provided as part of the logon
attempt and record that information, or do we have to use a different
method?<br><br>
The edited trigger/proc we are using look like the following (We are
using 9.2.0.4):<br><br>
<br>
TRIGGER:<br>
<i>create or replace trigger<br>
&nbsp;&nbsp; test_trig <br>
AFTER SERVERERROR ON DATABASE<br>
DECLARE<br>
.....<br>
BEGIN&nbsp; <br>
.........<br>
IF (IS_SERVERERROR (1017)) <br>
THEN&nbsp;&nbsp; <br>
p_failed_logon;<br>
END IF;<br>
END;<br>
/<br><br>
</i>PROCEDURE:<br>
<i>create or replace procedure p_failed_logon<br>
as<br>
BEGIN<br>
insert into ........&nbsp;&nbsp;&nbsp; values(<br>
&nbsp;&nbsp; sys_context('USERENV','SESSION_USER'),<br>
&nbsp;&nbsp; sys_context('USERENV','SESSION_USERID'),<br>
&nbsp;&nbsp; sys_context('USERENV','AUTHENTICATION_TYPE'),<br>
&nbsp;&nbsp; 'FAILED',<br>
&nbsp;&nbsp; sysdate,<br>
&nbsp;&nbsp; sysdate,<br>
&nbsp;&nbsp; sys_context('USERENV','IP_ADDRESS'),<br>
&nbsp;&nbsp; sys_context('USERENV','HOST'),<br>
&nbsp;&nbsp; sys_context('USERENV','OS_USER'),<br>
&nbsp;&nbsp; sys_context('USERENV','NETWORK_PROTOCOL'),<br>
&nbsp;&nbsp; sys_context('USERENV','TERMINAL')<br>
);<br>
END;<br><br>
<br>
</i></body>
<br>
</html>