If you forget the password for any user, you can reset to log in as SYS:
sqlplus / as sysdba
And then:
alter user <username> identified by <password>;
If you forget which users you have, you can run:
select username from all_users;
If you only recently created a database, it would be wise to limit CREATED, since the default database installation comes with dozens of custom schemas. For example, to find users added last week, follow these steps:
select * from all_users where created > trunc(sysdate)-7;
source share