Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Reverse engineer passwords

RE: Reverse engineer passwords

From: Linda Hagedorn <Linda_at_pets.com>
Date: Fri, 14 Jul 2000 14:27:45 -0700
Message-Id: <10558.112116@fatcity.com>


I'm really going to have some fun with this project!

Thanks for the ideas.

Linda

-----Original Message-----
From: William Beilstein [mailto:BeilstWH_at_obg.com] Sent: Friday, July 14, 2000 2:55 PM
To: Multiple recipients of list ORACLE-L Subject: RE: Reverse engineer passwords

Get the encrypted password by typing

SELECT PASSWORD FROM DBA_USERS WHERE USERNAME = 'MYUSER'; It will display the password as something like this;

PASSWORD



F83A16803G10C05A

You would then replace the password by using ALTER USER MYUSER IDENTIFIED BY NEW_PASSWORD; Run your applications.

If you need to reset the password issue the following command

ALTER USER MYUSER IDENTIFIED BY VALUES 'F83A16803G10C05A'; Which will reset the user to the original password.

>>> Linda Hagedorn <Linda_at_pets.com> 07/14/00 01:31PM >>> That's a good idea! Thanks!

-----Original Message-----
Sent: Friday, July 14, 2000 4:05 AM
To: Multiple recipients of list ORACLE-L

Hi,

You can store the encrypted password in a table, change your password as you like, test your application, if it fails then you know where to look because probably the password will be somewhere in the application or you can put the encrypted pasword back in de original table.

good luck

Vicnent Ruger
(Oracle DBA)

-----Oorspronkelijk bericht-----
Van: root_at_fatcity.com [ mailto:root_at_fatcity.com <mailto:root_at_fatcity.com> ]Namens Eric Lansu
Verzonden: vrijdag 14 juli 2000 12:15
Aan: Multiple recipients of list ORACLE-L Onderwerp: Re: Reverse engineer passwords

I hope it's not possible to do this reverse engeneering for it would mean a serious security-problem.

Eric Lansu

> Some passwords are lost, others are in clear text, others are operational
> (somewhere in production), but not known due to turnover. Rather than
> possibly break running systems by changing passwords, we (dba staff) would

> like to reverse engineer the passwords in dba_users.
>
> Has anyone done this, and if so, will you send the key to me? Referrals
to
> documentation are appreciated.
>
> Thank you.
>
> Linda Hagedorn
>
> --
> Author: Linda Hagedorn
> INET: Linda_at_pets.com
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (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).

-- 
Author: Eric Lansu 
  INET: eric.lansu_at_quicknet.nl 

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051 
San Diego, California        -- Public Internet access / Mailing Lists 
-------------------------------------------------------------------- 
To REMOVE yourself from this mailing list, send an E-Mail message 
to: ListGuru_at_fatcity.com (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). 

-- 
Author: Linda Hagedorn
  INET: Linda_at_pets.com 

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (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).

-- 
Author: William Beilstein
  INET: BeilstWH_at_obg.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
Received on Fri Jul 14 2000 - 16:27:45 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US