I would like to know where the usernames and passwords stored are.
Whenever I run, I found the user name but I want to know the table name of the username is stored.
When I checked the 101 page:
Under the”Set Username Cookie” process;
begin
owa_util.mime_header('text/html', FALSE);
owa_cookie.send(
name=>'LOGIN_USERNAME_COOKIE',
value=>lower(:P101_USERNAME));
exception when others then null;
end;
*“Login” process;*
wwv_flow_custom_auth_std.login(
P_UNAME => :P101_USERNAME,
P_PASSWORD => :P101_PASSWORD,
P_SESSION_ID => v('APP_SESSION'),
P_FLOW_PAGE => :APP_ID||':1'
);
I would like to understand these processes and where the usernames and passwords stored are.