Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security SecProg
[Top] [All Lists]

RE: secure storage of sensitive data in J2EE

Subject: RE: secure storage of sensitive data in J2EE
Date: Mon, 31 Jan 2005 12:45:24 -0500
Erez,

True, but in most enterprise situations, the restart of an application
usually comes with some sort of manual procedure (notifications, etc).
One could easily include a password that would be required to decrypt a
.properties (.ini, etc) file that would contain the other passwords.
That master password could be known only to authorized personnel. After
that, it's just a matter of having the .ini loader read it once and then
delete the file.

Of course, if someone gets in and has root access, they can just dump
memory, looking for whatever they want, so this would only help to
prevent you from unplugging the server and taking it home with you to
tinker with.

Michael Scovetta
Computer Associates
Senior Application Developer

-----Original Message-----
From: Erez Metula [mailto:erez@avnet.co.il] 
Sent: Monday, January 31, 2005 2:00 AM
To: secprog@securityfocus.com; webappsec@securityfocus.com
Subject: RE: secure storage of sensitive data in J2EE


I think that the issue here is sensitive information stored on the
server
side like connection strings, encryption keys and such. You can't ask
the
user to enter a password for this kind of information.
Storing this information in a file in cleartext, won't protect this
information from someone who has access to the server, for example a
legitimate (malicious) admin user  or  a hacker who had managed to break
into the system.



------------------------------------------------------------------------
----
--------------------------------------

Erez Metula
Application Security Consultant
Avnet Data Security       Mobile: 972-54-8179538    Office:
972-3-9560074
(Ext. 126)
 


-----Original Message-----
From: Alexander Klimov [mailto:alserkli@inbox.ru] 
Sent: Tuesday, January 25, 2005 6:33 PM
To: chaim moshe
Cc: webappsec@securityfocus.com; secprog@securityfocus.com
Subject: Re: secure storage of sensitive data in J2EE

On Tue, 25 Jan 2005, chaim moshe wrote:
where can I store sensitive data like encryption keys, passwords,
etc. in J2EE? surely, you can save it in the keystore, but the catch
is where do you store the keystore password to protect it from
external access? storing the keystore password in code or in config
files is not secured enough.
Well, there is no way to make the following things simultaneously
without additional input for legitimate user:
-- a legitimate user is able to recover information
-- an attacker is unable to recover information

In the .NET environment you have DPAPI that was designed exactly for
this
kind of problem, the sensitive data is encrypted at the OS level with
the
user/machine password and is decrypted at runtime.
This is a solution: the legitimate user needs to enter password which
is cached by the system. I really doubt that J2EE can have similiar
things since many OSes do not cache user passwords.

What is the solution in the J2EE environment ?
You can ask the user to enter the password. An alternative solution is
to use non-owner-read-protected files.

-- 
Regards,
ASK


This Mail Was Scanned By Avnet Secure System

 
************************************************************************
************
This footnote confirms that this email message has been scanned by
PineApp Mail-SeCure for the presence of malicious code, vandals &
computer viruses.
************************************************************************
************




<Prev in Thread] Current Thread [Next in Thread>