vote up 1 vote down star
2

I'd be more than interesting for me to understand which technique is being used here to persist sensible data since I'm needing to implement a similar solution. Here's a sample connection configuration and the resulting exported snippet:

Oracle SQL Developer Connections

<?xml version = '1.0' encoding = 'UTF-8'?>
	<References xmlns="http://xmlns.oracle.com/adf/jndi">
		<Reference name="My Connection" className="oracle.jdeveloper.db.adapter.DatabaseProvider" xmlns="">
		<Factory className="oracle.jdeveloper.db.adapter.DatabaseProviderFactory"/>
		<RefAddresses>
			<StringRefAddr addrType="user">
				<Contents>username</Contents>
			</StringRefAddr>
			<StringRefAddr addrType="password">
				<Contents>054D4844D8549C0DB78EE1A98FE4E085B8A484D20A81F7DCF8</Contents>
			</StringRefAddr>
		<SKIPPED />
		</RefAddresses>
	</Reference>
</References>

Any advice would be really appreciated.

flag

3 Answers

vote up 2 vote down

I don't know, but I wouldn't be surprised if it was DBMS_OBFUSCATION_TOOLKIT being used something like this:

l_hash := dbms_obfuscation_toolkit.md5(input_string=>:username||:password);
link|flag
Interesting Tony! Thanks much for the contribution! – Nano Taboada Jun 27 at 17:46
vote up 2 vote down

I'm not sure about this but I always thought hashes can't be decrypted, only compared to another hash. MD5 generates a hash. The saved password in SQL Developer needs to be decrypted and send to the server. So the DES3Encrypt and DES3Decrypt procedures in dbms_obfuscation_toolkit package are a better bet. But the decrypt should be called before connecting to a database, so it's probably a Java crypto package with DES methods.

link|flag
Thank you for the answer Robert! – Nano Taboada Jun 27 at 17:45
vote up 1 vote down

The length of the hash is 50 hex characters, which is 200 bits, so it may be the the hash of the password with a salt, prepended with the salt, like:

salt | hash(salt | password)

where | means concatenation.

Just speculation though. My guess would be a 40-bit salt and a SHA-1 hash, since SHA-1 produces 160-bit hashes.

Would be helpful to provide some input/output test data to check against!

link|flag
Thanks for the comment Peter! The authentication data I've used for the example is simply "username" and "password". – Nano Taboada Jun 27 at 17:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.