I'm looking for a way to programatically authenticate whether a password is valid for a particular oracle account, without actually logging on as that user (or, maybe, by logging in as the user within an autonomous transaction). Basically something like this:
It's going to be done inside a package owned by a highly privileged user, so it can involve whatever commands you like.
And no, I'm not gonna use it to crack passwords...
-- Chris Hunt
Webmaster & Tragedian
Extra Connections Ltd
Code:
FUNCTION valid_user (username IN VARCHAR2,
password IN VARCHAR2) RETURN BOOLEAN;
And no, I'm not gonna use it to crack passwords...
-- Chris Hunt
Webmaster & Tragedian
Extra Connections Ltd