vote up 0 vote down star

I've inherited a Visual Basic 6 application that accesses a database directly, and I intend to rewrite it in Java.
However, something I NEED is the database user+password, which I believe is hard-coded into the application's source.
Unfortunately, I don't have access to it's source.

How could I retrieve the DB password? Is there a way to de-compile VB6 into some half-understandable form at least? or should I just log on and sniff it from my own PC?

flag

1  
Why not asking the DBA? ;-) – MicSim Aug 5 at 14:22

1 Answer

vote up 1 vote down check

I'd agree with MicSim that the DBA would be the person to ask.

However if you want to hack in to the source, you might have some luck just opening up the DLL (or EXE? OCX?) in a hex/text-editor and having a look through. If the credentials are really hard-coded into the application, presumably they're stored as strings... and I've noticed that strings tend to get stored in the assemblies created by VB6 in clear text.

link|flag
But how would I find it though dozens of lines of code? :/ – Hugo Aug 6 at 16:21
It was never going to be easy. – Gavin Schultz Aug 7 at 6:25

Your Answer

Get an OpenID
or

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